132 lines
4.2 KiB
Dart
132 lines
4.2 KiB
Dart
import 'package:autos/core/routing/route_paths.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:autos/core/widgets/hamburger_button.dart';
|
|
import 'package:autos/core/widgets/side_menu.dart';
|
|
|
|
class StoreScreen extends StatefulWidget {
|
|
const StoreScreen({super.key});
|
|
|
|
@override
|
|
State<StoreScreen> createState() => _StoreScreenState();
|
|
}
|
|
|
|
class _StoreScreenState extends State<StoreScreen> {
|
|
final GlobalKey<ScaffoldState> _scaffoldKey = GlobalKey<ScaffoldState>();
|
|
String selected = "ebay";
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final double topPadding = MediaQuery.of(context).padding.top + 16;
|
|
|
|
return Scaffold(
|
|
key: _scaffoldKey,
|
|
drawer: SideMenu(
|
|
selected: selected,
|
|
onItemSelected: (key) {
|
|
setState(() => selected = key);
|
|
},
|
|
),
|
|
|
|
body: Stack(
|
|
children: [
|
|
/// TITLE
|
|
Positioned(
|
|
top: topPadding,
|
|
left: 0,
|
|
right: 0,
|
|
child: const Center(
|
|
child: Text(
|
|
"eBay Locations",
|
|
style: TextStyle(fontSize: 26, fontWeight: FontWeight.w700),
|
|
),
|
|
),
|
|
),
|
|
|
|
/// MAIN WITH BUTTONS
|
|
Center(
|
|
child: Container(
|
|
width: MediaQuery.of(context).size.width * 0.90,
|
|
padding: const EdgeInsets.symmetric(horizontal: 40, vertical: 40),
|
|
margin: EdgeInsets.only(top: topPadding + 60),
|
|
decoration: BoxDecoration(
|
|
color: Colors.white,
|
|
borderRadius: BorderRadius.circular(25),
|
|
boxShadow: [
|
|
BoxShadow(
|
|
color: Colors.black12,
|
|
blurRadius: 25,
|
|
offset: const Offset(0, 12),
|
|
),
|
|
],
|
|
),
|
|
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
/// SAVE SELECTED BUTTON
|
|
SizedBox(
|
|
width: double.infinity,
|
|
child: ElevatedButton(
|
|
onPressed: () {
|
|
// TODO: Save Selected Flow
|
|
},
|
|
style: ElevatedButton.styleFrom(
|
|
backgroundColor: const Color(0xFF00CFFF),
|
|
padding: const EdgeInsets.symmetric(vertical: 16),
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(10),
|
|
),
|
|
),
|
|
child: const Text(
|
|
"Save Selected",
|
|
style: TextStyle(
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w600,
|
|
fontSize: 16,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
|
|
const SizedBox(height: 20),
|
|
|
|
/// CREATE NEW LOCATION BUTTON
|
|
SizedBox(
|
|
width: double.infinity,
|
|
child: ElevatedButton(
|
|
onPressed: () {
|
|
Navigator.pushNamed(
|
|
context,
|
|
AppRoutePaths.createStoreLocation,
|
|
);
|
|
},
|
|
style: ElevatedButton.styleFrom(
|
|
backgroundColor: const Color(0xFF00CFFF),
|
|
padding: const EdgeInsets.symmetric(vertical: 16),
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(10),
|
|
),
|
|
),
|
|
child: const Text(
|
|
"Create New Location",
|
|
style: TextStyle(
|
|
color: Colors.white,
|
|
fontWeight: FontWeight.w600,
|
|
fontSize: 16,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
|
|
/// HAMBURGER BUTTON
|
|
HamburgerButton(scaffoldKey: _scaffoldKey),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|