flutter_lyform 0.5.5 copy "flutter_lyform: ^0.5.5" to clipboard
flutter_lyform: ^0.5.5 copied to clipboard

outdated

Flutter package to implement forms in an easy, fast and effective way using the lyform and flutter_bloc packages.

example/lib/main.dart

import 'package:example/bloc_observer.dart';
import 'package:example/profile_form/profile_page.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';

Future<void> main() async {
  await BlocOverrides.runZoned(
    () async => runApp(const App()),
    blocObserver: AppBlocObserver(),
  );
}

class App extends StatelessWidget {
  const App({super.key});

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: ProfilePage(),
    );
  }
}
5
likes
0
points
94
downloads

Publisher

verified publisherlynot.io

Weekly Downloads

Flutter package to implement forms in an easy, fast and effective way using the lyform and flutter_bloc packages.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

bloc, flutter, flutter_bloc, lyform

More

Packages that depend on flutter_lyform