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.

at main 9 lines 204 B view raw
1import 'package:bluesky/app_bsky_feed_post.dart'; 2 3FeedPostRecord? tryParseRecord(Map<String, dynamic> record) { 4 try { 5 return FeedPostRecord.fromJson(record); 6 } catch (_) { 7 return null; 8 } 9}