Kayıtlar

Aralık, 2022 tarihine ait yayınlar gösteriliyor

Welcome to Flutter -1

Resim
This lesson is introduction of Flutter language lesson series. First of all, you have to download flutter setup in order to prepare the environment. https://docs.flutter.dev/get-started/install/macos So, download flutter and follow instructions. As you realize, flutter does have quite detailed version control command. After running flutter doctor -v controls your environment and creates a detailed report.                                            Let's check simple Flutter commands; Let's take a quick look to most common commands. create -> creates a new project for ios,android and web. pub -> two parameters ; "get" downloads packages and "test" download test packages. build -> working with parameters "apk", "ios", "web".  you can also build desktop app. For instance "macos" for apple.  Now, let's install visual studio code as the IDE and ...