https://docs.flutter.dev/development/ui/navigation
[Flutter] Layouts
https://docs.flutter.dev/development/ui/layout Flutter의 layout의 메커니즘은 widgets images, icon 이런게 모두 widget widget catalog https://docs.flutter.dev/development/ui/widgets standard widgets ...
[Flutter] Creating adaptive and responsive apps
Responsive Typically, a responsive app has had its layout tuned for the available screen size. Often this means (for example), re-laying out the UI if the user resizes the window, or changes the d...
Flutter 시작
native app을 만들때 2022년에는 react native보다 flutter가 더 많이 사욯안다는 말을 어디서 얼핏 봐서 react native 프로젝트만 만들었는데 flutter로 변경해보기로.. 매번 이렇게 처음 시작만 해보는것 같지만! Flutter 설치 https://docs.flutter.dev/get-started/install/...
[Flutter] Basic
https://docs.flutter.dev/development/ui/widgets-intro runApp() 함수가 시작 Widget (Text ,Row, Column, Stack, Container 등) StatelessWidget or StatefulWidget (state에 따라) build() 함수가...
FastAPI에서 RedisCache 사용 방법 w docker-compose
# redis-server.yml redis: image: redis:alpine restart: always command: redis-server --port 6379 container_name: redis volumes: - ./data/redis/data:/data - ./data/...
[MacOS] tmux
brew install tmux /opt/homebrew/opt/tmux/share/tmux cp /opt/homebrew/opt/tmux/share/tmux/example_tmux.conf ~/.tmux.conf tmux new -s <session_name> tmux attach -t <session_name> tmux ls
[M1] /lib64/ld-linux-x86-64.so.2: No such file or directory
docker run --platform linux/x86_64 <image> ARG BASE_IMAGE=python:3.8-slim-buster FROM --platform=linux/amd64 $BASE_IMAGE 위와 같이 --platform=linux/amd64 flag를 추가하면 된다. Reference https:...
[FastAPI] Dockerize
프로젝트 구조 app/main.py Dockerfile docker-compose.yml Dockerfile # Dockerfile # pull the official docker image FROM python:3.9.4-slim # set work directory WORKDIR /app # set env variables # Prev...
Nginx Docker에 띄우기 (+HTTPS)
Nginx with Docker docker run \ --rm \ --name nginx \ -v ~/nginx/nginx.conf:/etc/nginx/nginx.conf:ro \ -p 8080:80 \ nginx # -d docker run -d -p 80:80 --read-only -v $(pwd)/ngin...