검색결과 리스트
2025/05 에 해당되는 글 7건
- 2025.05.23 code igniter DB 설정
- 2025.05.21 Code igniter 디폴트 라우터 1
- 2025.05.18 header option을 추가하는 방법
- 2025.05.18 Font 적용
- 2025.05.18 Axios Create 객체 생성
- 2025.05.08 PHP Code Igniter param id 1
- 2025.05.02 pydantic 버전
2025. 5. 23. 12:21
2025. 5. 21. 22:44
config - routes.php -
$route[default_controller] = 'welcome';
이렇게 설정하면
controllers 폴더에서 Welcome.php 의 Welcome 클래스의
public function index() {
$this->load->view('welcome_message');
}
함수 내에 welcome_message 를 연결하는데 이는
views 폴더 안에서 welcome_message.php 파일을 보여준다
몇 번을 거쳐서 들어가야 하나?
2025. 5. 18. 17:23
1. react-navigation 태그에 options로 추가
const options = { headerShown: false };
<Stack.Screen name="Splash" component={SplashScreen} options={options}/>
2. 자체 스크린에서 옵션으로 추가
const SplashScreen = ({navigation}) => {
useLayoutEffect(() => { navigation.setOptions({ headerShown: false })});
2025. 5. 18. 16:59
0. /assets/fonts 에 .ttf 파일 복사
1. npx react-native-assets
2. react-native.config.js 파일 생성 후 다음 작성
module.exports = {
project: {
ios: {},
android: {}
},
assets: ['./assets/fonts/']
}
3. jsconfig.json 에 다음 작성
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*":["*"]
}
}
}
2025. 5. 18. 15:31
2025. 5. 8. 10:25
2025. 5. 2. 21:24