mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-06-01 14:58:50 +08:00
25 lines
734 B
Dart
25 lines
734 B
Dart
import '../../../../model/widget.dart';
|
|
import "package:flutter/material.dart";
|
|
import "Switch/index.dart" as Switch;
|
|
import "SwitchListTile/index.dart" as SwitchListTile;
|
|
import "AnimatedSwitcher/index.dart" as AnimatedSwitcher;
|
|
|
|
|
|
List<WidgetPoint> widgetPoints = [
|
|
WidgetPoint(
|
|
name: 'Switch',
|
|
routerName: Switch.Demo.routeName,
|
|
buildRouter: (BuildContext context) => Switch.Demo(),
|
|
),
|
|
WidgetPoint(
|
|
name: 'SwitchListTile',
|
|
routerName: SwitchListTile.Demo.routeName,
|
|
buildRouter: (BuildContext context) => SwitchListTile.Demo(),
|
|
),
|
|
WidgetPoint(
|
|
name: 'AnimatedSwitcher',
|
|
routerName: AnimatedSwitcher.Demo.routeName,
|
|
buildRouter: (BuildContext context) => AnimatedSwitcher.Demo(),
|
|
)
|
|
];
|