nb_utils 3.3.0+12
nb_utils: ^3.3.0+12 copied to clipboard
This package helps you daily usable function with ease. Just add nb_utils with its latest version and that's it you are ready to use.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:nb_utils/nb_utils.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Utils Example',
debugShowCheckedModeBanner: false,
theme: ThemeData(
primaryColor: whiteColor,
),
home: HomePage(),
);
}
}
class HomePage extends StatefulWidget {
@override
_HomePageState createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return SafeArea(
child: Scaffold(
body: Container(
padding: EdgeInsets.all(16),
child: Column(
children: <Widget>[
UL(
symbolType: SymbolType.Numbered,
children: [
Text('Hi', style: primaryTextStyle()),
Text('Hello', style: primaryTextStyle()),
Text('How are you?', style: primaryTextStyle()),
],
),
16.height,
Loader(),
16.height,
AppTextField(
controller: TextEditingController(),
textFieldType: TextFieldType.PASSWORD,
decoration: InputDecoration(),
buildCounter: (BuildContext context, {int currentLength, int maxLength, bool isFocused}) {
return SizedBox();
},
),
SettingItemWidget(
title: 'Setting',
onTap: () {},
leading: Icon(Icons.ac_unit),
trailing: Icon(Icons.ac_unit),
),
],
),
).onTap(() {
HomePage().launch(context);
}),
),
);
}
}