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