flutter_util 0.1.3 copy "flutter_util: ^0.1.3" to clipboard
flutter_util: ^0.1.3 copied to clipboard

Some common widgets and functions.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';

import 'package:flutter/services.dart';
import 'package:flutter_util/widgets.dart';
import 'package:flutter_util/models.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';

  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    String title = '1`88`也可以';
    List<String> list = title.split('`');
    List textSpan = [];
    for (int i = 0; i < list.length; ++i) {
      String o = list[i];
      textSpan.add({'text':o,'style':{'color':i%2==1 ? Colors.red.value : 'FF000000','fontWeight':200}});
    }
    print(textSpan);
    
    return MaterialApp(
      home: Scaffold(
          appBar: AppBar(
            title: const Text('NR组件展示'),
          ),
          body: SingleChildScrollView(
            child: Container(
              padding: EdgeInsets.all(24.0),
              child: Column(
                crossAxisAlignment: CrossAxisAlignment.start,
                children: <Widget>[
                  NRText({'style':{'color':'FFFF00FF','fontSize':16.0},'textSpan':[{'text':'12','style':{'color':'FFFF00FF','fontSize':16.0}},{'text':'2312','style':{'color':'FFddcc'}}]}),
                  NRText({'textSpan':textSpan},model: NRTextModel(style: TextStyle(fontSize:16.0,color: Colors.black,fontWeight:FontWeight.bold))),
                  NRText.title('60px title'),
                  NRText.title('60px title red',style: TextStyle(color: Colors.red),),
                  NRText.body1('12px'),
                  NRText('数据为 String'),
                  NRText({'text': '数据为 Map'}),
                  NRText(NRTextModel(text: '数据为 NRTextModel')),
                  Container(
                    height: 20.0,
                  ),
                  NRText.title('NRImage展示:'),
                  NRText.body1('url:'),
                  NRImage('http://file.zhile88.com/icathia/1.png', model: NRImageModel(height: 20.0, width: 20.0)),
                  NRText.body1('assets:'),
                  NRImage('assets/2.png',model: NRImageModel(height: 20.0, width: 20.0)),
                  NRText.body1('AssetImage:'),
                  NRImage(AssetImage('assets/3.png'),model: NRImageModel(height: 20.0, width: 20.0)),
                  Container(
                    height: 20.0,
                  ),
                  NRText('NRButton展示'),
                  NRButton(
                    child: NRText('无风格按钮'),
                    onPressed: () {},
                    model: NRButtonModel(type: ButtonStyleType.none),
                  ),
                  NRButton(
                      child: NRText('flat风格按钮'),
                      onPressed: () {},
                      model: NRButtonModel(type: ButtonStyleType.flat)),
                  NRButton(
                      child: NRText('material风格按钮'),
                      onPressed: () {},
                      model: NRButtonModel(type: ButtonStyleType.material)),
                  NRButton.cupertino(
                      child: NRText('cupertino风格按钮'),
                      onPressed: () {},
                  ),
                ],
              ),
            ),
          )),
    );
  }
}
0
likes
20
pub points
33%
popularity

Publisher

unverified uploader

Some common widgets and functions.

Homepage

License

unknown (LICENSE)

Dependencies

cached_network_image, flutter, intl, json_annotation

More

Packages that depend on flutter_util