BusinessAppFlutter/openclosenew/lib/pages/page_1.dart

35 lines
735 B
Dart
Raw Normal View History

2022-05-28 07:00:42 +00:00
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,
),
2022-05-28 07:00:42 +00:00
),
SizedBox(
width: 120,
),
Text(
"To",
style: TextStyle(
fontFamily: "Manrope",
fontStyle: FontStyle.normal,
fontWeight: FontWeight.w300,
fontSize: 15,
),
),
],
2022-05-28 07:00:42 +00:00
);
}
}