모바일 메뉴와 로고, 즉 헤더가 스크롤해도 화면에 fixed하도록 다음과 같이 구현해봤다.
예시코드
// App.jsx
import "./styles.css";
export default function App() {
return (
<div className="App">
<div className="testOne">
<h1>모바일 메뉴와 로고</h1>
</div>
<h2 className="testTwo">
모바일 웹 콘텐츠들,...
</h2>
</div>
);
}
//./styles.css
.App {
font-family: sans-serif;
text-align: center;
}
.testOne {
background-color: red;
width: 100vw;
position: fixed;
top: 0;
}
.testTwo {
margin-top: 30vh;
}
apk build in react native doesn't install로 검색해서 얻은 자료
https://changwoos.tistory.com/593