iNotes

APK

APK Image 1   APK Image 2   APK Image 3   APK Image 4   APK Image 5   APK Image 6

IOS

IOS Image 1   IOS Image 2   IOS Image 3   IOS Image 4   IOS Image 5   IOS Image 6   IOS Image 7

Installation

Requires Flutter v3+ to run.

Edit firebase_options.dart and add the necessary credentials for web, iOS, and Android platforms.

static const FirebaseOptions web = FirebaseOptions(
    apiKey: String.fromEnvironment('WEB_API_KEY'),
    appId: String.fromEnvironment('WEB_APP_ID'),
    messagingSenderId: '782909183220',
    projectId: 'init-s-notes',
    authDomain: 'init-s-notes.firebaseapp.com',
    storageBucket: 'init-s-notes.appspot.com',
    measurementId: 'G-5Z1XKBSNVQ',
  );

Install the dependencies and run.

flutter pub get
flutter run --dart-define=APK_API_KEY=[firebase_api_key] \
--dart-define=APK_APP_ID=[firebase_app_id]