Specific days & timing page creation
This commit is contained in:
parent
b7bcc82120
commit
55bb876545
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:openclosenew/businessdetail.dart';
|
||||
import 'package:openclosenew/colors.dart';
|
||||
import 'package:openclosenew/pages/page_1.dart';
|
||||
|
||||
import '17-BusinessProfileFormSuccess.dart';
|
||||
import 'FontFamily.dart';
|
||||
@ -277,10 +277,8 @@ class _addbusinessdetailsState extends State<addbusinessdetails> {
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(4)),
|
||||
onPressed: () {
|
||||
Navigator.push(
|
||||
context,
|
||||
MaterialPageRoute(
|
||||
builder: (_) => profileformsuccess()));
|
||||
Navigator.push(context,
|
||||
MaterialPageRoute(builder: (_) => page1()));
|
||||
},
|
||||
child: Text(
|
||||
'Save',
|
||||
|
@ -1,34 +1,61 @@
|
||||
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);
|
||||
|
||||
@override
|
||||
State<page1> createState() => _page1State();
|
||||
}
|
||||
|
||||
class _page1State extends State<page1> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Row(
|
||||
children: [
|
||||
Text(
|
||||
"From",
|
||||
style: TextStyle(
|
||||
fontFamily: "Manrope",
|
||||
fontStyle: FontStyle.normal,
|
||||
fontWeight: FontWeight.w300,
|
||||
fontSize: 15,
|
||||
),
|
||||
return Container(
|
||||
height: 500,
|
||||
decoration: BoxDecoration(color: Colors.white),
|
||||
child: SafeArea(
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Padding(
|
||||
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,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user