From 4c071c7f700c7557285ff76672989ca624ae8f8f Mon Sep 17 00:00:00 2001 From: Ishikagarg-ig Date: Fri, 2 Oct 2020 19:43:02 +0700 Subject: [PATCH 1/2] Add some question/answer --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index eddaa5a..093c301 100644 --- a/README.md +++ b/README.md @@ -142,6 +142,14 @@ You are requested to create your profile using the above link to be a part of it * Whenever possible, use the `const` constructor, because this will tell Flutter that it doesn't need to rebuild the widget. * Keep the subtree of a stateful widget as small as possible. If a stateful widget needs to have a widget subtree under it, create a custom widget for the stateful widget and give it a `child` parameter. +21. Explain Hot Reload in Flutter? + + The hot reload feature allows you to quickly and easily perform an experiment in the project. It helps to build UI, add new features, fix bugs, and make app development fast. To perform hot reloading of a Flutter app, do the following steps: + + * Run the app in a supported Flutter editor or terminal window. + * Modify any of the Dart files in the project. + * If you use an IDE that supports Flutter, then select Save All or click the Hot Reload button on the toolbar. Immediately, you can see the result in your emulator or real device. + ## Contributors From 85afb4bb6656c3effaab72c5766d98b56482f929 Mon Sep 17 00:00:00 2001 From: Ishikagarg-ig Date: Sat, 3 Oct 2020 21:57:49 +0700 Subject: [PATCH 2/2] Add some question/answer --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 093c301..444bc68 100644 --- a/README.md +++ b/README.md @@ -142,13 +142,12 @@ You are requested to create your profile using the above link to be a part of it * Whenever possible, use the `const` constructor, because this will tell Flutter that it doesn't need to rebuild the widget. * Keep the subtree of a stateful widget as small as possible. If a stateful widget needs to have a widget subtree under it, create a custom widget for the stateful widget and give it a `child` parameter. -21. Explain Hot Reload in Flutter? +21. Name the popular database package used in the Flutter? - The hot reload feature allows you to quickly and easily perform an experiment in the project. It helps to build UI, add new features, fix bugs, and make app development fast. To perform hot reloading of a Flutter app, do the following steps: + The most used and popular database packages used in the Flutter are as follows: - * Run the app in a supported Flutter editor or terminal window. - * Modify any of the Dart files in the project. - * If you use an IDE that supports Flutter, then select Save All or click the Hot Reload button on the toolbar. Immediately, you can see the result in your emulator or real device. + * sqflite database: It allows to access and manipulate SQLite database. + * Firebase database: It will enable you to access and manipulate the cloud database. ## Contributors