[READ ONLY MIRROR] Open Source TikTok alternative built on AT Protocol github.com/sprksocial/client
flutter atproto video dart
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

style(nav): joe thought this was really important apparently

+2 -4
+2 -4
lib/src/core/design_system/components/organisms/bottom_nav_bar.dart
··· 29 29 _BarBackground( 30 30 child: Container( 31 31 padding: EdgeInsets.only( 32 - left: 12, 33 - right: 12, 34 32 top: 12, 35 33 bottom: 12 + bottomPadding, 36 34 ), 37 35 color: isDark ? const Color.fromARGB(51, 0, 0, 0) : const Color.fromARGB(178, 255, 255, 255), 38 36 child: Row( 39 - mainAxisAlignment: MainAxisAlignment.spaceBetween, 37 + mainAxisAlignment: MainAxisAlignment.spaceEvenly, 40 38 41 39 children: [ 42 40 _NavIcon( ··· 126 124 onTap: onTap, 127 125 child: AnimatedContainer( 128 126 duration: AppConstants.animationFast, 129 - padding: const EdgeInsets.all(2), 127 + padding: const EdgeInsets.all(5), 130 128 child: builder(context, isSelected), 131 129 ), 132 130 );