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
- nl2br
- await
- java-개발 환경 설정하기
- jstl(java standard tag library)
- 스프링 시큐리티(spring security)
- error-java
- 문자 자르기
- jsp 오픈 소스
- 표현 언어(expression language)
- system.io
- 메이븐(maven)
- System.Diagnostics
- 스프링 프레임워크(spring framework)
- .submit()
- 인텔리제이(intellij)
- MainActor
- jstl(java standard tag library)-core
- 람다식(lambda expression)
- java web-mvc
- REST API
- 스프링 프레임워크(spring framewordk)
- In App Purchase
- 제품 등록
- 진수 변환
- 스프링 시큐리티(spring security)-http basic 인증
- java 키워드 정리
- 상품 등록
- 특정 문자를 기준으로 자르기
- java.sql
- React
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |