form_kit 0.0.1 copy "form_kit: ^0.0.1" to clipboard
form_kit: ^0.0.1 copied to clipboard

retracted[pending analysis]

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(),
    );
  }
}
1
likes
0
points
14
downloads

Publisher

unverified uploader

Weekly Downloads

A FLutter package which can be used to create flutter forms with the use of JSON.

Repository (GitHub)
View/report issues

License

(pending) (license)

Dependencies

equatable, flutter, flutter_bloc, intl, multi_select_flutter, uuid

More

Packages that depend on form_kit