mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-06-03 00:14:22 +08:00
15 lines
337 B
Dart
15 lines
337 B
Dart
/*
|
|
* @Author: 一凨
|
|
* @Date: 2018-11-16 15:09:27
|
|
* @Last Modified by: 一凨
|
|
* @Last Modified time: 2018-11-16 15:09:27
|
|
*/
|
|
import 'Image/index.dart' as Image;
|
|
import 'Icon/index.dart' as Icon;
|
|
|
|
List getWidgets() {
|
|
List result = [];
|
|
result.addAll(Image.widgetPoints);
|
|
result.addAll(Icon.widgetPoints);
|
|
return result;
|
|
} |