business home screen started

This commit is contained in:
vignesh 2022-05-15 01:58:31 +05:30
parent c0a19b4925
commit db41677cbb
12 changed files with 349 additions and 29 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 989 B

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 573 B

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 689 B

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -50,14 +50,11 @@ class _addbusinessState extends State<addbusiness> {
loadData();
loadData1();
return Scaffold(
resizeToAvoidBottomInset: false,
backgroundColor: Colors.white,
body: SingleChildScrollView(
reverse: true,
body: SafeArea(
child: Column(
children: [
SizedBox(
height: 50,
),
Padding(
padding: const EdgeInsets.only(left: 15, right: 24),
child: Row(
@ -78,7 +75,7 @@ class _addbusinessState extends State<addbusiness> {
color: Color(0xff3D3D3D),
fontFamily: 'assets/fonts/Manrope-Medium.ttf',
),
)
),
],
),
),
@ -115,7 +112,6 @@ class _addbusinessState extends State<addbusiness> {
Padding(
padding: const EdgeInsets.only(
left: 24,
top: 10,
right: 24,
),
child: Text(
@ -128,8 +124,7 @@ class _addbusinessState extends State<addbusiness> {
),
),
Padding(
padding:
const EdgeInsets.only(left: 24, right: 24, top: 10),
padding: const EdgeInsets.only(left: 24, right: 24, top: 5),
child: TextField(
decoration: InputDecoration(
contentPadding:
@ -146,7 +141,7 @@ class _addbusinessState extends State<addbusiness> {
Padding(
padding: const EdgeInsets.only(
left: 24,
top: 10,
top: 5,
right: 24,
),
child: Text(
@ -159,8 +154,7 @@ class _addbusinessState extends State<addbusiness> {
),
),
Padding(
padding:
const EdgeInsets.only(left: 24, right: 24, top: 10),
padding: const EdgeInsets.only(left: 24, right: 24, top: 5),
child: TextField(
decoration: InputDecoration(
contentPadding:
@ -176,8 +170,7 @@ class _addbusinessState extends State<addbusiness> {
),
),
Padding(
padding:
const EdgeInsets.only(left: 24, top: 10, right: 24),
padding: const EdgeInsets.only(left: 24, top: 5, right: 24),
child: Text(
'Tell about your business...',
style: TextStyle(
@ -188,8 +181,7 @@ class _addbusinessState extends State<addbusiness> {
),
),
Padding(
padding:
const EdgeInsets.only(left: 24, right: 24, top: 10),
padding: const EdgeInsets.only(left: 24, right: 24, top: 5),
child: TextField(
maxLines: 4,
keyboardType: TextInputType.multiline,
@ -206,7 +198,7 @@ class _addbusinessState extends State<addbusiness> {
),
),
Padding(
padding: const EdgeInsets.only(top: 10),
padding: const EdgeInsets.only(top: 5),
child: Row(
children: [
SizedBox(
@ -314,8 +306,10 @@ class _addbusinessState extends State<addbusiness> {
),
),
hintText: 'Type here...',
suffixIcon:
Image.asset('assets/images/location.png'),
suffixIcon: Icon(
Icons.location_on_outlined,
color: Color(0xff09CD99),
),
),
),
),
@ -324,9 +318,7 @@ class _addbusinessState extends State<addbusiness> {
],
),
),
SizedBox(
height: 20,
),
Spacer(),
MaterialButton(
height: 50,
minWidth: double.infinity,

View File

@ -0,0 +1,314 @@
import 'package:flutter/material.dart';
import 'package:dotted_border/dotted_border.dart';
class businesshome extends StatefulWidget {
const businesshome({Key? key}) : super(key: key);
@override
State<businesshome> createState() => _businesshomeState();
}
class _businesshomeState extends State<businesshome> {
int _selectedIndex = 0;
static const TextStyle optionStyle = TextStyle(
fontFamily: 'Manrope',
fontSize: 10,
fontWeight: FontWeight.w400,
fontStyle: FontStyle.normal,
);
static const List<Widget> _widgetOptions = <Widget>[
Text(
'Index 0: Home',
style: optionStyle,
),
Text(
'Index 1: Business',
style: optionStyle,
),
Text(
'Index 2: School',
style: optionStyle,
),
];
void _onItemTapped(int index) {
setState(() {
_selectedIndex = index;
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
body: Column(
children: [
SafeArea(
child: Row(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.center,
children: [
Container(
height: 50,
width: 50,
margin: EdgeInsets.all(20),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(50),
color: Colors.grey,
),
),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
SizedBox(
height: 25,
),
Text(
'Hi, Sudharsan',
style: TextStyle(
color: Colors.black,
fontSize: 16,
fontFamily: 'Manrope',
fontStyle: FontStyle.normal,
fontWeight: FontWeight.w600,
),
),
Text(
'Mon, 02 May 2022',
style: TextStyle(
fontFamily: 'Manrope',
fontStyle: FontStyle.normal,
fontWeight: FontWeight.w500,
fontSize: 11,
),
),
],
),
Spacer(),
Padding(
padding: const EdgeInsets.only(top: 20),
child: IconButton(
icon: Image.asset('assets/images/bell.png'),
onPressed: () {
Navigator.pop(context);
},
),
),
],
),
),
Spacer(),
SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Container(
margin: const EdgeInsets.symmetric(vertical: 20, horizontal: 20),
child: FittedBox(
fit: BoxFit.fill,
alignment: Alignment.topCenter,
child: Row(
children: [
Container(
width: 350,
margin: EdgeInsets.only(right: 10),
height: 100,
decoration: BoxDecoration(
image: const DecorationImage(
alignment: Alignment.centerRight,
image: AssetImage('assets/images/status.png'),
),
color: Color(0xFF09CD99),
borderRadius: BorderRadius.all(
Radius.circular(5),
),
),
child: Padding(
padding: const EdgeInsets.all(14),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
"Today",
style: TextStyle(
fontFamily: 'Manrope',
fontStyle: FontStyle.normal,
fontWeight: FontWeight.w400,
fontSize: 14,
color: Colors.white,
),
),
Text(
"42",
style: TextStyle(
fontFamily: 'Manrope',
fontStyle: FontStyle.normal,
fontWeight: FontWeight.w400,
fontSize: 26,
color: Colors.white,
),
),
Text(
"Visitors viewed Barbeque Nation",
style: TextStyle(
fontFamily: 'Manrope',
fontStyle: FontStyle.normal,
fontWeight: FontWeight.w400,
fontSize: 12,
color: Colors.white,
),
),
],
),
),
),
Container(
width: 350,
margin: EdgeInsets.only(right: 10),
height: 100,
decoration: BoxDecoration(
image: const DecorationImage(
alignment: Alignment.centerRight,
image: AssetImage('assets/images/status.png'),
),
color: Color(0xFF09CD99),
borderRadius: BorderRadius.all(Radius.circular(5))),
child: Padding(
padding: const EdgeInsets.all(12),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
"Today",
style: TextStyle(
fontFamily: 'Manrope',
fontStyle: FontStyle.normal,
fontWeight: FontWeight.w400,
fontSize: 14,
color: Colors.white,
),
),
Text(
"42",
style: TextStyle(
fontFamily: 'Manrope',
fontStyle: FontStyle.normal,
fontWeight: FontWeight.w400,
fontSize: 26,
color: Colors.white,
),
),
Text(
"Visitors viewed Barbeque Nation",
style: TextStyle(
fontFamily: 'Manrope',
fontStyle: FontStyle.normal,
fontWeight: FontWeight.w400,
fontSize: 12,
color: Colors.white,
),
),
],
),
),
),
Container(
width: 350,
margin: EdgeInsets.only(right: 10),
height: 100,
decoration: BoxDecoration(
image: const DecorationImage(
alignment: Alignment.centerRight,
image: AssetImage('assets/images/status.png'),
),
color: Color(0xFF09CD99),
borderRadius: BorderRadius.all(Radius.circular(5))),
child: Padding(
padding: const EdgeInsets.all(12),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
"Today",
style: TextStyle(
fontFamily: 'Manrope',
fontStyle: FontStyle.normal,
fontWeight: FontWeight.w400,
fontSize: 14,
color: Colors.white,
),
),
Text(
"42",
style: TextStyle(
fontFamily: 'Manrope',
fontStyle: FontStyle.normal,
fontWeight: FontWeight.w400,
fontSize: 26,
color: Colors.white,
),
),
Text(
"Visitors viewed Barbeque Nation",
style: TextStyle(
fontFamily: 'Manrope',
fontStyle: FontStyle.normal,
fontWeight: FontWeight.w400,
fontSize: 12,
color: Colors.white,
),
),
],
),
),
),
],
),
),
),
),
Spacer(),
BottomNavigationBar(
iconSize: 20,
unselectedFontSize: 12,
selectedFontSize: 12,
type: BottomNavigationBarType.fixed,
items: const <BottomNavigationBarItem>[
BottomNavigationBarItem(
icon: ImageIcon(
AssetImage('assets/images/store.png'),
),
label: 'Business',
),
BottomNavigationBarItem(
icon: ImageIcon(
AssetImage('assets/images/messages.png'),
),
label: 'Chat',
),
BottomNavigationBarItem(
icon: ImageIcon(
AssetImage('assets/images/discount.png'),
),
label: 'Offer',
),
BottomNavigationBarItem(
icon: ImageIcon(
AssetImage('assets/images/profile.png'),
),
label: 'Profile',
),
BottomNavigationBarItem(
icon: ImageIcon(
AssetImage('assets/images/setting.png'),
),
label: 'Settings',
),
],
currentIndex: _selectedIndex,
selectedItemColor: Color(0xff09CD99),
onTap: _onItemTapped,
),
],
),
);
}
}

View File

@ -1,5 +1,6 @@
import 'package:flutter/material.dart';
import 'package:dotted_border/dotted_border.dart';
import 'package:openclosenew/11_busiesshome.dart';
class businessempty extends StatefulWidget {
const businessempty({Key? key}) : super(key: key);
@ -115,7 +116,10 @@ class _businessemptyState extends State<businessempty> {
IconButton(
icon: Image.asset('assets/images/shop.png'),
onPressed: () {
Navigator.pop(context);
Navigator.push(
context,
MaterialPageRoute(
builder: (_) => businesshome()));
},
),
Text(
@ -136,28 +140,39 @@ class _businessemptyState extends State<businessempty> {
),
Spacer(),
BottomNavigationBar(
iconSize: 20,
unselectedFontSize: 12,
selectedFontSize: 12,
type: BottomNavigationBarType.fixed,
items: const <BottomNavigationBarItem>[
BottomNavigationBarItem(
icon: Icon(Icons.storefront_rounded),
icon: ImageIcon(
AssetImage('assets/images/store.png'),
),
label: 'Business',
),
BottomNavigationBarItem(
icon: Icon(Icons.snapchat_outlined),
icon: ImageIcon(
AssetImage('assets/images/messages.png'),
),
label: 'Chat',
),
BottomNavigationBarItem(
icon: Icon(Icons.discount_rounded),
icon: ImageIcon(
AssetImage('assets/images/discount.png'),
),
label: 'Offer',
),
BottomNavigationBarItem(
icon: Icon(Icons.school),
icon: ImageIcon(
AssetImage('assets/images/profile.png'),
),
label: 'Profile',
),
BottomNavigationBarItem(
icon: Icon(Icons.settings_outlined),
icon: ImageIcon(
AssetImage('assets/images/setting.png'),
),
label: 'Settings',
),
],

View File

@ -1,4 +1,3 @@
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:openclosenew/iintroduction_screen.dart';