-
Notifications
You must be signed in to change notification settings - Fork 5
/
day4.dart
41 lines (39 loc) · 1.07 KB
/
day4.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: SafeArea(
child: Scaffold(
body: Container(
child: Center(
child: Container(
color: Colors.amber,
child: Column(
crossAxisAlignment: CrossAxisAlignment.end,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text("kiet"),
Text("Aakanksha Shivani"),
Text("12535781638739"),
Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: <Widget>[
Text("17-21"),
Text("B.Tech"),
Text("CSE")
],
)
],
),
),
),
),
),
),
);
}
}