added pengiriman_detail page in kurir user
This commit is contained in:
30
lib/pages/after_login/kurir/progressPenghantaranPage.dart
Normal file
30
lib/pages/after_login/kurir/progressPenghantaranPage.dart
Normal file
@ -0,0 +1,30 @@
|
||||
// ignore_for_file: file_names
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:get/get.dart';
|
||||
|
||||
import '../../../controller/after_login/kurir/progressPenghantaranController.dart';
|
||||
import '../../../widgets/appbar.dart';
|
||||
import '../../../widgets/boxBackgroundDecoration.dart';
|
||||
|
||||
class ProgressPenghantaranPage
|
||||
extends GetView<ProgressPenghantaranControllerKurir> {
|
||||
const ProgressPenghantaranPage({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: PreferredSize(
|
||||
preferredSize:
|
||||
Size.fromHeight(MediaQuery.of(context).size.height * 0.08),
|
||||
child: const AppBarWidget(
|
||||
header: "Progress Penghantaran",
|
||||
autoLeading: true,
|
||||
),
|
||||
),
|
||||
body: BoxBackgroundDecoration(
|
||||
child: Obx(() => controller.enhanceStepContainer.value),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user