BusinessAppFlutter/openclosenew/lib/pages/page_1.dart
vignesh ef2b4e9463 Business Profile Form Success
17-BusinessProfileFormSuccess design finished
2022-05-29 23:58:03 +05:30

35 lines
735 B
Dart

import 'package:flutter/material.dart';
class page1 extends StatelessWidget {
const page1({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Row(
children: [
Text(
"From",
style: TextStyle(
fontFamily: "Manrope",
fontStyle: FontStyle.normal,
fontWeight: FontWeight.w300,
fontSize: 15,
),
),
SizedBox(
width: 120,
),
Text(
"To",
style: TextStyle(
fontFamily: "Manrope",
fontStyle: FontStyle.normal,
fontWeight: FontWeight.w300,
fontSize: 15,
),
),
],
);
}
}