A mobile application built with Flutter that transforms the way we consume information. Using a high-performance, vertical scrolling feed, users can explore an endless stream of AI-generated, verified facts. No fluff, no fake news—just pure knowledge powered by intelligence.
Endless Discovery: Smooth, gesture-based scrolling experience.
AI-Curated: Dynamically generated content tailored to intrigue.
Dart & Flutter: A cross-platform experience built for performance.
Still in closed testing development and not yet publicly released.
Implementing best practices, app architectures, and design patterns for modern cross-platform application.
Such implementation includes the following and may actively change overtime:
- Repository-based (pattern) — Centralized data management
- Handling Asynchronous, Futures, and Streams
- Custom UI/UX — Branding and design
- Responsive (design) — Dynamic layout for different screen sizes
- User Experience — Fluid animations and transitions
- Theming — Look and feel customization
- Overall Optimizations — High performance and scalability
- CI/CD automation — Continuous integration and deployment
- Firebase Analytics — App usage monitoring
- Firebase Crashlytics — App crash diagnostics
- Firebase Authentication — Data binding and account synchronization
- Firebase Firestore — Backend database collection
- Firebase AI Logic — Primary content generation
- Firebase Hosting — Homepage presentation
- Google AdMob — Content unlocking free service
- In-app-purchase — Subscriptions and paid services
- BLoC (with persistence) — State serves data from repository to the UI
- GoRouter — Navigation between page views
- Not included yet (focusing on the UI aspects first)
- Not included yet
Almost all commands needed to configure and run the code are under the .vscode configurations. Visual Studio Code is our choice of IDE. Just run the specific task to perform the desired action or create a custom one to chain them.
Ensure all package dependencies are installed:
flutter pub get
npm install
For Firebase, we use NPM here, but you can use any other package managers.
Runflutter doctorto check SDKs and platform-specific confugrations.
Create a centralized .env file for inlining environment variables.
Authenticate to initialize Firebase:
npx firebase init
Using Flutterfire to automatically configure this for supported platforms.
dart run flutterfire_cli:flutterfire configure
You may add your desired icons under images, then generate for all platforms using:
dart run flutter_launcher_icons
Under images as well, place your splash images, then generate for all platforms using:
dart run flutter_native_splash:create
Check available devices with flutter devices and replace <device> with the target device:
flutter run --device-id=<device> --target=lib/main.dart --dart-define-from-file=.env
For the web version, specify that the hostname is set to localhost for debug development:
flutter run \
--device-id=<device> \
--target=lib/main.dart \
--dart-define-from-file=.env \
--web-hostname=localhost
--web-port=3000
Build an executable release, replace the <executable> with target platform:
flutter build <executable> --target=lib/main.dart --dart-define-from-file=.env
- App Architecture
- User Interface
- State Management
- Firebase
- Ads
- In-app-purchases
- Testing and Debugging
- Internationalization
- Environment Variables
- Optimization
- Deployment
- Continuous Delivery
- Dart & Flutter
- Animations
- Icons
- Fonts
- Design Orchestration
