15 lines
372 B
Dart
15 lines
372 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:rijig_mobile/widget/appbar.dart';
|
|
|
|
class RequestPickScreen extends StatelessWidget {
|
|
const RequestPickScreen({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: CustomAppBar(judul: "Pilih Sampah"),
|
|
body: Center(child: Text("pilih sampah anda")),
|
|
);
|
|
}
|
|
}
|