mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-06-07 03:09:38 +08:00
14 lines
371 B
Dart
14 lines
371 B
Dart
/// @Author: xiaojia.dxj
|
|
/// @Date: 2018-12-24 16:31:09
|
|
/// @Last Modified by: xiaojia.dxj
|
|
/// @Last Modified time: 2018-12-24 16:31:09
|
|
|
|
import './Material/index.dart' as Material;
|
|
import './Cupertino/index.dart' as Cupertino;
|
|
|
|
List getWidgets() {
|
|
List result = [];
|
|
result.addAll(Material.widgetPoints);
|
|
result.addAll(Cupertino.widgetPoints);
|
|
return result;
|
|
} |