Files
yifeng.yl 2e9702ec7b add file
2019-01-08 20:39:13 +08:00

31 lines
821 B
Dart

import '../../../../model/widget.dart';
import "package:flutter/material.dart";
import 'Row/index.dart' as Row;
import 'Column/index.dart' as Column;
import 'Container/index.dart' as Container;
import 'Center/index.dart' as Center;
List<WidgetPoint> widgetPoints = [
WidgetPoint(
name: 'Row',
routerName: Row.Demo.routeName,
buildRouter: (BuildContext context) => Row.Demo(),
),
WidgetPoint(
name: 'Column',
routerName: Column.Demo.routeName,
buildRouter: (BuildContext context) => Column.Demo(),
),
WidgetPoint(
name: 'Container',
routerName: Container.Demo.routeName,
buildRouter: (BuildContext context) => Container.Demo(),
),
WidgetPoint(
name: 'Center',
routerName: Center.Demo.routeName,
buildRouter: (BuildContext context) => Center.Demo(),
),
];