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
- BLE Security
- ble
- 스푸핑 공격 감지 시스템
- 실내 위치 예측
- 플러터
- 삼변측량기법
- 삼변측량
- RSSI 전처리
- 해킹 감지 시스템
- BLE Spoofing Attack
- 실내 위치 포지셔닝
- flutter
- trilateration
- BLE 보안 취약
- BLE 삼변측량
- 실내 위치 측위
- 위치 정확도
- 칼만 필터
- BLE 실내 위치 측위
- Flutter Positioned
- RSSI란?
- Stack Widget
- RSSI 평활화
- BLE 보안
- BLE 스푸핑 공격
- Flutter Stack
- Flutter 기초
- Positioned Widget
- 플러터 기초
- 직선의방정식
Archives
- Today
- Total
컨테이너
[Flutter] Container Class 본문
반응형
Container Class
예제 코드
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Container',
home: Scaffold(
appBar: AppBar(
title: Text('Container'),
centerTitle: true,
),
body: Container(
width: 300,
height: 300,
color: Colors.cyanAccent,
child: Center(
child: Text(
"컨테이너",
style: TextStyle(fontSize: 50),
),
),
),
),
);
}
}
Container는 자식 위젯을 한 개 포함하며, 크기를 지정할 수 있습니다.
만약, 크기를 지정하지 않으면 자식 위젯의 크기에 맞춰지고,
( 단, 자식 위젯의 크기가 지정되어 있어야합니다 )
자식 위젯이 없거나 크기가 지정되어 있지 않으면 width와 height는 최댓값으로 고정됩니다.
위 예제 코드는 너비 300, 높이 300인 Container가 Center 위젯을 포함하고 있습니다.
확장판
Container는 Sizedbox와 달리 다양한 속성을 사용할 수 있습니다.
예제 코드
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Container',
home: Scaffold(
appBar: AppBar(
title: Text('Container'),
centerTitle: true,
),
body: Container(
width: 300,
height: 300,
// 패딩 속성
padding: EdgeInsets.all(50),
// 마진 속성
margin: EdgeInsets.all(50),
// 컨테이너 꾸미기
decoration: BoxDecoration(
// 컨테이너의 background color
color: Colors.cyanAccent,
// 컨테이너의 border 모양
borderRadius: BorderRadius.all(
Radius.circular(70),
),
// 컨테이너의 그림자
boxShadow: [
BoxShadow(
color: Colors.grey[600],
blurRadius: 20,
spreadRadius: 2,
),
],
// border 꾸미기
border: Border.all(
color: Colors.black,
width: 3,
),
),
child: Text(
"컨테이너",
style: TextStyle(fontSize: 50),
),
),
),
);
}
}
Container의 속성값을 바꾸면서,
child에 다양한 위젯을 넣어보시면 훨씬 좋습니다!
더 자세한 정보를 원하시면?!
https://api.flutter.dev/flutter/widgets/Container-class.html
반응형
'Development > Flutter' 카테고리의 다른 글
[Flutter] SingleChildScrollView Class (0) | 2021.01.20 |
---|---|
[Flutter] Scaffold Class (0) | 2021.01.20 |
[Flutter] SizedBox Class (0) | 2021.01.19 |
[Flutter] Row, Column Class (0) | 2021.01.19 |
[Flutter] MaterialApp Class (0) | 2021.01.19 |
Comments