💢Flutter App to run Linux Commands💢

🔰What is Flutter ?
Flutter is an open-source UI software development kit created by Google. It is used to develop cross platform applications for Android, iOS, Linux, Mac, Windows, Google Fuchsia, and the web from a single codebase.
📌I have created a flutter app that will run Linux commands :
So let’s begin!
Step 1. Create a Flutter app.
flutter create my_app
cd my_app
Step 2. Install Linux
Step 3. Install Python and Apache server on it.
Step 4. Write a Python script to execute Linux commands.
cd /var/www/cgi-bin
vim app.py

Step 5. Make the file executable.
chmod +x app.py
Step 6. Disable selinux and firewalld with following cmd:
setenforce 0
systemctl stop firewalld
Step 7. Code for flutter.



Step 8 . Now , let’s see some demo of my_app
As i don’t have enough RAM for launching Emulator(Android Studio). That’s why i am using chrome here …

