fix: add project contents

This commit is contained in:
Diego Torres
2026-05-23 10:19:24 -06:00
parent c49179bc9c
commit cf4321a690
145 changed files with 12545 additions and 1 deletions

View File

@@ -0,0 +1,88 @@
// File generated by FlutterFire CLI.
// ignore_for_file: type=lint
import 'package:firebase_core/firebase_core.dart' show FirebaseOptions;
import 'package:flutter/foundation.dart'
show defaultTargetPlatform, kIsWeb, TargetPlatform;
/// Default [FirebaseOptions] for use with your Firebase apps.
///
/// Example:
/// ```dart
/// import 'firebase_options.dart';
/// // ...
/// await Firebase.initializeApp(
/// options: DefaultFirebaseOptions.currentPlatform,
/// );
/// ```
class DefaultFirebaseOptions {
static FirebaseOptions get currentPlatform {
if (kIsWeb) {
return web;
}
switch (defaultTargetPlatform) {
case TargetPlatform.android:
return android;
case TargetPlatform.iOS:
return ios;
case TargetPlatform.macOS:
return macos;
case TargetPlatform.windows:
return windows;
case TargetPlatform.linux:
throw UnsupportedError(
'DefaultFirebaseOptions have not been configured for linux - '
'you can reconfigure this by running the FlutterFire CLI again.',
);
default:
throw UnsupportedError(
'DefaultFirebaseOptions are not supported for this platform.',
);
}
}
static const FirebaseOptions web = FirebaseOptions(
apiKey: 'AIzaSyDfpYR_--oRlGdTjLnAZY6z3RLh3LLz5gk',
appId: '1:338042609701:web:5f0a245f364e7604371fcc',
messagingSenderId: '338042609701',
projectId: 'hackon-58b23',
authDomain: 'hackon-58b23.firebaseapp.com',
storageBucket: 'hackon-58b23.firebasestorage.app',
measurementId: 'G-TBT47P2HX5',
);
static const FirebaseOptions android = FirebaseOptions(
apiKey: 'AIzaSyBuT70SbADLeg92ll8keCySI8I4eYyqyLw',
appId: '1:338042609701:android:0f0f92d7f895794f371fcc',
messagingSenderId: '338042609701',
projectId: 'hackon-58b23',
storageBucket: 'hackon-58b23.firebasestorage.app',
);
static const FirebaseOptions ios = FirebaseOptions(
apiKey: 'AIzaSyAB7czRjHfrkHEjiDOvPLiUz9zS1UGiZbw',
appId: '1:338042609701:ios:d1ac418d368d1df5371fcc',
messagingSenderId: '338042609701',
projectId: 'hackon-58b23',
storageBucket: 'hackon-58b23.firebasestorage.app',
iosBundleId: 'com.example.aplicacionHack',
);
static const FirebaseOptions macos = FirebaseOptions(
apiKey: 'AIzaSyAB7czRjHfrkHEjiDOvPLiUz9zS1UGiZbw',
appId: '1:338042609701:ios:d1ac418d368d1df5371fcc',
messagingSenderId: '338042609701',
projectId: 'hackon-58b23',
storageBucket: 'hackon-58b23.firebasestorage.app',
iosBundleId: 'com.example.aplicacionHack',
);
static const FirebaseOptions windows = FirebaseOptions(
apiKey: 'AIzaSyDfpYR_--oRlGdTjLnAZY6z3RLh3LLz5gk',
appId: '1:338042609701:web:b01c28c419fddd25371fcc',
messagingSenderId: '338042609701',
projectId: 'hackon-58b23',
authDomain: 'hackon-58b23.firebaseapp.com',
storageBucket: 'hackon-58b23.firebasestorage.app',
measurementId: 'G-DYGG6KBJ6C',
);
}