Compare commits
	
		
			5 Commits
		
	
	
		
			3.0.0+110
			...
			925cb2b423
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|  | 925cb2b423 | ||
|  | 0a2804a404 | ||
|  | 12bbcbf69c | ||
|  | 52ce490725 | ||
| 82067fb3aa | 
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @@ -96,66 +96,80 @@ class ExploreScreen extends HookConsumerWidget { | |||||||
|         bottom: PreferredSize( |         bottom: PreferredSize( | ||||||
|           preferredSize: const Size.fromHeight(48), |           preferredSize: const Size.fromHeight(48), | ||||||
|           child: Row( |           child: Row( | ||||||
|             children: [ |                 children: [ | ||||||
|               Expanded( |                   Expanded( | ||||||
|                 child: TabBar( |                     child: TabBar( | ||||||
|                   controller: tabController, |                       controller: tabController, | ||||||
|                   tabAlignment: TabAlignment.start, |                       tabAlignment: TabAlignment.start, | ||||||
|                   isScrollable: true, |                       isScrollable: true, | ||||||
|                   tabs: [ |                       dividerColor: Colors.transparent, | ||||||
|                     Tab( |                       tabs: [ | ||||||
|                       icon: Tooltip( |                         Tab( | ||||||
|                         message: 'explore'.tr(), |                           icon: Tooltip( | ||||||
|                         child: Icon( |                             message: 'explore'.tr(), | ||||||
|                           Symbols.explore, |                             child: Icon( | ||||||
|                           color: Theme.of(context).appBarTheme.foregroundColor!, |                               Symbols.explore, | ||||||
|  |                               color: | ||||||
|  |                                   Theme.of( | ||||||
|  |                                     context, | ||||||
|  |                                   ).appBarTheme.foregroundColor!, | ||||||
|  |                             ), | ||||||
|  |                           ), | ||||||
|                         ), |                         ), | ||||||
|                       ), |                         Tab( | ||||||
|                     ), |                           icon: Tooltip( | ||||||
|                     Tab( |                             message: 'exploreFilterSubscriptions'.tr(), | ||||||
|                       icon: Tooltip( |                             child: Icon( | ||||||
|                         message: 'exploreFilterSubscriptions'.tr(), |                               Symbols.subscriptions, | ||||||
|                         child: Icon( |                               color: | ||||||
|                           Symbols.subscriptions, |                                   Theme.of( | ||||||
|                           color: Theme.of(context).appBarTheme.foregroundColor!, |                                     context, | ||||||
|  |                                   ).appBarTheme.foregroundColor!, | ||||||
|  |                             ), | ||||||
|  |                           ), | ||||||
|                         ), |                         ), | ||||||
|                       ), |                         Tab( | ||||||
|                     ), |                           icon: Tooltip( | ||||||
|                     Tab( |                             message: 'exploreFilterFriends'.tr(), | ||||||
|                       icon: Tooltip( |                             child: Icon( | ||||||
|                         message: 'exploreFilterFriends'.tr(), |                               Symbols.people, | ||||||
|                         child: Icon( |                               color: | ||||||
|                           Symbols.people, |                                   Theme.of( | ||||||
|                           color: Theme.of(context).appBarTheme.foregroundColor!, |                                     context, | ||||||
|  |                                   ).appBarTheme.foregroundColor!, | ||||||
|  |                             ), | ||||||
|  |                           ), | ||||||
|                         ), |                         ), | ||||||
|                       ), |                       ], | ||||||
|                     ), |                     ), | ||||||
|                   ], |                   ), | ||||||
|                 ), |                   IconButton( | ||||||
|  |                     onPressed: () { | ||||||
|  |                       context.push('/feeds/articles'); | ||||||
|  |                     }, | ||||||
|  |                     icon: Icon( | ||||||
|  |                       Symbols.auto_stories, | ||||||
|  |                       color: Theme.of(context).appBarTheme.foregroundColor!, | ||||||
|  |                     ), | ||||||
|  |                     tooltip: 'webArticlesStand'.tr(), | ||||||
|  |                   ), | ||||||
|  |                   IconButton( | ||||||
|  |                     onPressed: () { | ||||||
|  |                       context.push('/posts/search'); | ||||||
|  |                     }, | ||||||
|  |                     icon: Icon( | ||||||
|  |                       Symbols.search, | ||||||
|  |                       color: Theme.of(context).appBarTheme.foregroundColor!, | ||||||
|  |                     ), | ||||||
|  |                     tooltip: 'search'.tr(), | ||||||
|  |                   ), | ||||||
|  |                 ], | ||||||
|  |               ) | ||||||
|  |               .padding(horizontal: 8) | ||||||
|  |               .border( | ||||||
|  |                 bottom: 1 / MediaQuery.of(context).devicePixelRatio, | ||||||
|  |                 color: Theme.of(context).dividerColor, | ||||||
|               ), |               ), | ||||||
|               Spacer(), |  | ||||||
|               IconButton( |  | ||||||
|                 onPressed: () { |  | ||||||
|                   context.push('/feeds/articles'); |  | ||||||
|                 }, |  | ||||||
|                 icon: Icon( |  | ||||||
|                   Symbols.auto_stories, |  | ||||||
|                   color: Theme.of(context).appBarTheme.foregroundColor!, |  | ||||||
|                 ), |  | ||||||
|                 tooltip: 'webArticlesStand'.tr(), |  | ||||||
|               ), |  | ||||||
|               IconButton( |  | ||||||
|                 onPressed: () { |  | ||||||
|                   context.push('/posts/search'); |  | ||||||
|                 }, |  | ||||||
|                 icon: Icon( |  | ||||||
|                   Symbols.search, |  | ||||||
|                   color: Theme.of(context).appBarTheme.foregroundColor!, |  | ||||||
|                 ), |  | ||||||
|                 tooltip: 'search'.tr(), |  | ||||||
|               ), |  | ||||||
|             ], |  | ||||||
|           ).padding(horizontal: 8), |  | ||||||
|         ), |         ), | ||||||
|       ), |       ), | ||||||
|       floatingActionButton: FloatingActionButton( |       floatingActionButton: FloatingActionButton( | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user