250x250
반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Swift
- algorithm
- designPattern
- COMMIT
- swiftlint
- enumerations
- OSLog
- protocol
- GIT
- toyproject
- Leetcode
- dart
- Extentsion
- flutter
- Equatable
- IOS
- xcode
- ToDoRim
- pubspec
- reetcode
- SwiftGen
- basic
- pubspec.yaml
- it
- Widget
- UIAccessibility
- tip
- listview
- keyWindow
- github
Archives
- Today
- Total
수니의 개발새발
[Flutter/Widget] Icon 본문
728x90
반응형
앤써북의 ⌜모두가 할 수 있는 플러터 UI 입문⌟을 참고하여 작성하였습니다.
📌 이번 글은
책의 샘플 앱을 만들면서 공부한 위젯 정리입니다.
Icon
- Icon을 표시해주는 위젯
- MaterialIcon(Icons), CupertinoIcon 사용 가능
- 이외 Icon 라이브러리: https://pub.dev
- color 속성: MaterialColor(Colors), CupertinoColors, CustomColors(Color) 사용 가능
- size 속성: 크기
👩🏻💻 사용 예제
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(
title: const Text('Icon'),
centerTitle: true,
),
body: const Center(
child: Icon( // *** Icon 위젯 ***
Icons.home, // Material Icon 사용
color: Colors.red, // Icon 색상 설정: Material Colors 사용
size: 100, // Icon 크기 설정
),
),
),
);
}
}
🙋🏻♀️ 참고
최주호, 정호준, 정동진 공저, ⌜모두가 할 수 있는 플러터 UI 입문⌟, 앤써북(2021), p119
728x90
반응형
'Flutter' 카테고리의 다른 글
[Flutter] pubspec.yaml (2) 속성 정리 (0) | 2022.03.18 |
---|---|
[Flutter] Linter (with. flutter_lints) (0) | 2022.03.16 |
[Flutter/Widget] Column, Row (MainAxisAlignment) (0) | 2022.02.24 |
[Flutter/Widget] Scaffold, Container, BoxDecoration, AppBar (0) | 2022.02.23 |
[Flutter/Dart] final 과 const (0) | 2022.02.15 |
Comments