Flutter is one of the fastest-growing Open Source frameworks to design apps.
But why is Flutter is so Popular with 134k ⭐️ on Github
🧵
🔹Best Documentation:- Documentation is one of the crucial parts of our learning journey of learning any new technology or Framework
When you are learning flutter you'll get one of the best and well-explained documentation ever written for a framework flutter.dev/docs
🔹Multi-platform Support: With Flutter, you can make apps for 7 different platforms with a single codebase.
This means just write code once and it will be running on 7 platforms i.e. android, iOS, web, Windows, macOS, Linux, and embedded devices.
🔹Easy to learn: Flutter is easier to learn and use.
Flutter uses widgets, which makes the UI easy to use. All features that you need to build an app are provided as widgets mainly
This gives developers complete control over apps while making the process of development easy.
🔹Faster Development: Flutter with its hot reloading feature helps to develop apps faster
With each new version, Flutter comes out with new widgets that already have a built-in design that can be configured according to your wishes, so non Designer can make really cool apps too
🔹Community Support: Flutter is backed by tech giant Google which constantly organizes many Events to help Flutter Developers in their Development Journey and tries their best to create a positive atmosphere for developers to learn flutter with Ease.
Are you are switching into the field of Programming, Designing or Startups in 2022?
Then, I have curated some really crucial tools for you which you didn’t know exists
Thank you for Reading
I am Vinay, a developer from India, sharing some of the knowledge I gain in my daily life as a programmer and as a Human being
If you like this post, Make sure to
✅Like this post
✅Retweet it
✅ Follow @Vinaystwt for more such content
If you don’t want to miss your weekly parcel of learning, then don’t forget to subscribe to the "Insane Learner" newsletter getrevue.co/profile/vinays…
• • •
Missing some Tweet in this thread? You can try to
force a refresh
30+ VS Code Shortcuts to Increase your productivity
A Thread🧵
🔹Search Text Through All Files at Once: Ctrl+Shift+F
🔹Zen Mode(Distraction-free view): Ctrl+K Z
🔹Access Command Palette: Ctrl+Shift+P
🔹Trigger Suggestions: Ctrl+Space,Ctrl+I
🔹Trigger Parameter hints: Ctrl+Space+Shift
🔹Delete Previous Word: Ctrl+Backspace
🔹Show list of themes: Ctrl+K Ctrl+T
🔹Toggle Zen Mode: Ctrl K Z
🔹Select current line in the cursor: Ctrl+L
🔹Select text word by word: Ctrl+Shift+Left/Right Arrow
Basic of JavaScript Object Notation(JSON) and Flutter
A Thread🧵
JavaScript Object Notation or JSON is an open-standard file format that uses human-readable text to transmit data objects consisting of attributes- value pairs and array data types
In simple language, JSON is simply a format in which you can transfer the data from client to server and server to client
🔹pwd
Used to find out the path of the current working directory (folder) you’re in.
The command will return an absolute (full) path, which is basically a path of all the directories that starts with a forward slash (/).
An example of an absolute path is /home/username.
🔹cd
Used to change your current directory
for example:- cd workspace
There are some shortcuts to help you navigate quickly:
-> cd .. to move one directory up
-> cd to go straight to the home folder
-> cd- to move to your previous directory