mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-06-08 20:18:49 +08:00
18 lines
608 B
Dart
18 lines
608 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:fluro/fluro.dart';
|
|
|
|
import 'package:flutter_go/utils/shared_preferences.dart';
|
|
|
|
class Application {
|
|
static Router router;
|
|
static TabController controller;
|
|
static SpUtil sharePeferences;
|
|
|
|
static Map<String, String> github = {
|
|
'widgetsURL':'https://github.com/alibaba/flutter-go/blob/develop/lib/widgets/',
|
|
//'develop':'https://github.com/alibaba-paimai-frontend/flutter-common-widgets-app/tree/develop/lib/widgets/',
|
|
//'master':'https://github.com/alibaba-paimai-frontend/flutter-common-widgets-app/tree/master/lib/widgets/'
|
|
};
|
|
|
|
}
|