wo_form 2.0.0
wo_form: ^2.0.0 copied to clipboard
Easily create forms, and export/import them as json.
import 'dart:developer';
import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/material.dart';
import 'package:wo_form_example/app.dart';
import 'package:wo_form_example/firebase_options.dart';
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
try {
await Firebase.initializeApp(
options: DefaultFirebaseOptions.currentPlatform,
);
// ignore: avoid_catching_errors
} on UnimplementedError {
// ignore: avoid_print
log(
'To use address autocompletion, link this example to your own address '
'autocompletion system.',
);
}
runApp(const WoFormExamplesApp());
}