mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-05-24 08:37:00 +08:00
17 lines
410 B
Dart
17 lines
410 B
Dart
/*
|
|
* @Author: 一凨
|
|
* @Date: 2018-11-16 15:09:31
|
|
* @Last Modified by: 一凨
|
|
* @Last Modified time: 2018-11-16 15:09:31
|
|
*/
|
|
import 'Form/index.dart' as Form;
|
|
import 'Frame/index.dart' as Frame;
|
|
import 'Media/index.dart' as Media;
|
|
|
|
List getWidgets() {
|
|
List result = [];
|
|
result.addAll(Form.getWidgets());
|
|
result.addAll(Frame.getWidgets());
|
|
result.addAll(Media.getWidgets());
|
|
return result;
|
|
} |