Material Design 参考

Elevation

(海拔)

Component elevation values(组件高度值):

Compont Elevation
Nav drawer 16dp
App bar 4dp
Card 6dp
FAB 6dp
Button 2dp to 8dp
Dialog 24dp
阅读更多

Git 常用命令

初始化

  • 首次安装后设置名字和 email 地址。
1
2
3
git config --global user.name "YourName"

git config --global user.email "email@example.com"
  • 创建 ssh Key。
1
ssh-keygen -t rsa -C "email@example.com"
  • 进入目录并初始化为 git 仓库。
1
git init
阅读更多