This commit is contained in:
NATHANIEL ENDICK
2023-02-25 21:01:16 -05:00
parent 1bd7a62d15
commit a0383a7854
3 changed files with 64 additions and 18 deletions

37
lib/sell.dart Normal file
View File

@@ -0,0 +1,37 @@
import 'package:flutter/material.dart';
class SellScreen extends StatefulWidget {
const SellScreen({Key? key}) : super(key: key);
@override
_SellScreenState createState() => _SellScreenState();
}
class _SellScreenState extends State<SellScreen> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Sell'),
automaticallyImplyLeading: false,
),
body: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(Icons.store_mall_directory, color: Colors.red),
Expanded(
child: const Text('Place'),
),
Icon(Icons.access_time, color: Colors.red),
Expanded(
child: const Text('Time'),
),
Icon(Icons.attach_money, color: Colors.red),
Expanded(
child: const Text('Cost'),
),
],
),
);
}
}