[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: revert icon sizes

+5 -5
+1 -1
lib/src/core/design_system/components/atoms/buttons/app_leading_button.dart
··· 36 36 child: GestureDetector( 37 37 onTap: action, 38 38 child: Center( 39 - child: AppIcons.chevronleft(color: iconColor, size: 35), 39 + child: AppIcons.chevronleft(color: iconColor, size: 28), 40 40 ), 41 41 ), 42 42 ),
+4 -4
lib/src/features/profile/ui/pages/profile_page.dart
··· 237 237 context.router.push(const SettingsRoute()), 238 238 icon: AppIcons.gear( 239 239 color: colorScheme.onSurface, 240 - size: 28, 240 + size: 25, 241 241 ), 242 242 ), 243 243 ), ··· 313 313 splashColor: Colors.transparent, 314 314 highlightColor: Colors.transparent, 315 315 onPressed: () => context.router.push(const SettingsRoute()), 316 - icon: AppIcons.gear(color: colorScheme.onSurface, size: 28), 316 + icon: AppIcons.gear(color: colorScheme.onSurface, size: 25), 317 317 ) 318 318 else 319 319 IconButton( ··· 391 391 highlightColor: Colors.transparent, 392 392 icon: AppIcons.moreHoriz( 393 393 color: colorScheme.onSurface, 394 - size: 35, 394 + size: 28, 395 395 ), 396 396 ), 397 397 ], ··· 477 477 context.router.push(const SettingsRoute()), 478 478 icon: AppIcons.gear( 479 479 color: colorScheme.onSurface, 480 - size: 28, 480 + size: 25, 481 481 ), 482 482 ), 483 483 ),