mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-05-20 06:16:20 +08:00
14 lines
315 B
Dart
14 lines
315 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_go/model/widget.dart';
|
|
|
|
import './Expanded/index.dart' as Expanded;
|
|
|
|
List<WidgetPoint> widgetPoints = [
|
|
WidgetPoint(
|
|
name: 'Expanded',
|
|
routerName: Expanded.Demo.routeName,
|
|
buildRouter: (BuildContext context) => Expanded.Demo(),
|
|
),
|
|
];
|