bform 0.1.1 copy "bform: ^0.1.1" to clipboard
bform: ^0.1.1 copied to clipboard

Package to allows you to create beautiful forms.

Bform #

Package to allows you to create beautiful forms.

Support Android iOS Linux macOS Web Windows

Features #

  • text input
  • date picker
  • timer picker
  • button
  • group radio
  • list tile

Getting started #

  1. To use this package, add bform as dependency in your pubspec.yaml file:
dependencies:
   bform: "^0.1.0"
  1. Import the package into your dart file:
import 'package:bform/bform.dart';

Usage #

import 'package:flutter/material.dart';
import 'package:bform/bform.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: Scaffold(
        body: Center(
          child: Padding(
            padding: EdgeInsets.all(8.0),
            child: BformTextInput(
              title: 'Your Name',
              icon: Icons.edit,
            ),
          ),
        ),
      ),
    );
  }
}

Full Demo Here

Additional information #

For any bugs, issues and more information, please contact the package authors on email: gvgabrielvieiragabrielvieira@gmail.com.

Developer(s) #

Gabriel Vieira(https://gabrielvieira.ao)

License #

MIT LICENSE (https://github.com/gabrielgits/bform/blob/main/LICENSE)

4
likes
0
pub points
16%
popularity

Publisher

verified publishergabrielvieira.ao

Package to allows you to create beautiful forms.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, intl

More

Packages that depend on bform