complete admin, mandor and user page

This commit is contained in:
kicap
2023-11-03 23:24:23 +08:00
parent 4cc9967ab8
commit 8eacfa6dee
41 changed files with 1335 additions and 492 deletions

View File

@ -36,6 +36,18 @@ class MandorTrackingIndexView extends StatelessWidget {
backgroundColor: mainColor,
elevation: 0,
automaticallyImplyLeading: false,
actions: [
// create logout button
IconButton(
onPressed: () {
model.logout();
},
icon: const Icon(
Icons.logout,
color: Colors.white,
),
),
],
),
body: ExtendedNavigator(
navigatorKey: StackedService.nestedNavigationKey(4),

View File

@ -5,10 +5,14 @@ import 'package:stacked_services/stacked_services.dart';
import '../../../app/app.locator.dart';
import '../../../app/app.logger.dart';
import '../../../app/app.router.dart';
import '../../../services/shared_prefs.dart';
class MandorTrackingIndexViewModel extends IndexTrackingViewModel {
final log = getLogger('MandorTrackingIndexViewModel');
final _navigationService = locator<NavigationService>();
final _mySharedPrefs = locator<MySharedPrefs>();
final _dialogService = locator<DialogService>();
final _snackbarService = locator<SnackbarService>();
final _bottomNavBarList = [
{'name': 'List', 'icon': Icons.list_alt_rounded, 'header': 'List Pemilik'},
@ -43,4 +47,26 @@ class MandorTrackingIndexViewModel extends IndexTrackingViewModel {
id: 4,
);
}
logout() {
_dialogService
.showConfirmationDialog(
title: 'Logout',
description: 'Apakah Anda yakin ingin logout?',
cancelTitle: 'Batal',
confirmationTitle: 'Logout',
)
.then((value) async {
if (value!.confirmed) {
await _mySharedPrefs.clear();
_navigationService.clearStackAndShow(Routes.loginScreenView);
_snackbarService.showSnackbar(
message: 'Logout berhasil',
duration: const Duration(seconds: 2),
);
}
});
// await _mySharedPrefs.clear();
// _navigationService.clearStackAndShow(Routes.loginScreenView);
}
}

View File

@ -92,7 +92,8 @@ class ListPemilikView extends StatelessWidget {
return Card(
child: GestureDetector(
onTap: () {
model.log.i('Card $index tapped');
model.checkProgress(
model.listProgress[index]);
},
child: ListTile(
title: Text(

View File

@ -1,3 +1,4 @@
import '../../../../app/app.bottomsheets.dart';
import '../../../../app/app.logger.dart';
import '../../../../app/core/custom_base_view_model.dart';
import '../../../../model/my_response_model.dart';
@ -49,4 +50,15 @@ class ListPemilikViewModel extends CustomBaseViewModel {
setBusy(false);
}
}
checkProgress(ProgressModel progressModel) async {
await bottomSheetService.showCustomSheet(
variant: BottomSheetType.tambahLihatProgressBottomSheetView,
title: 'Lihat Progress',
data: {
'idPerumahan': progressModel.idRumah,
'progressModel': progressModel,
},
);
}
}

View File

@ -31,52 +31,81 @@ class PengembangHomeView extends StatelessWidget {
}
return false;
},
child: WebView(
// initialUrl: 'http://192.168.43.125/rekam-medis',
initialUrl: model.url,
javascriptMode: JavascriptMode.unrestricted,
onWebViewCreated: (WebViewController webViewController) {
// _controller.complete(webViewController);
model.webViewControllerCompleter.future
.then((value) => model.webVIewcontroller = value);
model.webViewControllerCompleter.complete(webViewController);
},
onProgress: (int progress) {
double progressDouble = progress / 100;
LinearProgressIndicator(
value: progressDouble,
);
// model.myEasyLoading.showProgress(progressDouble, "Loading Denah");
},
// javascriptChannels: <JavascriptChannel>{
// _toasterJavascriptChannel(context),
// },
javascriptChannels: <JavascriptChannel>{
JavascriptChannel(
name: 'messageHandler',
onMessageReceived: (JavascriptMessage message) {
model.log.d(message.message);
// var data = JsonDecoder().convert(message.message);
// model.log.d(data['status']);
model.goToDetail(message.message);
child: SafeArea(
child: SizedBox(
height: MediaQuery.of(context).size.height,
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
if (model.progress < 1)
Center(
child: LinearProgressIndicator(
value: model.progress,
),
),
Expanded(
child: Visibility(
visible: model.status,
child: WebView(
// initialUrl: 'http://192.168.43.125/rekam-medis',
initialUrl: model.url,
javascriptMode: JavascriptMode.unrestricted,
onWebViewCreated:
(WebViewController webViewController) {
// _controller.complete(webViewController);
model.webViewControllerCompleter.future.then(
(value) => model.webVIewcontroller = value);
model.webViewControllerCompleter
.complete(webViewController);
},
onProgress: (int progress) {
double progressDouble = progress / 100;
model.progress = progressDouble;
model.log.d('progress: $progressDouble');
if (progressDouble == 1) {
model.status = true;
}
model.notifyListeners();
// LinearProgressIndicator(
// value: progressDouble,
// );
// model.myEasyLoading.showProgress(progressDouble, "Loading Denah");
},
// javascriptChannels: <JavascriptChannel>{
// _toasterJavascriptChannel(context),
// },
javascriptChannels: <JavascriptChannel>{
JavascriptChannel(
name: 'messageHandler',
onMessageReceived: (JavascriptMessage message) {
model.log.d(message.message);
// var data = JsonDecoder().convert(message.message);
// model.log.d(data['status']);
model.goToDetail(message.message);
// dev.i("message from the web view=\"${message.message}\"");
// if (message.message == "coba") {
// dev.i("sini untuk coba");
// controller.runJavascript("coba22('heheheh')");
// }
},
// dev.i("message from the web view=\"${message.message}\"");
// if (message.message == "coba") {
// dev.i("sini untuk coba");
// controller.runJavascript("coba22('heheheh')");
// }
},
),
},
// navigationDelegate: (NavigationRequest request) async {},
onPageStarted: (String url) {},
onPageFinished: (String url) {
// dev.i('Page finished loading: $url');
model.easyLoading.dismiss();
},
gestureNavigationEnabled: true,
backgroundColor: const Color(0x00000000),
),
),
),
],
),
},
// navigationDelegate: (NavigationRequest request) async {},
onPageStarted: (String url) {},
onPageFinished: (String url) {
// dev.i('Page finished loading: $url');
model.easyLoading.dismiss();
},
gestureNavigationEnabled: true,
backgroundColor: const Color(0x00000000),
),
),
),
);

View File

@ -15,12 +15,18 @@ class PengembangHomeViewModel extends CustomBaseViewModel {
late String url;
late String level;
bool status = true;
double progress = 0;
late WebViewController webVIewcontroller;
final Completer<WebViewController> webViewControllerCompleter =
Completer<WebViewController>();
Future<void> init() async {
// Future.delayed(const Duration(milliseconds: 1), () {
// status = false;
// notifyListeners();
// });
globalVar.backPressed = "exitApp";
url = dotenv.env['url']!;
log.d(url);

View File

@ -38,6 +38,18 @@ class PengembangIndexView extends StatelessWidget {
backgroundColor: mainColor,
elevation: 0,
automaticallyImplyLeading: false,
actions: [
// create logout button
IconButton(
onPressed: () {
model.logout();
},
icon: const Icon(
Icons.logout,
color: Colors.white,
),
),
],
),
body: ExtendedNavigator(
navigatorKey: StackedService.nestedNavigationKey(3),

View File

@ -5,10 +5,14 @@ import 'package:stacked_services/stacked_services.dart';
import '../../../app/app.locator.dart';
import '../../../app/app.logger.dart';
import '../../../app/app.router.dart';
import '../../../services/shared_prefs.dart';
class PengembangIndexViewModel extends IndexTrackingViewModel {
final log = getLogger('PengembangIndexViewModel');
final _navigationService = locator<NavigationService>();
final _dialogService = locator<DialogService>();
final _mySharedPrefs = locator<MySharedPrefs>();
final _snackbarService = locator<SnackbarService>();
final _bottomNavBarList = [
{'name': 'List', 'icon': Icons.list_alt_rounded, 'header': 'List Pemilik'},
@ -43,4 +47,26 @@ class PengembangIndexViewModel extends IndexTrackingViewModel {
id: 3,
);
}
logout() {
_dialogService
.showConfirmationDialog(
title: 'Logout',
description: 'Apakah Anda yakin ingin logout?',
cancelTitle: 'Batal',
confirmationTitle: 'Logout',
)
.then((value) async {
if (value!.confirmed) {
await _mySharedPrefs.clear();
_navigationService.clearStackAndShow(Routes.loginScreenView);
_snackbarService.showSnackbar(
message: 'Logout berhasil',
duration: const Duration(seconds: 2),
);
}
});
// await _mySharedPrefs.clear();
// _navigationService.clearStackAndShow(Routes.loginScreenView);
}
}

View File

@ -1,6 +1,8 @@
import 'package:flutter/material.dart';
import 'package:stacked/stacked.dart';
import '../../../../app/themes/app_colors.dart';
import '../../../../app/themes/app_text.dart';
import './pengembang_profil_view_model.dart';
class PengembangProfilView extends StatelessWidget {
@ -18,10 +20,126 @@ class PengembangProfilView extends StatelessWidget {
PengembangProfilViewModel model,
Widget? child,
) {
return const Scaffold(
body: Center(
child: Text(
'PengembangProfilView',
return Scaffold(
body: SafeArea(
child: Stack(
children: [
Padding(
padding: const EdgeInsets.all(20),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Center(
child: Stack(
children: [
const CircleAvatar(
radius: 50,
backgroundColor: fontParagraphColor,
// child: model.imageBytes == null
// ? const Icon(
// Icons.person,
// size: 50,
// color: Colors.white,
// )
// : ClipRRect(
// borderRadius: BorderRadius.circular(50),
// child: Image.memory(
// model.imageBytes!,
// width: 100,
// height: 100,
// fit: BoxFit.cover,
// ),
// ),
child: Icon(
Icons.person,
size: 50,
color: Colors.white,
),
),
Positioned(
bottom: 0,
right: 0,
child: CircleAvatar(
radius: 15,
backgroundColor: mainColor,
child: IconButton(
onPressed: () {
// model.addImage();
},
icon: const Icon(
Icons.add,
color: backgroundColor,
size: 15,
)),
),
),
],
),
),
if (model.level == 'Mandor' &&
model.mandorModel != null &&
!model.isBusy)
Column(
children: [
const SizedBox(height: 20),
_FirstDetail(
text: model.mandorModel!.nama!,
icon: Icons.person,
),
const SizedBox(height: 20),
_FirstDetail(
text: model.mandorModel!.noTelpon!,
icon: Icons.phone,
),
],
),
if (model.level != null && model.level == 'Admin')
const Column(
children: [
SizedBox(height: 20),
_FirstDetail(
text: 'Admin',
icon: Icons.person,
),
SizedBox(height: 20),
_FirstDetail(
text:
'Perumahan Mutiara Alga, Kecamatan Suppa, Kabupaten Pinrang, Sulawesi Selatan, 91131',
icon: Icons.phone,
),
],
),
if (model.isBusy)
const Column(
children: [
SizedBox(height: 20),
Center(child: CircularProgressIndicator()),
],
),
],
),
),
// create rounded edit button at top right
Positioned(
top: 20,
right: 20,
child: CircleAvatar(
radius: 20,
backgroundColor: mainColor,
child: IconButton(
onPressed: () {},
icon: const Icon(
Icons.edit,
color: backgroundColor,
size: 15,
),
),
),
),
],
),
),
);
@ -29,3 +147,56 @@ class PengembangProfilView extends StatelessWidget {
);
}
}
class _FirstDetail extends StatelessWidget {
const _FirstDetail({
Key? key,
required this.text,
required this.icon,
}) : super(key: key);
final String text;
final IconData icon;
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.symmetric(horizontal: 15),
child: Row(
mainAxisAlignment: MainAxisAlignment.start,
children: [
Icon(
icon,
color: mainColor,
size: 40,
),
const SizedBox(
width: 20,
),
Expanded(
child: Text(
text,
style: regularTextStyle.copyWith(
fontSize: 15,
color: mainGrey,
),
),
),
// created edit button
// Expanded(
// child: Align(
// alignment: Alignment.centerRight,
// child: IconButton(
// onPressed: () {},
// icon: const Icon(
// Icons.edit,
// color: mainColor,
// ),
// ),
// ),
// ),
],
),
);
}
}

View File

@ -1,5 +1,37 @@
import 'package:perumahan_bew/app/core/custom_base_view_model.dart';
import 'package:perumahan_bew/model/my_response_model.dart';
import 'package:perumahan_bew/model/rumah_model.dart';
import '../../../../app/app.logger.dart';
import '../../../../app/core/custom_base_view_model.dart';
class PengembangProfilViewModel extends CustomBaseViewModel {
Future<void> init() async {}
final log = getLogger('PengembangProfilViewModel');
String? level;
String? id;
MandorModel? mandorModel;
Future<void> init() async {
level = await mySharedPrefs.getString('level');
id = await mySharedPrefs.getString('id');
log.i('level: $level');
if (level == 'Mandor') {
await getData();
}
notifyListeners();
}
getData() async {
setBusy(true);
try {
var response = await httpService.get('mandor?id=$id');
MyResponseModel myResponseModel = MyResponseModel.fromJson(response.data);
mandorModel = MandorModel.fromJson(myResponseModel.data);
log.i('mandorModel: ${mandorModel!.nama}');
} catch (e) {
log.e('Error: $e');
} finally {
setBusy(false);
}
}
}

View File

@ -24,6 +24,9 @@ class PerumahanDetailView extends StatelessWidget {
) {
return Scaffold(
appBar: AppBar(
iconTheme: const IconThemeData(
color: backgroundColor,
),
title: Text(
'Perumahan Blok ${model.blok} , No. ${model.idRumah}',
style: const TextStyle(
@ -34,15 +37,7 @@ class PerumahanDetailView extends StatelessWidget {
backgroundColor: mainColor,
elevation: 0,
),
body: WillPopScope(
onWillPop: () async {
if (model.globalVar.backPressed == 'exitApp') {
// model.back();
return true;
// model.quitApp(context);
}
return false;
},
body: SafeArea(
child: Stack(
children: [
Padding(
@ -190,7 +185,8 @@ class PerumahanDetailView extends StatelessWidget {
return Card(
child: GestureDetector(
onTap: () {
model.log.i('Card $index tapped');
model.checkProgress(
model.progressModel![index]);
},
child: ListTile(
title: Text(
@ -245,6 +241,70 @@ class PerumahanDetailView extends StatelessWidget {
),
),
),
// create whatsapp button
Positioned(
top: model.level == 'Mandor' ? 80 : 15,
right: 15,
child: Container(
alignment: Alignment.center,
width: 50,
height: 50,
decoration: BoxDecoration(
shape: BoxShape.circle,
color: greenColor,
boxShadow: [
BoxShadow(
color: Colors.black.withOpacity(0.5),
spreadRadius: 2,
blurRadius: 7,
offset: const Offset(0, 3),
),
],
),
child: IconButton(
onPressed: () {
model.openWhatsapp();
},
icon: const Icon(
Icons.chat_outlined,
color: Colors.white,
size: 30,
),
),
),
),
// create call button
Positioned(
top: model.level == 'Mandor' ? 145 : 80,
right: 15,
child: Container(
alignment: Alignment.center,
width: 50,
height: 50,
decoration: BoxDecoration(
shape: BoxShape.circle,
color: mainColor,
boxShadow: [
BoxShadow(
color: Colors.black.withOpacity(0.5),
spreadRadius: 2,
blurRadius: 7,
offset: const Offset(0, 3),
),
],
),
child: IconButton(
onPressed: () {
model.call();
},
icon: const Icon(
Icons.call_outlined,
color: Colors.white,
size: 30,
),
),
),
),
],
),
),

View File

@ -1,3 +1,5 @@
import 'package:url_launcher/url_launcher.dart';
import '../../../../app/app.bottomsheets.dart';
import '../../../../app/app.logger.dart';
import '../../../../app/app.router.dart';
@ -60,7 +62,9 @@ class PerumahanDetailViewModel extends CustomBaseViewModel {
var res = await bottomSheetService.showCustomSheet(
variant: BottomSheetType.tambahLihatProgressBottomSheetView,
title: 'Form Tambah Progress',
data: idPerumahan,
data: {
'idPerumahan': idPerumahan,
},
);
if (res!.confirmed) {
@ -72,4 +76,37 @@ class PerumahanDetailViewModel extends CustomBaseViewModel {
await getData();
}
}
checkProgress(ProgressModel progressModel) async {
await bottomSheetService.showCustomSheet(
variant: BottomSheetType.tambahLihatProgressBottomSheetView,
title: 'Lihat Progress',
data: {
'idPerumahan': idPerumahan,
'progressModel': progressModel,
},
);
}
openWhatsapp() async {
// open whatsapp using url
String noTelpon = rumahModel!.noTelpon!;
// convert the number to international format
noTelpon = noTelpon.replaceAll(RegExp(r'[^0-9]'), '');
noTelpon = '62${noTelpon.substring(1)}';
log.i('no_telpon: $noTelpon');
final url = Uri.parse('https://wa.me/$noTelpon');
if (!await launchUrl(url)) {
throw Exception('Could not launch $url');
}
}
call() async {
final Uri callUri = Uri(scheme: 'tel', path: rumahModel!.noTelpon!);
if (!await launchUrl(callUri)) {
throw 'Could not launch ${callUri.toString()}';
}
}
}

View File

@ -21,7 +21,7 @@ class PlayVideoDialogView extends StatelessWidget {
return ViewModelBuilder<PlayVideoDialogViewModel>.reactive(
viewModelBuilder: () => PlayVideoDialogViewModel(),
onViewModelReady: (PlayVideoDialogViewModel model) async {
await model.init();
await model.init(request!.data);
},
builder: (
BuildContext context,
@ -34,50 +34,58 @@ class PlayVideoDialogView extends StatelessWidget {
// height: 450,
padding: const EdgeInsets.all(15),
child: SingleChildScrollView(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
AspectRatio(
aspectRatio: 16 / 11,
child: NativeVideoPlayerView(
onViewReady: (controller) async {
final videoSource = await VideoSource.init(
path: request!.data.toString(),
type: VideoSourceType.file,
);
await controller.loadVideoSource(videoSource);
model.nativeVideoPlayerController = controller;
model.notifyListeners();
model.nativeVideoPlayerController!.play();
// loop video
model.nativeVideoPlayerController!.onPlaybackEnded
.addListener(() {
model.nativeVideoPlayerController!.seekTo(0);
model.nativeVideoPlayerController!.play();
});
},
),
),
const SizedBox(height: 20),
// create button to play video
SizedBox(
width: 150,
child: MyButton(
onPressed: () {
model.playVideo = !model.playVideo;
if (model.playVideo) {
model.nativeVideoPlayerController!.play();
} else {
model.nativeVideoPlayerController!.pause();
}
model.notifyListeners();
},
text: model.playVideo ? 'Pause' : 'Play',
),
),
],
),
),
child: model.status != null
? Column(
mainAxisSize: MainAxisSize.min,
children: [
AspectRatio(
aspectRatio: 16 / 11,
child: NativeVideoPlayerView(
onViewReady: (controller) async {
final videoSource = await VideoSource.init(
path: model.status == 'file'
? model.path!
: model.url!,
type: model.status == 'file'
? VideoSourceType.file
: VideoSourceType.network,
);
await controller.loadVideoSource(videoSource);
model.nativeVideoPlayerController = controller;
model.notifyListeners();
model.nativeVideoPlayerController!.play();
// loop video
model.nativeVideoPlayerController!
.onPlaybackEnded
.addListener(() {
model.nativeVideoPlayerController!.seekTo(0);
model.nativeVideoPlayerController!.play();
});
},
),
),
const SizedBox(height: 20),
// create button to play video
SizedBox(
width: 150,
child: MyButton(
onPressed: () {
model.playVideo = !model.playVideo;
if (model.playVideo) {
model.nativeVideoPlayerController!.play();
} else {
model.nativeVideoPlayerController!.pause();
}
model.notifyListeners();
},
text: model.playVideo ? 'Pause' : 'Play',
),
),
],
)
: const Center(
child: CircularProgressIndicator(),
)),
),
);
},

View File

@ -4,5 +4,14 @@ import 'package:perumahan_bew/app/core/custom_base_view_model.dart';
class PlayVideoDialogViewModel extends CustomBaseViewModel {
NativeVideoPlayerController? nativeVideoPlayerController;
bool playVideo = true;
Future<void> init() async {}
String? status;
String? url;
String? path;
Future<void> init(data) async {
status = data['status'];
url = data['url'];
path = data['path'];
}
}

View File

@ -47,7 +47,7 @@ class SplashScreenView extends StatelessWidget {
),
const Expanded(child: SizedBox()),
Text(
'Jl. Raya Mutiara Alga No. 1, \nKec. Ciputat, Kota Tangerang Selatan, \nBanten 15412',
'Kecamatan Suppa, \nKabupaten Pinrang,\nSulawesi Selatan,91131',
style: regularTextStyle.copyWith(
color: backgroundColor,
fontSize: 12,

View File

@ -1,10 +1,12 @@
import 'package:flutter/material.dart';
import 'package:flutter_dotenv/flutter_dotenv.dart';
import 'package:native_video_player/native_video_player.dart';
import 'package:perumahan_bew/app/themes/app_text.dart';
import 'package:perumahan_bew/ui/widgets/my_button.dart';
import 'package:perumahan_bew/ui/widgets/my_textformfield.dart';
import 'package:stacked/stacked.dart';
import 'package:stacked_services/stacked_services.dart';
import 'package:url_launcher/url_launcher.dart';
import 'package:validatorless/validatorless.dart';
import '../../../app/themes/app_colors.dart';
@ -70,7 +72,7 @@ class TambahLihatProgressBottomSheetView extends StatelessWidget {
children: [
Center(
child: Text(
'${request!.title!} ${request!.data.toString().toUpperCase()}',
'${request!.title!} ${request!.data['idPerumahan'].toString().toUpperCase()}',
style: boldTextStyle,
),
),
@ -94,8 +96,8 @@ class TambahLihatProgressBottomSheetView extends StatelessWidget {
borderRadius:
BorderRadius.circular(10),
child: GestureDetector(
onTap: () =>
model.showImage(context),
onTap: () => model.showImage(
context, 'file', null),
child: Image.memory(
model.imageVideoBytes!,
fit: BoxFit.fill,
@ -139,30 +141,123 @@ class TambahLihatProgressBottomSheetView extends StatelessWidget {
),
),
))
: const Icon(
Icons.credit_card_rounded,
color: Colors.white,
size: 50,
),
: (model.progressModel != null
? (model.imageVideoType == 'image'
? ClipRRect(
borderRadius:
BorderRadius.circular(10),
child: GestureDetector(
onTap: () => model.showImage(
context,
'network',
dotenv.env['url']! +
model.progressModel!
.img!),
child: Image.network(
dotenv.env['url']! +
model.progressModel!
.img!,
fit: BoxFit.fill,
)),
)
: ClipRRect(
borderRadius:
BorderRadius.circular(10),
child: AspectRatio(
aspectRatio: 16 / 11,
child: NativeVideoPlayerView(
onViewReady:
(controller) async {
final videoSource =
await VideoSource.init(
path: dotenv.env['url']! +
model.progressModel!
.img!,
type: VideoSourceType
.network,
);
await controller
.loadVideoSource(
videoSource);
model.nativeVideoPlayerController =
controller;
model.notifyListeners();
model
.nativeVideoPlayerController!
.play();
// loop video
model
.nativeVideoPlayerController!
.onPlaybackEnded
.addListener(() {
model
.nativeVideoPlayerController!
.seekTo(0);
model
.nativeVideoPlayerController!
.play();
});
},
),
),
))
: const Icon(
Icons.credit_card_rounded,
color: Colors.white,
size: 50,
)),
),
Positioned(
bottom: 0,
right: 0,
child: CircleAvatar(
radius: 15,
backgroundColor: sixthGrey,
child: IconButton(
onPressed: () {
model.pilihImageVideo();
},
icon: const Icon(
Icons.add,
color: backgroundColor3,
size: 15,
if (model.progressModel == null)
Positioned(
bottom: 0,
right: 0,
child: CircleAvatar(
radius: 15,
backgroundColor: sixthGrey,
child: IconButton(
onPressed: () {
model.pilihImageVideo();
},
icon: const Icon(
Icons.add,
color: backgroundColor3,
size: 15,
),
),
),
),
if (model.imageVideoType == 'video')
Positioned(
bottom: 0,
left: 0,
top: 0,
right: 0,
child: Container(
alignment: Alignment.center,
child: CircleAvatar(
radius: 15,
backgroundColor: sixthGrey,
child: IconButton(
onPressed: () {
if (model.progressModel != null) {
model.playVideo(
'network',
dotenv.env['url']! +
model.progressModel!.img!);
} else {
model.playVideo(
'file', model.imageVideoPath);
}
},
icon: const Icon(
Icons.play_arrow,
color: backgroundColor3,
size: 15,
),
),
),
),
),
),
],
),
),
@ -174,54 +269,140 @@ class TambahLihatProgressBottomSheetView extends StatelessWidget {
controller: model.ketController,
validator:
Validatorless.required('Keterangan harus diisi'),
readOnly: model.progressModel != null,
),
const SizedBox(height: 20),
Center(
child: SizedBox(
width: 250,
child: MyButton(
text: 'Tambah Progress',
onPressed: () {
if (model.imageVideoBytes == null) {
model.snackbarService.showSnackbar(
message: 'Gambar/video harus diisi',
);
model.pilihImageVideo();
return;
}
if (model.progressModel != null)
MyTextFormField(
labelText: 'Waktu',
controller: model.waktuController,
readOnly: true,
),
if (model.progressModel == null)
Center(
child: SizedBox(
width: 250,
child: MyButton(
text: 'Tambah Progress',
onPressed: () {
if (model.imageVideoBytes == null) {
model.snackbarService.showSnackbar(
message: 'Gambar/video harus diisi',
);
model.pilihImageVideo();
return;
}
if (model.globalKey.currentState!.validate()) {
model.dialogService
.showDialog(
title: 'Tambah Progress',
description: 'Apakah anda yakin?',
buttonTitle: 'Ya',
cancelTitle: 'Tidak',
)
.then((value) async {
if (value!.confirmed) {
// stop playing video
model.nativeVideoPlayerController?.pause();
model.nativeVideoPlayerController
?.removeListener(() {
// model.nativeVideoPlayerController?.dispose();
if (model.globalKey.currentState!.validate()) {
model.dialogService
.showDialog(
title: 'Tambah Progress',
description: 'Apakah anda yakin?',
buttonTitle: 'Ya',
cancelTitle: 'Tidak',
)
.then((value) async {
if (value!.confirmed) {
// stop playing video
model.nativeVideoPlayerController
?.pause();
model.nativeVideoPlayerController
?.removeListener(() {
// model.nativeVideoPlayerController?.dispose();
model.nativeVideoPlayerController =
null;
});
model.nativeVideoPlayerController = null;
});
model.nativeVideoPlayerController = null;
// add progress
bool res = await model.tambahProgress();
model.log.i('res: $res');
completer!(SheetResponse(
confirmed: true,
));
}
});
}
},
// add progress
bool res = await model.tambahProgress();
model.log.i('res: $res');
completer!(SheetResponse(
confirmed: true,
));
}
});
}
},
),
),
),
),
if (model.level == 'Pemilik Rumah' &&
model.mandorModel != null)
Column(
mainAxisSize: MainAxisSize.min,
children: [
const SizedBox(height: 20),
MyTextFormField(
labelText: 'Mandor',
controller: model.mandorController,
readOnly: true,
),
const SizedBox(height: 20),
MyTextFormField(
labelText: 'No. Telp Mandor',
controller: model.noHpController,
readOnly: true,
),
const SizedBox(height: 20),
// create row with 2 rounded icon , one is chat whatsapp , one is call
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
CircleAvatar(
radius: 15,
backgroundColor: greenColor,
child: IconButton(
onPressed: () async {
// model.openWhatsapp();
String noTelpon =
model.noHpController!.text;
// convert the number to international format
noTelpon = noTelpon.replaceAll(
RegExp(r'[^0-9]'), '');
noTelpon = '62${noTelpon.substring(1)}';
// log.i('no_telpon: $noTelpon');
final url =
Uri.parse('https://wa.me/$noTelpon');
if (!await launchUrl(url)) {
throw Exception(
'Could not launch $url');
}
},
icon: const Icon(
Icons.chat,
color: backgroundColor3,
size: 15,
),
),
),
const SizedBox(width: 20),
CircleAvatar(
radius: 15,
backgroundColor: mainColor,
child: IconButton(
onPressed: () async {
// model.callPhone();
final Uri callUri = Uri(
scheme: 'tel',
path: model.noHpController!.text);
if (!await launchUrl(callUri)) {
throw 'Could not launch ${callUri.toString()}';
}
},
icon: const Icon(
Icons.call,
color: backgroundColor3,
size: 15,
),
),
),
],
),
],
),
],
),
),

View File

@ -5,22 +5,31 @@ import 'package:easy_image_viewer/easy_image_viewer.dart';
import 'package:flutter/material.dart';
import 'package:image_picker/image_picker.dart';
import 'package:native_video_player/native_video_player.dart';
import 'package:perumahan_bew/model/rumah_model.dart';
import '../../../app/app.dialogs.dart';
import '../../../app/app.logger.dart';
import '../../../app/core/custom_base_view_model.dart';
import '../../../app/themes/app_colors.dart';
import '../../../model/my_response_model.dart';
class TambahLihatProgressBottomSheetViewModel extends CustomBaseViewModel {
final log = getLogger('TambahLihatProgressBottomSheetViewModel');
NativeVideoPlayerController? nativeVideoPlayerController;
String? level;
MandorModel? mandorModel;
TextEditingController? mandorController = TextEditingController();
TextEditingController? noHpController = TextEditingController();
String? idPerumahan;
ProgressModel? progressModel;
// form variable
final globalKey = GlobalKey<FormState>();
TextEditingController? ketController = TextEditingController();
TextEditingController? waktuController = TextEditingController();
// image video variable
// image picker
@ -29,9 +38,40 @@ class TambahLihatProgressBottomSheetViewModel extends CustomBaseViewModel {
XFile? imageVideoFile;
Uint8List? imageVideoBytes;
String? imageVideoType;
Future<void> init(String data) async {
Future<void> init(data) async {
globalVar.backPressed = "exitApp";
idPerumahan = data;
idPerumahan = data['idPerumahan'];
// log.i(data['progressModel']);
if (data['progressModel'] != null) {
progressModel = data['progressModel'];
ketController!.text = progressModel!.ket!;
waktuController!.text = progressModel!.createdAt!;
log.i('type: ${progressModel!.type}');
imageVideoType = progressModel!.type;
}
level = await mySharedPrefs.getString('level');
if (level == 'Pemilik Rumah') {
await getData();
}
}
getData() async {
setBusy(true);
try {
var response =
await httpService.get('mandor?id=${progressModel!.idMandor}');
MyResponseModel myResponseModel = MyResponseModel.fromJson(response.data);
mandorModel = MandorModel.fromJson(myResponseModel.data);
log.i('mandorModel: ${mandorModel!.nama}');
mandorController!.text = mandorModel!.nama!;
noHpController!.text = mandorModel!.noTelpon!;
} catch (e) {
log.e('Error: $e');
} finally {
setBusy(false);
}
}
addImage(String type) async {
@ -79,13 +119,20 @@ class TambahLihatProgressBottomSheetViewModel extends CustomBaseViewModel {
});
}
playVideo() async {
playVideo(String status, String? url) async {
// play video by imageVideoPath
log.i('play video');
log.i(status);
log.i(url);
await dialogService.showCustomDialog(
variant: DialogType.playVideoDialogView,
title: 'Video',
data: imageVideoPath,
data: {
'status': status,
'url': url,
'path': imageVideoPath,
},
);
}
@ -117,13 +164,20 @@ class TambahLihatProgressBottomSheetViewModel extends CustomBaseViewModel {
}
}
showImage(BuildContext context) async {
showImage(BuildContext context, String status, String? url) async {
log.i(status);
log.i(url);
showImageViewer(
context,
Image.memory(
imageVideoBytes!,
fit: BoxFit.fill,
).image,
status == 'file'
? Image.memory(
imageVideoBytes!,
fit: BoxFit.fill,
).image
: Image.network(
url!,
fit: BoxFit.fill,
).image,
swipeDismissible: true,
doubleTapZoomable: true,
);

View File

@ -1,69 +0,0 @@
import 'package:flutter/material.dart';
import 'package:stacked/stacked.dart';
import 'package:webview_flutter/webview_flutter.dart';
import './user_home_view_model.dart';
class UserHomeView extends StatelessWidget {
const UserHomeView({super.key});
@override
Widget build(BuildContext context) {
return ViewModelBuilder<UserHomeViewModel>.nonReactive(
viewModelBuilder: () => UserHomeViewModel(),
onViewModelReady: (UserHomeViewModel model) async {
await model.init();
},
disposeViewModel: false,
fireOnViewModelReadyOnce: true,
builder: (
BuildContext context,
UserHomeViewModel model,
Widget? child,
) {
return Scaffold(
body: WebView(
// initialUrl: 'http://192.168.43.125/rekam-medis',
initialUrl: 'http://20.20.20.25/perumahan',
javascriptMode: JavascriptMode.unrestricted,
onWebViewCreated: (WebViewController webViewController) {
// _controller.complete(webViewController);
model.webViewControllerCompleter.future
.then((value) => model.webVIewcontroller = value);
model.webViewControllerCompleter.complete(webViewController);
},
onProgress: (int progress) {
double progressDouble = progress / 100;
model.myEasyLoading.showProgress(progressDouble, "Loading Denah");
},
// javascriptChannels: <JavascriptChannel>{
// _toasterJavascriptChannel(context),
// },
javascriptChannels: <JavascriptChannel>{
JavascriptChannel(
name: 'messageHandler',
onMessageReceived: (JavascriptMessage message) {
model.log.d(message.message);
// dev.i("message from the web view=\"${message.message}\"");
// if (message.message == "coba") {
// dev.i("sini untuk coba");
// controller.runJavascript("coba22('heheheh')");
// }
},
),
},
// navigationDelegate: (NavigationRequest request) async {},
onPageStarted: (String url) {},
onPageFinished: (String url) {
// dev.i('Page finished loading: $url');
model.myEasyLoading.dismissLoading();
},
gestureNavigationEnabled: true,
backgroundColor: const Color(0x00000000),
),
);
},
);
}
}

View File

@ -1,25 +0,0 @@
import 'dart:async';
import 'dart:io';
import 'package:webview_flutter/webview_flutter.dart';
import '../../../../app/app.locator.dart';
import '../../../../app/app.logger.dart';
import '../../../../app/core/custom_base_view_model.dart';
import '../../../../services/my_easyloading.dart';
class UserHomeViewModel extends CustomBaseViewModel {
final log = getLogger('UserHomeViewModel');
final _myEasyLoading = locator<MyEasyLoading>();
get myEasyLoading => _myEasyLoading;
late WebViewController webVIewcontroller;
final Completer<WebViewController> webViewControllerCompleter =
Completer<WebViewController>();
Future<void> init() async {
if (Platform.isAndroid) {
WebView.platform = SurfaceAndroidWebView();
}
}
}

View File

@ -38,10 +38,22 @@ class UserIndexView extends StatelessWidget {
backgroundColor: mainColor,
elevation: 0,
automaticallyImplyLeading: false,
actions: [
// create logout button
IconButton(
onPressed: () {
model.logout();
},
icon: const Icon(
Icons.logout,
color: Colors.white,
),
),
],
),
// extendBody: true,
body: ExtendedNavigator(
navigatorKey: StackedService.nestedNavigationKey(2),
navigatorKey: StackedService.nestedNavigationKey(7),
router: UserIndexViewRouter(),
),
bottomNavigationBar: StylishBottomBar(

View File

@ -5,10 +5,14 @@ import 'package:stacked_services/stacked_services.dart';
import '../../../app/app.locator.dart';
import '../../../app/app.logger.dart';
import '../../../app/app.router.dart';
import '../../../services/shared_prefs.dart';
class UserIndexViewModel extends IndexTrackingViewModel {
final log = getLogger('UserIndexViewModel');
final _navigationService = locator<NavigationService>();
final _dialogService = locator<DialogService>();
final _mySharedPrefs = locator<MySharedPrefs>();
final _snackbarService = locator<SnackbarService>();
final _bottomNavBarList = [
{
@ -16,22 +20,18 @@ class UserIndexViewModel extends IndexTrackingViewModel {
'icon': Icons.list_alt_rounded,
'header': 'List Perumahan'
},
{'name': 'Denah', 'icon': Icons.home_outlined, 'header': 'Denah Perumahan'},
{'name': 'Profil', 'icon': Icons.person_outline, 'header': 'Profil'},
];
List<Map<String, dynamic>> get bottomNavBarList => _bottomNavBarList;
final List<String> _views = [
UserIndexViewRoutes.userListPembangunanView,
UserIndexViewRoutes.userHomeView,
UserIndexViewRoutes.userListPembangunanPageView,
UserIndexViewRoutes.userProfileView,
];
String header = 'Denah Perumahan';
Future<void> init() async {
setIndex(1);
}
Future<void> init() async {}
void handleNavigation(int index) {
log.d("handleNavigation: $index");
@ -43,7 +43,29 @@ class UserIndexViewModel extends IndexTrackingViewModel {
header = _bottomNavBarList[index]['header'] as String;
_navigationService.navigateTo(
_views[index],
id: 2,
id: 7,
);
}
logout() {
_dialogService
.showConfirmationDialog(
title: 'Logout',
description: 'Apakah Anda yakin ingin logout?',
cancelTitle: 'Batal',
confirmationTitle: 'Logout',
)
.then((value) async {
if (value!.confirmed) {
await _mySharedPrefs.clear();
_navigationService.clearStackAndShow(Routes.loginScreenView);
_snackbarService.showSnackbar(
message: 'Logout berhasil',
duration: const Duration(seconds: 2),
);
}
});
// await _mySharedPrefs.clear();
// _navigationService.clearStackAndShow(Routes.loginScreenView);
}
}

View File

@ -0,0 +1,26 @@
import 'package:flutter/material.dart';
import 'package:perumahan_bew/ui/views/user_index/user_list_pembangunan/user_list_pembangunan_view.dart';
import 'package:stacked/stacked.dart';
import './user_list_pembangunan_page_view_model.dart';
class UserListPembangunanPageView extends StatelessWidget {
const UserListPembangunanPageView({super.key});
@override
Widget build(BuildContext context) {
return ViewModelBuilder<UserListPembangunanPageViewModel>.nonReactive(
viewModelBuilder: () => UserListPembangunanPageViewModel(),
onViewModelReady: (UserListPembangunanPageViewModel model) async {
await model.init();
},
builder: (
BuildContext context,
UserListPembangunanPageViewModel model,
Widget? child,
) {
return const UserListPembangunanView();
},
);
}
}

View File

@ -0,0 +1,5 @@
import 'package:perumahan_bew/app/core/custom_base_view_model.dart';
class UserListPembangunanPageViewModel extends CustomBaseViewModel {
Future<void> init() async {}
}

View File

@ -25,24 +25,14 @@ class UserListPembangunanView extends StatelessWidget {
body: Column(
children: [
const SizedBox(height: 20),
const Padding(
padding: EdgeInsets.symmetric(horizontal: 20),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
MyTopWidget(
icon: Icons.list_alt_outlined,
title: 'Pembangunan',
subtitle: '15 kali',
// lastUpdate: '31/02/15 - 10.00 am',
),
MyTopWidget(
icon: Icons.home,
title: 'Progress',
subtitle: '76 %',
// lastUpdate: '31/02/15 - 10.00 am',
),
],
Padding(
padding: const EdgeInsets.symmetric(horizontal: 20),
child: MyTopWidget(
icon: Icons.list_alt_outlined,
title: 'Pembangunan',
subtitle:
'${model.listProgress != null ? model.listProgress!.length : 0} Progress',
// lastUpdate: '31/02/15 - 10.00 am',
),
),
const SizedBox(height: 25),
@ -63,27 +53,47 @@ class UserListPembangunanView extends StatelessWidget {
],
),
// create a listview with 20 dummy data on card and scrollable
child: ListView.builder(
padding: const EdgeInsets.symmetric(
horizontal: 10, vertical: 10),
itemCount: 20,
itemBuilder: (context, index) {
return Card(
child: GestureDetector(
onTap: () {
model.log.i('Card $index tapped');
},
child: ListTile(
title: Text('1/02/15 - 10.00 am',
style: boldTextStyle.copyWith(
fontSize: 13, color: mainColor)),
subtitle: Text('Progress $index'),
trailing: Text('Pembangunan $index'),
),
),
);
},
)),
child: model.isBusy
? const Center(child: CircularProgressIndicator())
: model.status == false
? const Center(child: Text('Error Loading Data'))
: model.listProgress!.isEmpty
? const Center(child: Text('Data Kosong'))
: ListView.builder(
padding: const EdgeInsets.symmetric(
horizontal: 10, vertical: 10),
itemCount: model.listProgress!.length,
itemBuilder: (context, index) {
return Card(
child: ListTile(
title: Text(
model.listProgress![index]
.createdAt!,
style: boldTextStyle.copyWith(
fontSize: 13,
color: mainColor,
),
),
subtitle: Text(model
.listProgress![index].ket!),
// create icon show
trailing: CircleAvatar(
backgroundColor: mainColor,
child: IconButton(
icon: const Icon(
Icons.list_alt_outlined,
color: backgroundColor,
),
onPressed: () {
model.checkProgress(model
.listProgress![index]);
},
),
),
),
);
},
)),
),
),
const SizedBox(height: 20),

View File

@ -1,8 +1,52 @@
import 'package:perumahan_bew/app/core/custom_base_view_model.dart';
import 'package:perumahan_bew/model/rumah_model.dart';
import '../../../../app/app.bottomsheets.dart';
import '../../../../app/app.logger.dart';
import '../../../../app/core/custom_base_view_model.dart';
import '../../../../model/my_response_model.dart';
class UserListPembangunanViewModel extends CustomBaseViewModel {
final log = getLogger('UserListPembangunanViewModel');
Future<void> init() async {}
bool status = false;
RumahDetailModel? rumahDetailModel;
RumahModel? rumahModel;
List<ProgressModel>? listProgress;
Future<void> init() async {
String idRumah = await mySharedPrefs.getString('id') ?? '';
if (idRumah.isNotEmpty) {
await getData(idRumah);
}
}
getData(String idRumah) async {
setBusy(true);
try {
var response = await httpService.get('rumah?id=$idRumah');
MyResponseModel myResponse = MyResponseModel.fromJson(response.data);
// log.i(myResponse.toJson());
RumahDetailModel rumahDetailModel =
RumahDetailModel.fromJson(myResponse.data);
listProgress = rumahDetailModel.progressModel;
status = true;
} catch (e) {
status = false;
log.e(e);
} finally {
setBusy(false);
}
}
checkProgress(ProgressModel progressModel) async {
await bottomSheetService.showCustomSheet(
variant: BottomSheetType.tambahLihatProgressBottomSheetView,
title: 'Lihat Progress',
data: {
'idPerumahan': progressModel.idRumah,
'progressModel': progressModel,
},
);
}
}

View File

@ -21,99 +21,118 @@ class UserProfileView extends StatelessWidget {
Widget? child,
) {
return Scaffold(
body: Stack(
children: [
Column(
body: SafeArea(
child: Padding(
padding: const EdgeInsets.all(20),
child: Stack(
children: [
const SizedBox(
height: 25,
),
// create a rounded container
Center(
child: Container(
width: 150,
height: 150,
decoration: BoxDecoration(
shape: BoxShape.circle,
image: DecorationImage(
image: const NetworkImage(
'http://kicap-karan.com/assets/img/me.jpg',
),
fit: BoxFit.cover,
onError: (exception, stackTrace) {
model.log.e('Error: $exception');
},
),
boxShadow: [
BoxShadow(
color: Colors.black.withOpacity(0.5),
spreadRadius: 2,
blurRadius: 7,
offset: const Offset(0, 3),
),
],
),
),
),
const SizedBox(
height: 15,
),
Center(
child: Text(
'Kicap Karan',
style: boldTextStyle.copyWith(
fontSize: 18,
),
),
),
Expanded(
child: Padding(
padding: const EdgeInsets.symmetric(
horizontal: 30, vertical: 10),
child: SingleChildScrollView(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
Column(
children: [
// create a rounded container
Center(
child: Stack(
children: [
for (var i = 0; i < 10; i++) const _DetailChild(),
const CircleAvatar(
radius: 50,
backgroundColor: fontParagraphColor,
// child: model.imageBytes == null
// ? const Icon(
// Icons.person,
// size: 50,
// color: Colors.white,
// )
// : ClipRRect(
// borderRadius: BorderRadius.circular(50),
// child: Image.memory(
// model.imageBytes!,
// width: 100,
// height: 100,
// fit: BoxFit.cover,
// ),
// ),
child: Icon(
Icons.person,
size: 50,
color: Colors.white,
),
),
Positioned(
bottom: 0,
right: 0,
child: CircleAvatar(
radius: 15,
backgroundColor: mainColor,
child: IconButton(
onPressed: () {
// model.addImage();
},
icon: const Icon(
Icons.add,
color: fontColor,
size: 15,
)),
),
),
],
),
),
),
if (!model.isBusy &&
model.status == true &&
model.rumahModel != null)
Expanded(
child: Column(
children: [
const SizedBox(
height: 15,
),
_DetailChild(
text: model.rumahModel!.pemilik!,
icon: Icons.person,
),
_DetailChild(
text: model.rumahModel!.tanggalPembelian!,
icon: Icons.calendar_today_outlined,
),
_DetailChild(
text: "Rp. ${model.rumahModel!.harga!}",
icon: Icons.attach_money_outlined,
),
_DetailChild(
text: 'Rp. ${model.rumahModel!.cicilan!}',
icon: Icons.money_outlined,
),
],
),
),
if (model.isBusy)
const Expanded(
child: Center(
child: CircularProgressIndicator(),
),
),
],
),
const SizedBox(
height: 15,
// create rounded button with edit on top right
Positioned(
top: 0,
right: 0,
child: CircleAvatar(
radius: 15,
backgroundColor: mainColor,
child: IconButton(
onPressed: () {
// model.addImage();
},
icon: const Icon(
Icons.edit,
color: fontColor,
size: 15,
)),
),
),
],
),
Positioned(
top: 15,
right: 65,
child: IconButton(
onPressed: () {
model.log.i('Edit Profile');
},
icon: const Icon(
Icons.edit,
color: mainColor,
size: 30,
),
),
),
Positioned(
top: 15,
right: 15,
child: IconButton(
onPressed: () {
model.log.i('Logout');
model.logout();
},
icon: const Icon(
Icons.logout,
color: mainColor,
size: 30,
),
)),
],
),
),
);
},
@ -124,8 +143,13 @@ class UserProfileView extends StatelessWidget {
class _DetailChild extends StatelessWidget {
const _DetailChild({
Key? key,
required this.text,
required this.icon,
}) : super(key: key);
final String text;
final IconData icon;
@override
Widget build(BuildContext context) {
return Padding(
@ -133,8 +157,8 @@ class _DetailChild extends StatelessWidget {
child: Row(
mainAxisAlignment: MainAxisAlignment.start,
children: [
const Icon(
Icons.maps_home_work_outlined,
Icon(
icon,
color: mainColor,
size: 40,
),
@ -142,7 +166,7 @@ class _DetailChild extends StatelessWidget {
width: 20,
),
Text(
'Jln 2, Blok C, No 2',
text,
style: regularTextStyle.copyWith(
fontSize: 15,
color: mainGrey,

View File

@ -1,11 +1,43 @@
import 'package:perumahan_bew/app/core/custom_base_view_model.dart';
import '../../../../app/app.logger.dart';
import '../../../../model/my_response_model.dart';
import '../../../../model/rumah_model.dart';
class UserProfileViewModel extends CustomBaseViewModel {
final log = getLogger('UserProfileViewModel');
RumahDetailModel? rumahDetailModel;
RumahModel? rumahModel;
bool status = false;
String? idRumah;
Future<void> init() async {}
Future<void> init() async {
idRumah = await mySharedPrefs.getString('id') ?? '';
if (idRumah != '') {
await getData();
}
// await getData();
}
getData() async {
setBusy(true);
try {
var response = await httpService.get('rumah?id=$idRumah');
MyResponseModel myResponseModel = MyResponseModel.fromJson(response.data);
// log.i('myResponseModel: ${myResponseModel.data}');
rumahDetailModel = RumahDetailModel.fromJson(myResponseModel.data);
rumahModel = rumahDetailModel!.rumahModel;
// rumahModel = RumahModel.fromJson(myResponseModel.data);
log.i('rumahModel: ${rumahModel!.toJson()}');
status = true;
} catch (e) {
log.e('Error: $e');
status = false;
} finally {
setBusy(false);
}
}
logout() {
log.i('logout');