lite_forms 0.0.23 copy "lite_forms: ^0.0.23" to clipboard
lite_forms: ^0.0.23 copied to clipboard

This packages dramatically simplifies working with forms still letting you use standard flutter decorations.

example/lib/main.dart

// ignore_for_file: depend_on_referenced_packages

import 'package:flutter/material.dart';

import 'start_page.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Lite Forms Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      darkTheme: ThemeData.dark(),
      // themeMode: ThemeMode.dark,
      home: const StartPage(),
    );
  }
}
2
likes
80
points
98
downloads

Publisher

verified publishersoftmaestri.com

Weekly Downloads

This packages dramatically simplifies working with forms still letting you use standard flutter decorations.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

clock, collection, country_icons, figma_squircle, file_picker, flutter, flutter_markdown, flutter_multi_formatter, font_awesome_flutter, image_picker, jiffy, lite_state, mime, path, universal_html, video_compress

More

Packages that depend on lite_forms