mirror of
https://github.com/SoPat712/RUSwipeShare.git
synced 2025-08-21 19:08:46 -04:00
Merge branch 'master' of https://github.com/SoPat712/RUSwipeShare
This commit is contained in:
37
lib/sell.dart
Normal file
37
lib/sell.dart
Normal 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'),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user