Specific days & timing page creation

This commit is contained in:
vignesh 2022-06-04 12:12:50 +05:30
parent b7bcc82120
commit 55bb876545
3 changed files with 775 additions and 761 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:openclosenew/businessdetail.dart';
import 'package:openclosenew/colors.dart'; import 'package:openclosenew/colors.dart';
import 'package:openclosenew/pages/page_1.dart';
import '17-BusinessProfileFormSuccess.dart'; import '17-BusinessProfileFormSuccess.dart';
import 'FontFamily.dart'; import 'FontFamily.dart';
@ -277,10 +277,8 @@ class _addbusinessdetailsState extends State<addbusinessdetails> {
shape: RoundedRectangleBorder( shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(4)), borderRadius: BorderRadius.circular(4)),
onPressed: () { onPressed: () {
Navigator.push( Navigator.push(context,
context, MaterialPageRoute(builder: (_) => page1()));
MaterialPageRoute(
builder: (_) => profileformsuccess()));
}, },
child: Text( child: Text(
'Save', 'Save',

View File

@ -1,34 +1,61 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_switch/flutter_switch.dart';
import 'package:openclosenew/14_businessdetailsempty.dart';
class page1 extends StatelessWidget { import '../FontFamily.dart';
import '../colors.dart';
import '../fontsize.dart';
class page1 extends StatefulWidget {
const page1({Key? key}) : super(key: key); const page1({Key? key}) : super(key: key);
@override
State<page1> createState() => _page1State();
}
class _page1State extends State<page1> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Row( return Container(
children: [ height: 500,
Text( decoration: BoxDecoration(color: Colors.white),
"From", child: SafeArea(
style: TextStyle( child: Column(
fontFamily: "Manrope", crossAxisAlignment: CrossAxisAlignment.start,
fontStyle: FontStyle.normal, children: [
fontWeight: FontWeight.w300, Padding(
fontSize: 15, padding: const EdgeInsets.only(left: 15, right: 24),
), child: Row(
children: [
Text(
"From",
style: TextStyle(
fontFamily: "Manrope",
fontStyle: FontStyle.normal,
fontWeight: FontWeight.w300,
fontSize: 15,
color: DarkGray,
),
),
SizedBox(
width: 120,
),
Text(
"To",
style: TextStyle(
fontFamily: "Manrope",
fontStyle: FontStyle.normal,
fontWeight: FontWeight.w300,
fontSize: 15,
color: DarkGray,
),
),
],
),
),
],
), ),
SizedBox( ),
width: 120,
),
Text(
"To",
style: TextStyle(
fontFamily: "Manrope",
fontStyle: FontStyle.normal,
fontWeight: FontWeight.w300,
fontSize: 15,
),
),
],
); );
} }
} }