Last updated:
0 purchases
bform
Bform #
Package to help you create beautiful forms widgets.
Support
Android
iOS
Linux
macOS
Web
Windows
Features #
appbar
footer
form widgets
table widgets
Getting started #
To use this package, add bform as dependency in your pubspec.yaml file:
dependencies:
bform:
copied to clipboard
Import the package into your dart file:
import 'package:bform/bform.dart';
copied to clipboard
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),
BformTextInput(title: 'Input Example'),
),
),
),
);
}
}
copied to clipboard
Full Demo Here
Additional information #
For any bugs, issues and more information, please contact the package authors on email: [email protected].
Developer(s) #
Gabriel Vieira(https://gabrielvieira.ao)
License #
MIT LICENSE (https://github.com/gabrielgits/bform/blob/main/LICENSE)
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.