wo_form 2.0.0 copy "wo_form: ^2.0.0" to clipboard
wo_form: ^2.0.0 copied to clipboard

PlatformiOS

Easily create forms, and export/import them as json.

example/lib/main.dart

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());
}