lite_forms 0.0.10
lite_forms: ^0.0.10 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(),
);
}
}