mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-07-13 08:33:26 +08:00
37 lines
1.0 KiB
Dart
37 lines
1.0 KiB
Dart
import '../../../../model/widget.dart';
|
|
import 'package:flutter_web/material.dart';
|
|
|
|
import 'Icon/index.dart' as Icon;
|
|
import 'ImageIcon/index.dart' as ImageIcon;
|
|
import 'IconTheme/index.dart' as IconTheme;
|
|
import 'IconData/index.dart' as IconData;
|
|
import 'IconThemeData/index.dart' as IconThemeData;
|
|
|
|
List<WidgetPoint> widgetPoints = [
|
|
WidgetPoint(
|
|
name: 'Icon',
|
|
routerName: Icon.Demo.routeName,
|
|
buildRouter: (BuildContext context) => Icon.Demo(),
|
|
),
|
|
WidgetPoint(
|
|
name: 'ImageIcon',
|
|
routerName: ImageIcon.Demo.routeName,
|
|
buildRouter: (BuildContext context) => ImageIcon.Demo(),
|
|
),
|
|
WidgetPoint(
|
|
name: 'IconTheme',
|
|
routerName: IconTheme.Demo.routeName,
|
|
buildRouter: (BuildContext context) => IconTheme.Demo(),
|
|
),
|
|
WidgetPoint(
|
|
name: 'IconData',
|
|
routerName: IconData.Demo.routeName,
|
|
buildRouter: (BuildContext context) => IconData.Demo(),
|
|
),
|
|
WidgetPoint(
|
|
name: 'IconThemeData',
|
|
routerName: IconThemeData.Demo.routeName,
|
|
buildRouter: (BuildContext context) => IconThemeData.Demo(),
|
|
),
|
|
];
|