Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- textview
- 앱
- viewmodel
- Button
- ScrollView
- TEST
- Kotlin
- intent
- 앱바
- textfield
- 계측
- 테스트
- scroll
- DART
- appbar
- Flutter
- activity
- CustomScrollView
- android
- data
- tabbar
- Compose
- Navigation
- 안드로이드
- drift
- binding
- Coroutines
- Dialog
- LifeCycle
- livedata
Archives
- Today
- Total
목록배경 불투명 (1)
Study Record
[Flutter] 위젯 겹치기 (Stack, Positioned) , 배경 불투명
✍ Stack Class 자식 위젯들을 중복으로 겹쳐서 위치시킬 수 있다. 별도로 방향을 정해주지 않으면 상단 왼쪽(topStart)에 위젯들이 겹쳐 정렬된다. Stack({ Key? key, AlignmentGeometry alignment = AlignmentDirectional.topStart, TextDirection? textDirection, StackFit fit = StackFit.loose, Clip clipBehavior = Clip.hardEdge, List children = const [], }) ※ alignment import 'package:flutter/material.dart'; void main() { runApp(MaterialApp(home: HomeScreen())..
Flutter/widget
2023. 2. 18. 15:44