v1.0.24fast_ui_kit
Fast UI Kit 是用于快速开发 Flutter 应用程序的 UI 套件
flutter ui 套件
^3.0.2^11.0.2{"sdk":"flutter"}^4.2.0^1.0.5^1.0.1^6.1.0^1.4.1^4.1.0^3.0.1^3.0.0{"sdk":"flutter"}^4.0.0以下为英文项目原文快照,最新内容请访问 GitHub。
https://raw.githubusercontent.com/welitonsousa/fast_ui_kit/main/assets/images/fast.png
The "Fast UI Kit" is a Flutter package that aims to simplify application development by providing a collection of ready-to-use components. Similar to Quasar, it offers a set of components that can be used to quickly and efficiently create user interfaces while maintaining a consistent and elegant design.
The main goal of the "Fast UI Kit" is to expedite the development process by allowing developers to utilize pre-defined components instead of building each element from scratch. This saves time and effort while helping to maintain a cohesive visual appearance throughout the application.
https://raw.githubusercontent.com/welitonsousa/fast_ui_kit/main/assets/images/ui.png
✅ Dark Mode suporte ✅ Color scheme suporte
The components screenshots with colors scheme green selected
https://raw.githubusercontent.com/welitonsousa/fast_ui_kit/main/assets/components/button.png https://raw.githubusercontent.com/welitonsousa/fast_ui_kit/main/assets/components/button_outlined.png https://raw.githubusercontent.com/welitonsousa/fast_ui_kit/main/assets/components/button_outlined_loading.gif
https://raw.githubusercontent.com/welitonsousa/fast_ui_kit/main/assets/components/formfield.gif https://raw.githubusercontent.com/welitonsousa/fast_ui_kit/main/assets/components/money_mask.gif
https://raw.githubusercontent.com/welitonsousa/fast_ui_kit/main/assets/components/button.png
https://raw.githubusercontent.com/welitonsousa/fast_ui_kit/main/assets/components/button_group.gif
https://raw.githubusercontent.com/welitonsousa/fast_ui_kit/main/assets/components/audio.png
https://raw.githubusercontent.com/welitonsousa/fast_ui_kit/main/assets/components/calendar.png
https://raw.githubusercontent.com/welitonsousa/fast_ui_kit/main/assets/components/carousel.gif
https://raw.githubusercontent.com/welitonsousa/fast_ui_kit/main/assets/components/text.png
https://raw.githubusercontent.com/welitonsousa/fast_ui_kit/main/assets/components/link_fy.png
https://raw.githubusercontent.com/welitonsousa/fast_ui_kit/main/assets/components/file.gif
Use FastColumn to have a vertical gap between components
https://raw.githubusercontent.com/welitonsousa/fast_ui_kit/main/assets/components/column.png
class MyApp extends StatelessWidget {
MyApp({super.key});
final theme = FastTheme(seed: Colors.green);
@override
Widget build(BuildContext context) {
return MaterialApp(
darkTheme: theme.dark,
theme: theme.light,
home: const HomePage(),
);
}
}
Icon(FastIcons.library.icon)color schemecurrent themebutton scheme of colorsbrightness of applicationexample:
context.showMessage(
'Update user successful',
title: 'Sucesso', //optional field
type: MessageVariant.success, //optional field
position: MessagePosition.top, //optional field
style: Style.flat, //optional field
);
Feito com ❤️ by Weliton Sousa