form_kit 0.0.1
form_kit: ^0.0.1 copied to clipboard
A FLutter package which can be used to create flutter forms with the use of JSON.
example/lib/main.dart
import 'package:example/test/test_page.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'JSON FORM',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const TestPage(),
);
}
}