일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- nico
- Python
- 비즈니스일본어
- jsp
- 자바
- 単語
- CSS
- java
- html
- C로 시작하는 컴퓨터 프로그래밍4판
- 日本語
- rails
- springboot
- 연습문제
- 一日一つメソッド
- 건담
- Flutter
- 일본어
- 디지몬
- Web
- DART
- 반다이몰
- メソッド
- vscode
- javascript
- rails7
- 인프런
- Spring
- 건담베이스
- ruby
Archives
- Today
- Total
AR삽질러
Flutter 기초 - Container, Center Widget (11) 본문
728x90
Flutter 기초 - Container, Center Widget (11)
import 'package:flutter/material.dart';
void main() {
runApp(
MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Study to Container'),
),
body: CustomContainer(),
),
),
);
}
class CustomContainer extends StatelessWidget {
const CustomContainer({super.key});
@override
Widget build(BuildContext context) {
return Center(
child: Container(
width: 300,
height: 300,
padding: EdgeInsets.fromLTRB(10, 12, 10, 12),
decoration: BoxDecoration(
color: Color(0xFF85D07B),
border: Border.all(color: Colors.red, width: 5, style: BorderStyle.solid),
borderRadius: BorderRadius.circular(100),
boxShadow: [
BoxShadow(color: Colors.black.withOpacity(0.3), offset: Offset(6, 6), blurRadius: 10, spreadRadius: 10),
BoxShadow(color: Colors.blue.withOpacity(0.3), offset: Offset(-6, -6), blurRadius: 10, spreadRadius: 10),
]
),
child: Center(
child: Container(
color: Colors.yellow,
child: Text('Hello Container'),
),
),
),
);
}
}
1. Container
크기 조정 | width, height 로 크기 지정 |
Padding | 내부 자식 위젯과 Container 경계 사이의 공간을 설정 |
Decoration | 배경색, 테두기, 둥근 모서리, 그림자 등을 지정 |
width, height : 300 정사각형
pading: EdgeInstets.fromLTRB : 모든 방향에 패팅을적용
decoration: BoxDecoration : 배경색, 테두리, 모서리, 그림자
2. Center Widget
- 자식 위젯을 자신의 중앙에 위치시키는 레이아웃 위젯으로 주로 정렬 목적으로 사용되며 크기에 상관없이 중아에 배치한다.
728x90
반응형
LIST
'Dart > Flutter' 카테고리의 다른 글
Flutter 기초 - SingleChildScrollView (13) (0) | 2024.05.16 |
---|---|
Flutter 기초 - Widget상하 좌우 배치 (12) (0) | 2024.05.16 |
Flutter 기초 - MaterialApp, Scaffold (10) (0) | 2024.05.16 |
Flutter 기초 - Hot restart, Hot reload (9) (1) | 2024.05.15 |
Flutter Reusable Cards - (6) (0) | 2023.09.19 |