mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-07-15 03:04:25 +08:00
22 lines
561 B
Dart
22 lines
561 B
Dart
/**
|
|
* Created with 菜鸟手册.
|
|
* User: 一晟
|
|
* Date: 2018/11/14
|
|
* Time: 下午4:31
|
|
* email: zhu.yan@alibaba-inc.com
|
|
* target: RaisedButton 的示例
|
|
* 对应文档地址:https://docs.flutter.io/flutter/material/RaisedButton-class.html
|
|
*/
|
|
import '../../../../model/widget.dart';
|
|
import "package:flutter/material.dart";
|
|
|
|
import './TextField/index.dart' as TextField;
|
|
|
|
List<WidgetPoint> widgetPoints = [
|
|
WidgetPoint(
|
|
name: 'TextField',
|
|
routerName: TextField.Demo.routeName,
|
|
buildRouter: (BuildContext context) => TextField.Demo(),
|
|
),
|
|
];
|