step 4 : home screen

This commit is contained in:
sindhu
2024-01-12 14:52:17 +07:00
parent 3ae6622951
commit f323df9f0f
5 changed files with 154 additions and 133 deletions

View File

@@ -0,0 +1,10 @@
import 'package:flutter/material.dart';
class TransaksiScreen extends StatelessWidget {
const TransaksiScreen({super.key});
@override
Widget build(BuildContext context) {
return const Placeholder();
}
}