29 lines
882 B
Dart
29 lines
882 B
Dart
import 'package:core/core.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:tmail_ui_user/features/home/presentation/home_controller.dart';
|
|
|
|
class HomeView extends GetWidget<HomeController> {
|
|
const HomeView({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
SystemChrome.setSystemUIOverlayStyle(const SystemUiOverlayStyle(
|
|
systemNavigationBarColor: Colors.white,
|
|
systemNavigationBarIconBrightness: Brightness.dark,
|
|
statusBarColor: Colors.white,
|
|
statusBarIconBrightness: Brightness.dark,
|
|
));
|
|
|
|
return Container(
|
|
color: AppColor.primaryLightColor,
|
|
child: const SizedBox(
|
|
width: 100,
|
|
height: 100,
|
|
child: CupertinoActivityIndicator(),
|
|
),
|
|
);
|
|
}
|
|
} |