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 |
Tags
- 파이썬 부동소수점
- flutter statefulwidget
- flutter
- valorant api dart
- leetcode dart
- widget
- flutter android 폴더
- tft api dart
- dart.dev
- 파이썬
- 롤 api dart
- flutter bloc
- PlatformException(sign_in_failed
- 발로란트 api dart
- swift 동시성
- riot api dart
- dart
- generate parentheses dart
- dart new 키워드
- dart new
- AnimationController
- 롤토체스 api dart
- flutter ios 폴더
- com.google.GIDSignIn
- Architectural overview
- flutter widget
- lol api dart
- swift concurrency
- docker overview
- keychain error
Archives
- Today
- Total
Coaspe
Flutter - IndexedStack 본문
List 안에 있는 children들 중 하나의 child를 보여주는 Stack 입니다.
화면에 보여지는 자식은 주어진 index 중 하나 입니다. 스택은 항상 가장 큰 자식 만큼 큽니다.
만약 값이 null 이면 아무것도 보이지 않습니다.
상속 구조
생성자
Key? key,
AlignmentGeometry alignment = AlignmentDirectional.topStart,
TextDirection? textDirection,
StackFit sizing = StackFit.loose,
int? index = 0,
List<Widget> children = const <Widget>[]
})
- alignment: 스택 안의 non-positioned, partially-positioned 자식들의 배열을 결정합니다.
- sizing: 스택 안의 non-positioned 자식들의 크기를 결정합니다.
'Flutter > API' 카테고리의 다른 글
Flutter - CupertinoSliverNavigationBar (0) | 2023.02.17 |
---|---|
Flutter - CustomScollView (0) | 2023.02.17 |
Flutter - Hero (0) | 2023.02.17 |
Flutter - SafeArea (0) | 2023.02.17 |
Flutter - BottomNavigationBar (0) | 2023.02.17 |
Comments