-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.dart
38 lines (35 loc) · 932 Bytes
/
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
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
leading: const Icon(Icons.menu),
title: const Icon(Icons.verified_user_outlined),
backgroundColor: Colors.amber,
actions: const <Widget>[
IconButton(
onPressed: null,
icon: Icon(Icons.notifications_outlined),
),
],
),
body: Center(
child: ElevatedButton(
onPressed: null,
child: Padding(
padding: const EdgeInsets.all(30.0),
child: Text('hellooharendra'),
),
),
),
),
);
}
}
/Users/iphtech30/Desktop/test/flutter/first_layout/demo/lib/main.dart