mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
Adapt initialize widget
This commit is contained in:
parent
d980239a68
commit
2292454830
@ -2,6 +2,7 @@ import 'dart:io';
|
|||||||
|
|
||||||
import 'package:comunic/main.dart';
|
import 'package:comunic/main.dart';
|
||||||
import 'package:comunic/models/config.dart';
|
import 'package:comunic/models/config.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
/// Forez development configuration
|
/// Forez development configuration
|
||||||
///
|
///
|
||||||
@ -24,6 +25,8 @@ void main() {
|
|||||||
apiServerUri: "/",
|
apiServerUri: "/",
|
||||||
apiServerSecure: false,
|
apiServerSecure: false,
|
||||||
clientName: "ForezFlutter",
|
clientName: "ForezFlutter",
|
||||||
|
splashBackgroundColor: Colors.green.shade900,
|
||||||
|
appName: "#Forez",
|
||||||
));
|
));
|
||||||
|
|
||||||
HttpOverrides.global = new MyHttpOverride();
|
HttpOverrides.global = new MyHttpOverride();
|
||||||
|
@ -15,6 +15,7 @@ class Config {
|
|||||||
final bool apiServerSecure;
|
final bool apiServerSecure;
|
||||||
final String clientName;
|
final String clientName;
|
||||||
final Color splashBackgroundColor;
|
final Color splashBackgroundColor;
|
||||||
|
final String appName;
|
||||||
|
|
||||||
const Config({
|
const Config({
|
||||||
@required this.apiServerName,
|
@required this.apiServerName,
|
||||||
@ -22,11 +23,13 @@ class Config {
|
|||||||
@required this.apiServerSecure,
|
@required this.apiServerSecure,
|
||||||
@required this.clientName,
|
@required this.clientName,
|
||||||
this.splashBackgroundColor = defaultColor,
|
this.splashBackgroundColor = defaultColor,
|
||||||
|
this.appName = "Comunic",
|
||||||
}) : assert(apiServerName != null),
|
}) : assert(apiServerName != null),
|
||||||
assert(apiServerUri != null),
|
assert(apiServerUri != null),
|
||||||
assert(apiServerSecure != null),
|
assert(apiServerSecure != null),
|
||||||
assert(clientName != null),
|
assert(clientName != null),
|
||||||
assert(splashBackgroundColor != null);
|
assert(splashBackgroundColor != null),
|
||||||
|
assert(appName != null);
|
||||||
|
|
||||||
/// Get and set static configuration
|
/// Get and set static configuration
|
||||||
static Config _config;
|
static Config _config;
|
||||||
|
@ -11,6 +11,7 @@ import 'package:comunic/ui/routes/main_route/main_route.dart';
|
|||||||
import 'package:comunic/ui/routes/main_route/smartphone_route.dart';
|
import 'package:comunic/ui/routes/main_route/smartphone_route.dart';
|
||||||
import 'package:comunic/ui/routes/main_route/tablet_route.dart';
|
import 'package:comunic/ui/routes/main_route/tablet_route.dart';
|
||||||
import 'package:comunic/ui/routes/welcome_route.dart';
|
import 'package:comunic/ui/routes/welcome_route.dart';
|
||||||
|
import 'package:comunic/ui/widgets/login_routes_theme.dart';
|
||||||
import 'package:comunic/ui/widgets/safe_state.dart';
|
import 'package:comunic/ui/widgets/safe_state.dart';
|
||||||
import 'package:comunic/utils/flutter_utils.dart';
|
import 'package:comunic/utils/flutter_utils.dart';
|
||||||
import 'package:comunic/utils/intl_utils.dart';
|
import 'package:comunic/utils/intl_utils.dart';
|
||||||
@ -113,7 +114,8 @@ class _InitializeWidgetState extends SafeState<InitializeWidget> {
|
|||||||
|
|
||||||
/// Build loading widget
|
/// Build loading widget
|
||||||
Widget _buildNonReadyWidget() {
|
Widget _buildNonReadyWidget() {
|
||||||
return Scaffold(
|
return LoginRoutesTheme(
|
||||||
|
child: Scaffold(
|
||||||
backgroundColor: config().splashBackgroundColor,
|
backgroundColor: config().splashBackgroundColor,
|
||||||
body: Center(
|
body: Center(
|
||||||
child: Material(
|
child: Material(
|
||||||
@ -127,7 +129,7 @@ class _InitializeWidgetState extends SafeState<InitializeWidget> {
|
|||||||
flex: 4,
|
flex: 4,
|
||||||
),
|
),
|
||||||
Text(
|
Text(
|
||||||
tr("Comunic"),
|
config().appName,
|
||||||
style: TextStyle(fontSize: 50),
|
style: TextStyle(fontSize: 50),
|
||||||
),
|
),
|
||||||
Spacer(
|
Spacer(
|
||||||
@ -148,6 +150,7 @@ class _InitializeWidgetState extends SafeState<InitializeWidget> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user