devquiz

Projeto devquiz do NLW5 sobre Flutter

✅ 提示

在VScode中,您可以这样查看小部件的子项

image

为此,请进入vscode的设置并勾选选项previewFlutterUiGuides

image

同时,更改缩进线的颜色

vscode默认的Dark+主题

"workbench.colorCustomizations": {
        "editorIndentGuide.activeBackground": "#1e1e1e",
        "editorIndentGuide.background": "#1e1e1e",
     },

Dracula Soft主题

    "workbench.colorCustomizations": {
        "editorIndentGuide.activeBackground": "#282a36",
        "editorIndentGuide.background": "#282a36",
     },

✅ 安装

必需

  • Flutter 2.0.5或更高版本
  • Visual Studio Code或Android Studio
  • Git
  • ❌ 无需安装Android SDK或AVD。从Flutter 2.0.5开始,有"Chrome"或"Edge"版本

安装

$ git clone https://github.com/danielschmitz/devquiz.git
cd devquiz
code . 

打开Visual Studio Code后,按F5编译并运行项目。

尽情享用吧!

GitHub

https://github.com/danielschmitz/devquiz