Skip to content

Instantly share code, notes, and snippets.

@brainwo
Created November 22, 2022 00:58
Show Gist options
  • Save brainwo/6dd35bb805af8b8ed0876d56e1e1709a to your computer and use it in GitHub Desktop.
Save brainwo/6dd35bb805af8b8ed0876d56e1e1709a to your computer and use it in GitHub Desktop.
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