mobile bluesky app made with flutter lazurite.stormlightlabs.org/
mobile bluesky flutter
3
fork

Configure Feed

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

fix: profile screen ticker

* objectbox in ci/cd

+4 -1
+3
.github/workflows/ci.yml
··· 31 31 - name: Get dependencies 32 32 run: flutter pub get 33 33 34 + - name: Install ObjectBox native library 35 + run: curl -sSfL https://raw.githubusercontent.com/objectbox/objectbox-dart/main/install.sh | bash 36 + 34 37 - name: Analyze code 35 38 run: flutter analyze 36 39
+1 -1
lib/features/profile/presentation/profile_screen.dart
··· 71 71 State<ProfileScreen> createState() => _ProfileScreenState(); 72 72 } 73 73 74 - class _ProfileScreenState extends State<ProfileScreen> with SingleTickerProviderStateMixin { 74 + class _ProfileScreenState extends State<ProfileScreen> with TickerProviderStateMixin { 75 75 static const _feedTabs = [ 76 76 (label: 'Posts', filter: FeedFilter.postsNoReplies), 77 77 (label: 'Replies', filter: FeedFilter.postsAndAuthorThreads),