- Log-in/Sign-up
- Forget Password (via SMTP Server)
- Dashboard
- Add New Notes
- Settings
- Dark Mode
- Flutter. UI design
- PHP (CodeIgniter Framework). CRUD operations with API JSON
All the back-end/API code is developed in PHP, which is commited on folder codeigniter-api
. Open the folder and publish to your shared hosting and connect your domain to dart application in config.dart
file. You can replace the host name with your host name where you published your CodeIgniter application.
- Download latest CodeIgniter application from https://codeigniter.com/download.
- Extract the zip file.
- Copy the
app
folder from here (repository), paste to the extracted folder and replace all the files. - Deploy to hosting. Database file is also available in
app/controllers
folder. Import to hosting, then enjoy coding!
(Tutorial) How Deploy CodeIgniter 4 to Shared Hosting : https://www.youtube.com/watch?v=k943H5OiIdE
- Open VS Code.
- Go to File.
- Select Open Workspace..
- Select project and open it.
- Enjoy coding!!!
(Tutorial) Flutter Setup in Visual Studio Code & Running first Flutter app in Android Device : https://www.youtube.com/watch?v=WepTtmHKcoI
An API Parameter will be passed in CodeIgniter/PHP application from Flutter.
name | description | parameter | request type |
---|---|---|---|
/addUser | Create new user | name email password |
POST |
/login | Authorize user | email password |
POST |
/reset | Forget user account | email |
POST |
/createNote | Create new note | user_id heading note |
POST |
/getNotes | Get all notes by user | id |
GET |
/getuser | Get user information | id |
GET |
/updateUser | Update user information | id name email |
POST |
/updatePass | Update user | id cpassword password |
POST |
Here is the simple workflow of how the application works:
This application is developed by Rohit Chouhan ❤️
Create an issue and pull request if you find any problem. Thank you!
Last updated: 2024-12-23 18:00:44