firebase_functions_desktop 0.1.0+1 firebase_functions_desktop: ^0.1.0+1 copied to clipboard
Desktop implementation of cloud_functions
// ignore_for_file: require_trailing_commas, public_member_api_docs, library_private_types_in_public_api
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:core';
import 'package:cloud_functions/cloud_functions.dart';
import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/material.dart';
FirebaseOptions get firebaseOptions => const FirebaseOptions(
appId: '1:448618578101:ios:0b650370bb29e29cac3efc',
apiKey: 'AIzaSyAgUhHU8wSJgO5MVNy95tMT07NEjzMOfz0',
projectId: 'react-native-firebase-testing',
messagingSenderId: '448618578101',
);
late FirebaseFunctions functions;
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
final app =
await Firebase.initializeApp(name: 'app', options: firebaseOptions);
functions = FirebaseFunctions.instanceFor(app: app)
..useFunctionsEmulator('localhost', 5001);
runApp(MyApp());
}
class MyApp extends StatefulWidget {
MyApp({Key? key}) : super(key: key);
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
List fruit = [];
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Firebase Functions Example'),
),
body: Center(
child: ListView.builder(
itemCount: fruit.length,
itemBuilder: (context, index) {
return ListTile(
title: Text('${fruit[index]}'),
);
})),
floatingActionButton: Builder(
builder: (context) => FloatingActionButton.extended(
onPressed: () async {
// See index.js in the functions folder for the example function we
// are using for this example
final callable = functions.httpsCallable('listFruit',
options: HttpsCallableOptions(
timeout: const Duration(seconds: 5)));
await callable().then((v) {
setState(() {
fruit.clear();
// ignore: avoid_dynamic_calls
v.data.forEach((f) {
fruit.add(f);
});
});
}).catchError((e) {
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
content: Text('ERROR: $e'),
));
});
},
label: const Text('Call Function'),
icon: const Icon(Icons.cloud),
backgroundColor: Colors.deepOrange,
),
),
),
);
}
}