ex18. AppBar
2024. 6. 13. 09:53ㆍFlutter
import 'package:flutter/material.dart';
class ExAppBar extends StatelessWidget {
const ExAppBar({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('AppBar 영역'),
backgroundColor: Colors.redAccent,
// AppBar의 왼쪽에 띄워지는 버튼! -> leading
leading: IconButton(
onPressed: () {},
icon: Icon(Icons.menu),
),
actions: [
IconButton(
onPressed: () {},
icon: Icon(Icons.settings),
)
],
foregroundColor: Colors.black, // appbar에서 색 지정
),
);
}
}
'Flutter' 카테고리의 다른 글
ex20. Lambda (0) | 2024.06.13 |
---|---|
ex19. Widget 종합 실습 (0) | 2024.06.13 |
ex17. Icon (0) | 2024.06.13 |
ex16. Stack (0) | 2024.06.12 |
ex15. Axis (0) | 2024.06.12 |