회원가입 페이지에 사용할 이런 일러스트를 구하려면 unsplash 사용하면 된다
canva에도 있고 ai로 생성해서 써도 됨
pinterest나 dribble같은데서 레퍼런스 찾아도 되고
canva ai나 uizard galileo ai같은거 사용해서 생성해도 되고
생성한것도 레퍼런스 정도 수준이고 결국 내 수정이 필요해서..
flex: 1
, the flex
prop will define how your items are going to "fill" over the available space along your main axis. Since we only have one container, it will take all the available space of the parent component. In this case, it is the only component, so it will take all the available screen space.
In Android and iOS development, a view is the basic building block of UI: a small rectangular element on the screen which can be used to display text, images, or respond to user input. Even the smallest visual elements of an app, like a line of text or a button, are kinds of views. Some kinds of views can contain other views. It’s views all the way down!
In Android development, you write views in Kotlin or Java; in iOS development, you use Swift or Objective-C. With React Native, you can invoke these views with JavaScript using React components. At runtime, React Native creates the corresponding Android and iOS views for those components. Because React Native components are backed by the same views as Android and iOS, React Native apps look, feel, and perform like any other apps. We call these platform-backed components Native Components.
React Native comes with a set of essential, ready-to-use Native Components you can use to start building your app today. These are React Native's Core Components.
React Native UI Component | Android View | iOS View | Web Analog | Description |
---|---|---|---|---|
<View> |
<ViewGroup> |
<UIView> |
A non-scrolling <div> |
A container that supports layout with flexbox, style, some touch handling, and accessibility controls |
<Text> |
<TextView> |
<UITextView> |
<p> |
Displays, styles, and nests strings of text and even handles touch events |
<Image> |
<ImageView> |
<UIImageView> |
<img> |
Displays different types of images |
<ScrollView> |
<ScrollView> |
<UIScrollView> |
<div> |
A generic scrolling container that can contain multiple components and views |
<TextInput> |
<EditText> |
<UITextField> |
<input type="text"> |
Allows the user to enter text |
brew install tree
맥에서 현재 디렉토리 아래 폴더들 보고싶을때
tree -L 1