Skip to content

Commit

Permalink
feat: cart page
Browse files Browse the repository at this point in the history
  • Loading branch information
Rizz-33 committed Mar 25, 2024
1 parent c11499e commit f3900cb
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions lib/pages/cart.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import 'package:blend_bristo/models/restaurant.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';

class CartPage extends StatelessWidget {
const CartPage({super.key});

@override
Widget build(BuildContext context) {
return Consumer<Restaurant> (builder: (context, restaurant, child) {

});
}
}

0 comments on commit f3900cb

Please sign in to comment.