ef2b4e9463
17-BusinessProfileFormSuccess design finished
35 lines
735 B
Dart
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,
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|