first commit

This commit is contained in:
kicap
2023-11-01 02:59:57 +08:00
commit 4cc9967ab8
185 changed files with 10489 additions and 0 deletions

View File

@ -0,0 +1,67 @@
import 'package:flutter/material.dart';
import 'package:flutter_svg/svg.dart';
import 'package:perumahan_bew/app/themes/app_colors.dart';
import 'package:perumahan_bew/app/themes/app_text.dart';
import 'package:stacked/stacked.dart';
import './splash_screen_view_model.dart';
class SplashScreenView extends StatelessWidget {
const SplashScreenView({super.key});
@override
Widget build(BuildContext context) {
return ViewModelBuilder<SplashScreenViewModel>.reactive(
viewModelBuilder: () => SplashScreenViewModel(),
onViewModelReady: (SplashScreenViewModel model) async {
await model.init();
},
builder: (
BuildContext context,
SplashScreenViewModel model,
Widget? child,
) {
return Scaffold(
backgroundColor: mainColor,
body: Center(
child: Column(
children: [
const SizedBox(
height: 100,
),
SvgPicture.asset(
'assets/house.svg',
width: MediaQuery.of(context).size.width * 0.5,
height: MediaQuery.of(context).size.height * 0.5,
),
const SizedBox(
height: 10,
),
Text(
'APLIKASI PERUMAHAN \nMUTIARA ALGA',
style: boldTextStyle.copyWith(
color: backgroundColor,
fontSize: 20,
),
textAlign: TextAlign.center,
),
const Expanded(child: SizedBox()),
Text(
'Jl. Raya Mutiara Alga No. 1, \nKec. Ciputat, Kota Tangerang Selatan, \nBanten 15412',
style: regularTextStyle.copyWith(
color: backgroundColor,
fontSize: 12,
),
textAlign: TextAlign.center,
),
const SizedBox(
height: 20,
)
],
),
),
);
},
);
}
}

View File

@ -0,0 +1,13 @@
import 'package:perumahan_bew/app/core/custom_base_view_model.dart';
import '../../../app/app.logger.dart';
import '../../../app/app.router.dart';
class SplashScreenViewModel extends CustomBaseViewModel {
final log = getLogger('SplashScreenViewModel');
Future<void> init() async {
// await 3 seconds then go to login
await Future.delayed(const Duration(seconds: 3));
await navigationService.navigateTo(Routes.loginScreenView);
}
}