2024. 7. 2. 17:35

 

1. assets

2. components

3. constants

4. contexts

5. hooks

6. modules

7. navigation

8. redux

9. screens

 

 

2024. 7. 2. 08:00

npm i @react-navigation/native

npm i @react-navigation/native-stack

npm i @react-navigation/bottom-tabs

npm i @react-navigation/material-top-tabs

npm i react-native-screens

npm i react-native-safe-area-context

npm i @react-navigation/drawer

npm i react-native-reanimated

npm i @react-native-gesture-handler

 

import { NavigationContainer } from "@react-navigation/native";

import { createNativeStackNavigator } from "@react-navigation/native-stack";

import { createBottomTabNavigator } from "@react-navigation/bottom-tabs";

2024. 6. 29. 17:23

npm i @react-native-async-storage/async-storage

 

보안이 필요한 데이터는 EncryptedStorage에 저장

 

npm i @react-native-encrypted-storage/storage;

 

import EncryptedStorage from 'react-native-encrypted-storage';

 

await EncryptedStorage.setItem('키', '값');

2024. 6. 25. 07:47

1. Button

2. TouchableOpacity

3. TouchableHighlight

4. TouchableNativeFeedback,

5. TouchableWithoutFeedback,

6. Pressable

2024. 6. 23. 17:17

이제 하다하다 스프링까지 한다

 

https://start.spring.io/

2024. 6. 21. 08:06

android 폴더로 이동해서 

 

다음 명령어를 실행한다

 

gradlew clean

2024. 6. 18. 16:38

2024. 6. 9. 10:29

text-overflow:ellipsis;

overflow: hidden;

white-space: nowrap;

2024. 6. 6. 20:17

module.exports = {

  root: true,

  extends: ['prettier', '@react-native'],

  rules: {

    'import/prefer-default-export': 'off',

    'import/extensions': ['off'],

    'prettier/prettier': 0,

  },

};

2024. 5. 20. 15:22

실행 코드

 

 

결제 결과

 

2024. 5. 16. 16:20

vite.config.js 파일에서 define 항목 추가

 

import { sveltekit } from '@sveltejs/kit/vite';

import { defineConfig } from 'vite';


export default defineConfig({

  plugins: [sveltekit()],

  define: {

    "process.env": {}

  }

});

2024. 5. 16. 11:39

https://datatracker.ietf.org/doc/html/rfc6749#section-4.2

2024. 5. 8. 13:26

전체 영역 스크롤 없애기

 

::-webkit-scrollbar { display: none; }

 

해당 부분 div 스크롤 없애기

 

.leaguebox::-webkit-scrollbar { display: none; }

2024. 5. 7. 15:04

2024. 5. 7. 11:33

React 의 Children 과 같다고 보면 된다