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
- Kotlin
- react native
- enum
- map
- ConstraintLayout
- Swift
- CLASS
- AWS
- vuex
- 생명주기
- MINUS
- Interface
- class component
- collection
- function
- elementAt
- mongoose
- ReactNative
- Generic
- animation
- LiveData
- union
- Service
- Foreign Key
- recyclerview
- Filter
- list
- lifecycle
- docker-compose
- docker
Archives
- Today
- Total
목록react native (4)
개발 일기

해당 링크 참조 Flex Flex을 통해서 비율을 통해서 결정을 할수가 있습니다. 따라서 아래에 코드를 보면 flex을 통해서 비율을 정할수가 있습니다. import React, { Component } from 'react'; import { View } from 'react-native'; export default function FlexDimensionsBasics() { return ( // Try removing the `flex: 1` on the parent View. // The parent will not have dimensions, so the children can't expand. // What if you add `height: 300` instead of `flex: 1`? ..