-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.dart
47 lines (42 loc) · 1.02 KB
/
main.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
42
43
44
45
46
47
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatefulWidget {
State<StatefulWidget> createState() {
return _MyAppState();
}
}
class _MyAppState extends State<MyApp> {
String mytxt = "";
Widget build(BuildContext context) {
return (MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('DHIRU APP'),
centerTitle: true,
),
body: Center(
child: Column(
children: <Widget>[
TextField(
onChanged: (String value){
setState((){ mytxt=value;});
}),
SizedBox( height: 40,),
Text(
mytxt,
style: TextStyle(
fontWeight: FontWeight.bold,
color: Colors.blue,
fontSize: 36,
),
)
],
),
),
),
debugShowCheckedModeBanner: false,
));
}
}