flui
FLUI 是一個功能強大的 Google Flutter UI 框架,包含小部件套件和有用的模組。
一個功能強大的 Google Flutter UI 框架。
{"sdk":"flutter"}^3.0.1{"sdk":"flutter"}^4.1.1^1.7.3^3.2.5以下為英文專案原文快照,最新內容請造訪 GitHub。
English | 简体中文
https://abtfun.oss-cn-beijing.aliyuncs.com/img/2019-12-18-Artboard.png
A powerful UI framework for Google Flutter Demo apk
pub package CI Status Documentation GitHub stars GitHub forks GitHub license
https://raw.githubusercontent.com/Rannie/Rannie.github.io/master/images/2019-12-18-overview-2.pngFLUI has good compatibility on multiple clients, and the framework will be developed based on Flutter Stable Channel.
Currently supports v1.17.0 .
dependencies:
flui: 0.9.2
Then run flutter pub get to download the dependencies.
After the dependency installed, you can directly import the widget.
import 'package:flui/flui.dart';
// in somewhere
FLAppBarTitle(
title: 'AppBar',
subtitle: '(subtitle)',
layout: FLAppBarTitleLayout.vertical,
showLoading: true
)
dynamic-post
FLUI-Dynamic is a dynamic rendering module that supports rendering widgets based on json strings or objects of a specified type. For more introduction and usage, please see Dynamic
Widget buildDynamicWidget() {
return FLDyContainer(
jsonObject: $JSON_STRING_OR_OBJECT,
placeholder: CircularProgressIndicator(
strokeWidth: 3.0,
valueColor: AlwaysStoppedAnimation(Theme.of(context).accentColor),
),
);
}
Principles:
feat | fix | docs | style | refactor | perf | test | workflow | ci | chore | types:.MIT License