A flexible space that expands along the major axis of its containing stack layout, or on both axes if not contained in a stack. struct ChecklistRow: View { let name: String var body: some View { HStack { Image(systemName: "checkmark") Text(name) } .border(Color.blue) } }
A description of a row or a column in a lazy grid. struct GridItemDemo: View { let rows = [ GridItem(.fixed(30), spacing: 1), GridItem(.fixed(60), spacing: 10), GridItem(.fixed(90), spacing: 20), GridItem(.fixed(10), spacing: 50) ] var body: some View { ScrollView(.horizontal) { LazyHGrid(rows: rows, spacing: 5) { ForEach(0...300, id: \.self) { _ in Color.red.frame(width: 30) Color.green.frame(w..
A container view that arranges its child views in a grid that grows vertically, creating items only as needed. struct VerticalSmileys: View { let columns = [GridItem(.flexible()), GridItem(.flexible())] var body: some View { ScrollView { LazyVGrid(columns: columns) { ForEach(0x1f600...0x1f679, id: \.self) { value in Text(String(format: "%x", value)) Text(emoji(value)) .font(.largeTitle) } } } } ..
A container view that arranges its child views in a grid that grows horizontally, creating items only as needed. struct HorizontalSmileys: View { let rows = [GridItem(.fixed(30)), GridItem(.fixed(30))] var body: some View { ScrollView(.horizontal) { LazyHGrid(rows: rows) { ForEach(0x1f600...0x1f679, id: \.self) { value in Text(String(format: "%x", value)) Text(emoji(value)) .font(.largeTitle) } ..
- Total
- Today
- Yesterday
- docker
- 스프링 시큐리티(spring security)
- 스프링 프레임워크(spring framewordk)
- 스프링 프레임워크(spring framework)
- 문자 자르기
- await
- jsp 오픈 소스
- MainActor
- java-개발 환경 설정하기
- jstl(java standard tag library)-core
- nl2br
- error-java
- 진수 변환
- REST API
- .submit()
- java web-mvc
- 특정 문자를 기준으로 자르기
- 인텔리제이(intellij)
- React
- 메이븐(maven)
- java 키워드 정리
- 스프링 시큐리티(spring security)-http basic 인증
- System.Diagnostics
- 제품 등록
- 람다식(lambda expression)
- 표현 언어(expression language)
- java.sql
- jstl(java standard tag library)
- system.io
- In App Purchase
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |