added pengiriman_detail page in kurir user

This commit is contained in:
kicap1992
2022-06-28 01:40:48 +08:00
parent dc2c23ffc3
commit 70b9a9a04b
19 changed files with 1281 additions and 279 deletions

View 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),
),
);
}
}