指南

    资料

    hero # Flutter Fair Fair是为Flutter设计的,UI&模板动态化框架 快速上手 → ## 小家雀 核心运行时仅2.6K行代码,身型轻巧,体积没烦恼。 ## 低侵入 纯Dart开发,左手Flutter右手Fair,同一片语义下,配上就可以起飞。 ## 易扩展 插拔式的组件,一个注解搞定业务组件和社区UI库,扩展你的无限想象。 ## # 现在就上车 集成Flutter Fair只需几步。在pubspec.yaml内添加依赖
    1. dependencies:
    2. fair: ^0.2.0
    1 2 启用容器FairApp
    1. void main() {
    2. runApp(
    3. FairApp(
    4. child: MaterialApp(home: App())
    5. ),
    6. );
    7. }
    1 2 3 4 5 6 7 引用组件FairWidget
    1. FairWidget(
    2. type: 'hello_world',
    3. path: 'assets/bundle/hello_world.json',
    4. )
    1 2 3 4 Copyright © 2020 58.com | Powered by The Fair Authors