flutter_ui_library 0.0.8 flutter_ui_library: ^0.0.8 copied to clipboard
The flutter_ui_library is a set of components for building UI in Flutter. library flutter_ui_library
widgetbook for view library: flutter_ui_library #
// widget book view ui
https://github.com/kanha-pakkhemaya/widgetbook-for-flutter-ui-library/tree/master
Getting Started #
Todo: ###
How to use library Button *** all parameters are optional. *** #
// Example of usage
import 'package:flutter_ui_library/flutter_ui_library.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Button Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(title: 'Button Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
// Default Button No Sent Param *** Ex1 ***
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text(widget.title),
),
body: const Center(
child: Button(),
),
);
}
}
// Example Button Sent Param All ***Ex2***
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text(widget.title),
),
body: const Center(
child: Button(
title: 'Button',
backgroundColor: Color(0xFFFFFFFF),
width: 150,
height: 50,
textStyle: TextStyle(
color: Color(0xFF000000),
fontSize: 14,
fontWeight: FontWeight.normal,
),
fontColor: Color(0xFF000000),
fontSize: 14,
fontWeight: FontWeight.normal,
// TOdo onPress:()=>{},
borderRadius: 30.0,
borderRadiusColor: Color(0xFF000000),
disableColor: Color(0xFFD9D9D9),
loadingIconColor: Color(0xFFD9D9D9),
strokeWidth: 4.0,
loadingIconWidth: 0.0,
statusButton: 'enable', // state sent param to statusButton => 'enable' , 'disable' , 'loading'
),
),
);
}
}
// Example Button ***Ex3***
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text(widget.title),
),
body: const Center(
child: Button(
title: 'Button',
backgroundColor: Color.fromARGB(255, 176, 233, 101),
width: 150,
height: 50,
fontColor: Color.fromARGB(255, 242, 3, 250),
fontSize: 14,
fontWeight: FontWeight.normal,
borderRadius: 30.0,
borderRadiusColor: Color.fromARGB(255, 194, 48, 48),
statusButton: 'enable',
),
),
);
}
}
// Example TextStyle ***Ex4***
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text(widget.title),
),
body: const Center(
child: Button(
textStyle: TextStyle(
color: Color.fromARGB(255, 248, 3, 3),
fontSize: 14,
fontWeight: FontWeight.normal,
),
),
),
);
}
}
// Example Loading ***Ex5***
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text(widget.title),
),
body: const Center(
child: Button(
statusButton: 'loading',
strokeWidth: 4.0,
loadingIconWidth: 0.0,
loadingIconColor: Color.fromARGB(255, 1, 250, 34),
),
),
);
}
}
// Example Disable ***Ex6***
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text(widget.title),
),
body: const Center(
child: Button(
statusButton: 'disable',
disableColor: Color(0xFFD9D9D9),
),
),
);
}
}
/// The main UI library for Flutter UI components. library flutter_ui_library;
/// A button widget. /// /// This widget represents a button in the UI library. class Button { /// The background color of the button. Color backgroundColor;
/// The border radius of the button. double borderRadius;
/// Creates a new button with the given [backgroundColor] and [borderRadius]. Button({backgroundColor:Color(0xFFFFFFFF), borderRadius:30.0}); }