Created
November 22, 2022 00:58
-
-
Save brainwo/6dd35bb805af8b8ed0876d56e1e1709a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() => runApp(const MyApp()); | |
class MyApp extends StatelessWidget { | |
const MyApp({super.key}); | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
home: Scaffold( | |
body: Column( | |
children: [ | |
Row( | |
children: const [ | |
Expanded(child: Text("No")), | |
Expanded( | |
child: Text( | |
"55168", | |
style: TextStyle(fontWeight: FontWeight.bold), | |
)), | |
], | |
), | |
Row( | |
children: const [ | |
Expanded(child: Text("Operation No")), | |
Expanded( | |
child: Text( | |
"1", | |
style: TextStyle(fontWeight: FontWeight.bold), | |
)), | |
], | |
), | |
Row( | |
children: const [ | |
Expanded(child: Text("Operation Date")), | |
Expanded( | |
child: Text( | |
"20.03.2021", | |
style: TextStyle(fontWeight: FontWeight.bold), | |
)), | |
], | |
), | |
Row( | |
children: const [ | |
Expanded(child: Text("Collect")), | |
Expanded( | |
child: Text( | |
"3000", | |
style: TextStyle(fontWeight: FontWeight.bold), | |
)), | |
], | |
), | |
Row( | |
children: const [ | |
Expanded(child: Text("Transplant")), | |
Expanded( | |
child: Text( | |
"3000", | |
style: TextStyle(fontWeight: FontWeight.bold), | |
)), | |
], | |
) | |
], | |
), | |
)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment