mirror of
https://github.com/SoPat712/RUSwipeShare.git
synced 2025-08-21 10:58:47 -04:00
dialog stuff
This commit is contained in:
BIN
assets/busch_bg.jpg
Normal file
BIN
assets/busch_bg.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 37 KiB |
BIN
assets/ca_bg.jpg
Normal file
BIN
assets/ca_bg.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 87 KiB |
BIN
assets/cd_bg.jpg
Normal file
BIN
assets/cd_bg.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 299 KiB |
BIN
assets/livi_bg.jpg
Normal file
BIN
assets/livi_bg.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 111 KiB |
14
lib/buy.dart
14
lib/buy.dart
@@ -17,7 +17,16 @@ class _BuyScreenState extends State<BuyScreen> {
|
||||
Widget build(BuildContext context) {
|
||||
TimeOfDay _time = TimeOfDay.now();
|
||||
return Scaffold(
|
||||
body: const OffersListView(),
|
||||
body: Column(
|
||||
children: [
|
||||
Container(
|
||||
width: double.infinity,
|
||||
child: ElevatedButton(
|
||||
onPressed: () {}, child: Text("Choose A Different Location")),
|
||||
),
|
||||
const Expanded(child: CampusGridView()),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -43,6 +52,7 @@ class OffersListView extends StatelessWidget {
|
||||
Widget build(BuildContext context) {
|
||||
return ListView.builder(
|
||||
itemCount: 30,
|
||||
padding: EdgeInsets.zero,
|
||||
itemBuilder: (BuildContext context, int index) {
|
||||
return InkWell(
|
||||
onTap: () {
|
||||
@@ -76,7 +86,7 @@ class OffersListView extends StatelessWidget {
|
||||
child: Container(
|
||||
height: 80,
|
||||
color: Colors.blue,
|
||||
margin: const EdgeInsets.only(top: 4, bottom: 4),
|
||||
margin: const EdgeInsets.only(bottom: 4),
|
||||
child: Row(
|
||||
children: [
|
||||
Expanded(
|
||||
|
Reference in New Issue
Block a user