├── .idea ├── .gitignore ├── codeStyles │ └── codeStyleConfig.xml ├── flutter interview questions.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md └── img ├── as.png ├── async.png ├── date.png ├── ephemeral.png ├── exit0.png ├── flex1.png ├── flex2.png ├── getDocuments.png ├── life_cycle.png ├── list.png ├── mainAxisAlignment.png ├── no_null.png ├── pushNamed.png ├── sized.png ├── sized2.png ├── stateful_build.png └── ticker.png /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /../../../../:\Desktop\flutter interview questions\.idea/dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /.idea/flutter interview questions.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Flutter complete interview questions with answers 2 | 3 | this file contains a list of flutter interview questions with answers 4 | 5 | ### note ### 6 | 7 | these questions and answers are collected from different resources on the internet like stackoverflow, medium and other github repositories 8 | 9 | --- 10 | Flutter Questions and Answers 11 | --- 12 | 13 | 1.What is the difference between a `StatelessWidget` and a `StatefulWidget` in Flutter? 14 | 15 | Stateless Widget 16 | A stateless widget can not change their state during the runtime of an app which means it can not redraw its self while the app is running. Stateless widgets are immutable. 17 | 18 | Stateful Widget 19 | A stateful widget can redraw itself multiple times, while the app is running which means its state is mutable. For example, when a button is pressed, the state of the widget is changed 20 | 21 | --- 22 | 23 | 2.Explain the `Stateful Widget Lifecycle`? 24 | 25 | The lifecycle has the following simplified steps: 26 | createState() 27 | mounted == true 28 | initState() 29 | didChangeDependencies() 30 | build() 31 | didUpdateWidget() 32 | setState() 33 | deactivate() 34 | dispose() 35 | mounted == false 36 | 37 | life cycle 38 | 39 | --- 40 | 41 | 3.What is Flutter `tree shaking` (flutter web)? 42 | 43 | When compiling a Flutter web application, the JavaScript bundle is generated by the dart2js compiler. A release build has the highest level of optimization, which includes tree shaking your code. 44 | Tree shaking is the process of eliminating dead code, by only including code that is guaranteed to be executed. This means that you do not need to worry about the size of your app’s included libraries because unused classes or functions are excluded from the compiled JavaScript bundle 45 | 46 | --- 47 | 48 | 4.What is a `Spacer` widget? 49 | 50 | Spacer manages the empty space between the widgets with flex container. Evenly with the Row and Column MainAxis alignment we can manage the space as well 51 | 52 | --- 53 | 54 | 5.What is the difference between `hot restart` and `hot reload`? 55 | 56 | 57 | What is Hot Reload in Flutter: 58 | 59 | Flutter hot reload features works with combination of Small r key on command prompt or Terminal. Hot reload feature quickly compile the newly added code in our file and sent the code to Dart Virtual Machine. After done updating the Code Dart Virtual Machine update the app UI with widgets. Hot Reload takes less time then Hot restart. There is also a draw back in Hot Reload, If you are using States in your application then Hot Reload preservers the States so they will not update on Hot Reload our set to their default values 60 | 61 | 62 | What is Hot Restart in Flutter: 63 | 64 | Hot restart is much different than hot reload. In Hot restart it destroys the preserves State value and set them to their default. So if you are using States value in your application then After every hot restart the developer gets fully compiled application and all the states will set to their defaults. The app widget tree is completely rebuilt with new typed code. Hot Restart takes much higher time than Hot reload 65 | 66 | --- 67 | 68 | 69 | 6.What is an `InheritedWidget`? 70 | 71 | https://www.youtube.com/watch?v=Zbm3hjPjQMk 72 | 73 | --- 74 | 75 | 7.Why is the build() method on State and not StatefulWidget? 76 | 77 | stateful_build 78 | 79 | --- 80 | 81 | 8.What is a `pubspec` file in Dart? 82 | 83 | The pubspec file manages the assets and dependencies for a Flutter app. 84 | 85 | --- 86 | 87 | 9.How is Flutter native? 88 | 89 | Flutter uses only the canvas of the native platform and draws the UI and all the components from scratch. All the UI elements look the same as native ones. This mainly reduces the burden of time for converting through some language to the native one and speeds up the UI rendering time. As a result, the UI performance is remarkably high 90 | 91 | --- 92 | 93 | 10.What is a `Navigator` and what are `Routes` in Flutter? 94 | 95 | Navigation and routing are some of the core concepts of all mobile application, which allows the user to move between different pages. We know that every mobile application contains several screens for displaying different types of information. For example, an app can have a screen that contains various products. When the user taps on that product, immediately it will display detailed information about that product 96 | 97 | --- 98 | 99 | 11.What is a `PageRoute`? 100 | 101 | Allow us to add animation transaction to the route 102 | https://github.com/divyanshub024/Flutter-route-transition 103 | 104 | --- 105 | 106 | 107 | 12.Explain `async`, `await` and `Future`? 108 | 109 | 110 | Async means that this function is asynchronous and you might need to wait a bit to get its result. 111 | Await literally means - wait here until this function is finished and you will get its return value. 112 | Future is a type that ‘comes from the future’ and returns value from your asynchronous function. It can complete with success(.then) or with 113 | an error(.catchError) 114 | 115 | https://www.youtube.com/watch?v=SmTCmDMi4BY 116 | 117 | --- 118 | 119 | 13.how can you update a listview dynamically? 120 | 121 | By using setState to update the listview item source and rebuild the UI 122 | 123 | --- 124 | 125 | 14.What is a `Stream`? 126 | 127 | A stream is like a pipe, you put a value on the one end and if there’s a listener on the other end that listener will receive that value. A Stream can have multiple listeners and all of those listeners will receive the same value when it’s put in the pipeline. The way you put values on a stream is by using a StreamController 128 | 129 | --- 130 | 131 | 15.What are `keys` in Flutter and when should you use it? 132 | 133 | 134 | You don't need to use Keys most of the time, the framework handles it for you and uses them internally to differentiate between widgets. There are a few cases where you may need to use them though. 135 | 136 | A common case is if you need to differentiate between widgets by their keys, ObjectKey and ValueKey can be useful for defining how the widgets are differentiated 137 | 138 | 139 | 140 | Another example is that if you have a child you want to access from a parent, you can make a GlobalKey in the parent and pass it to the child's constructor. Then you can do globalKey.state to get the child's state (say for example in a button press callback). Note that this shouldn't be used excessively as there are often better ways to get around it 141 | 142 | https://www.youtube.com/watch?v=kn0EOS-ZiIc&feature=emb_title 143 | 144 | --- 145 | 146 | 16.What are `GlobalKeys`? 147 | 148 | GlobalKeys have two uses: they allow widgets to change parents anywhere in your app without losing state, or they can be used to access information about another widget in a completely different part of the widget tree. An example of the first scenario might if you wanted to show the same widget on two different screens, but holding all the same state, you’d want to use a GlobalKey 149 | 150 | --- 151 | 152 | 17.When should you use mainAxisAlignment and crossAxisAlignment? 153 | 154 | mainAxisAlignment 155 | 156 | --- 157 | 158 | 18.When can you use `double.INFINITY`? 159 | 160 | When you want the widget to be big as the parent widget allow 161 | 162 | --- 163 | 164 | 19.What is `Ticker`, `Tween` and `AnimationController`? 165 | 166 | ticker 167 | 168 | Animation Sequences 169 | To achieve sequence animation we’ll introduce a new Widget that also helps with reducing animation code called AnimatedBuilder which allows you to rebuild your widget through a builder function every time a new animation value is calculated 170 | 171 | --- 172 | 173 | 20.What is `ephemeral` state? 174 | 175 | ephemeral 176 | 177 | --- 178 | 179 | 21.What is an `AspectRatio` widget used for? 180 | 181 | 182 | AspectRatio Widget tries to find the best size to maintain aspect ration while respecting it’s layout constraints. The AspectRatio Widget can be used to adjust the aspect ratio of widgets in your app 183 | 184 | --- 185 | 186 | 22.How would you access `StatefulWidget` properties from its State? 187 | 188 | Using the widget property 189 | 190 | --- 191 | 192 | 23.Mention two or more operations that would require you to use or turn a `Future` 193 | 194 | 1. Calling api using http 195 | 2. Getting result from geolocator package 196 | 3. With FutureBuilder widget 197 | 198 | --- 199 | 200 | 24.What is the purpose of a `SafeArea`? 201 | 202 | 203 | SafeArea is basically a glorified Padding widget. If you wrap another widget with SafeArea, it adds any necessary padding needed to keep your widget from being blocked by the system status bar, notches, holes, rounded corners and other "creative" features by manufactures 204 | 205 | --- 206 | 207 | 25.When to use a `mainAxisSize`? 208 | 209 | 210 | When you use MainAxisSize on your Column or Row, they will determine the size of the Column or Row along the main axis, i.e, height for Column and width for Row 211 | 212 | https://itnext.io/flutter-mainaxissize-max-vs-min-d9095d8f7914 213 | 214 | --- 215 | 216 | 26.`SizedBox` VS `Container`? 217 | 218 | sized 219 | 220 | sized2 221 | 222 | --- 223 | 224 | 225 | 27.List the `Visibility` widgets in flutter and the differences? 226 | 227 | 1. Visibility 228 | 2. Opacity 229 | 3. Offstage 230 | 231 | https://medium.com/@danle.sdev/widget-hide-and-seek-a-guide-to-managing-flutter-widgets-visibility-d7977cbaf444 232 | 233 | --- 234 | 235 | 28.Can we use `Color` and `Decoration` property simultaneously in the Container? 236 | 237 | No 238 | 239 | The color property is a shorthand for creating a BoxDecoration with a color field. If you are adding a box decoration, simply place the color on the BoxDecoration. 240 | 241 | --- 242 | 243 | 29.Inorder for the `CrossAxisAlignment.baseline` to work what is another property that we need to set? 244 | 245 | crossAxisAlignment: CrossAxisAlignment.baseline 246 | textBaseline: TextBaseline.ideographic, 247 | 248 | --- 249 | 250 | 30.when should we use a `resizeToAvoidBottomInset`? 251 | 252 | 253 | If true the body and the scaffold's floating widgets should size themselves to avoid the onscreen keyboard whose height is defined by the ambient MediaQuery's MediaQueryData.viewInsets bottom property. 254 | 255 | For example, if there is an onscreen keyboard displayed above the scaffold, the body can be resized to avoid overlapping the keyboard, which prevents widgets inside the body from being obscured by the keyboard 256 | 257 | `With resizeToAvoidBottomInset` 258 | https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/316760/7da984e6-ec32-7989-174c-0e104e4c5557.gif 259 | 260 | `without resizeToAvoidBottomInset` 261 | https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/316760/0c933d45-82a2-4401-836c-d1c6f5abc2db.gif 262 | 263 | --- 264 | 265 | 31.What is the difference between `as`,`show` and `hide` in an import statement? 266 | 267 | as 268 | 269 | --- 270 | 271 | 32.What is the importance of a `TextEditingController`? 272 | 273 | Whenever the user modifies a text field with an associated TextEditingController, the text field updates value and the controller notifies its listeners. Listeners can then read the text and selection properties to learn what the user has typed or how the selection has been updated 274 | 275 | --- 276 | 277 | 33.Why do we use a Reverse property in a `Listview`? 278 | 279 | List animals = ['cat', 'dog', 'duck']; 280 | List reversedAnimals = animals.reversed.toList(); 281 | 282 | --- 283 | 284 | 34.Difference between a Modal and Persistent BottomSheet with an example? 285 | 286 | --- 287 | 288 | 35.How is an `Inherited Widget` different from a `Provider`? 289 | 290 | Provider basically takes the logic of InheritedWidgets, but reduce the boilerplate to the strict minimum 291 | 292 | --- 293 | 294 | 36.What is an `UnmodifiableListView`? 295 | 296 | Cannot change the list items by adding or removing 297 | 298 | https://github.com/filiph/state_experiments/issues/5 299 | 300 | --- 301 | 302 | 37.Difference between these operators `??` and `?.` 303 | 304 | `??` 305 | expr1 ?? expr2 306 | If expr1 is non-null, returns its value; otherwise, evaluates and returns the value of expr2. 307 | 308 | 309 | `?.` Like . but the leftmost operand can be null; example: foo?.bar selects property bar from expression foo unless foo is null (in which case the value of foo?.bar is null) 310 | 311 | 312 | https://dart.dev/guides/language/language-tour 313 | 314 | --- 315 | 316 | 38.What is the purpose of `ModalRoute.of()`? 317 | 318 | ModalRoute.of() method. This method returns the current route with the arguments 319 | 320 | 321 | `final args = ModalRoute.of(context).settings.arguments;` 322 | 323 | --- 324 | 325 | 39.Difference between a `Navigator.pushNamed` and `Navigator.pushReplacementNamed`? 326 | 327 | pushNamed 328 | 329 | --- 330 | 331 | 40.Difference between a Single Instance and Scoped Instance ? 332 | 333 | https://codewithandrea.com/articles/2019-06-10-global-access-vs-scoped-access/ 334 | 335 | --- 336 | 337 | 41.Difference between getDocuments() vs snapshots()? 338 | 339 | getDocuments 340 | 341 | --- 342 | 343 | 42.What is a `vsync`? 344 | 345 | Vsync basically keeps the track of screen, so that Flutter does not renders the animation when the screen is not being displayed 346 | 347 | --- 348 | 349 | 43.When does the animation reach `completed` or `dismissed` status? 350 | 351 | animations that progress from 0.0 to 1.0 will be dismissed when their value is 0.0. An animation might then run forward (from 0.0 to 1.0) or perhaps in reverse (from 1.0 to 0.0). Eventually, if the animation reaches the end of its range (1.0), the animation reaches the completed status. 352 | 353 | --- 354 | 355 | 44.Difference between `AnimationController` and `Animation`? 356 | 357 | AnimationController is for how long the animation would be and how to control from time, upper and lower boundary, how to control data with time, length, sequence, etc. while AnimationTween is for the range of animation with time, colour, range, sequence, etc as long the animation would be while 358 | 359 | --- 360 | 361 | 45.When to use a SingleTickerProviderStateMixin and TickerProviderStateMixin? 362 | 363 | --- 364 | 365 | 46.Define a `TweenAnimation` ? 366 | 367 | Short for in-betweening. In a tween animation, the beginning and ending points are defined, as well as a timeline, and a curve that defines the timing and speed of the transition. The framework calculates how to transition from the beginning point to the end point 368 | 369 | --- 370 | 371 | 47.State the importance of a `Ticker` ? 372 | 373 | Ticker is the refresh rate of our animations. This is what we want to pause when our clock is hidden. 374 | 375 | A bonus for using Ticker is that this allows the dev-tool to “slow” our animation. 376 | If we use “Slow animations”, then our clock is slowed by 50%. This is a good sign, as it means it will be a lot easier to test our clock! 377 | 378 | --- 379 | 380 | 381 | 48.Why do we need a `mixins` ? 382 | 383 | Mixins are very helpful when we want to share a behavior across multiple classes that don’t share the same class hierarchy, or when it doesn’t make sense to implement such a behavior in a superclass 384 | 385 | --- 386 | 387 | 49.When do you use the `WidgetsBindingObserver`? 388 | 389 | To check when the system puts the app in the background or returns the app to the foreground 390 | 391 | --- 392 | 393 | 50.Why does the `first` flutter app take a very long developing time? 394 | 395 | When you are going to build the Flutter app for the first time, it takes a very long time than usual because Flutter builds a device-specific IPA or APK file. In this process, the Xcode and Gradle are used to build a file, which usually takes a long time 396 | 397 | --- 398 | 399 | 51.Define what is an `App State`? 400 | 401 | 402 | The App State is also called an application state or shared state. The app state can be distributed across multiple areas of your app and the same is maintained with user sessions. 403 | 404 | Following are the examples of App State: 405 | 406 | Login info 407 | User preferences 408 | The shopping cart of an e-commerce application 409 | 410 | --- 411 | 412 | 52.What are the two types of `Streams` available in Flutter? 413 | 414 | 415 | Single subscription streams: 416 | 417 | It is a popular and common type of stream. 418 | It consists of a series of events that are parts of a large whole. Here all events have to be delivered in a defined order without even missing a single event. 419 | It is a type of stream that you get when you get a web request or receive a file. 420 | This stream can only be listed once. Listing it, again and again, means missing initial values and overall stream makes no sense at all. 421 | When the listing starts in this stream the data gets fetched and provided in chunks. 422 | 423 | 424 | Broadcast streams: 425 | 426 | This stream is meant for the individual messages that can be handled one at a time. These types of streams are commonly used for mouse events in a browser. 427 | You can list this type of stream at any time. 428 | Multiple listeners can listen at a time and also you have a chance to listen after the cancellation of the previous subscription 429 | 430 | --- 431 | 432 | 53.What do you know about Dart `Isolates`? 433 | 434 | To gain concurrency Dart makes use of the Isolates method which works on its own without sharing memory but uses passing or message communication. 435 | 436 | --- 437 | 438 | 54.What is a `Flutter inspector`? 439 | 440 | Flutter inspector is a tool that helps in visualizing and exploring the widget trees. It helps in understanding the present layout and diagnoses various layout issues 441 | 442 | --- 443 | 444 | 55.`Stream` vs `Future`? 445 | 446 | The difference is that Futures are about one-shot request/response (I ask, there is a delay, I get a notification that my Future is ready to collect, and I'm done!) whereas Streams are a continuous series of responses to a single request (I ask, there is a delay, then I keep getting responses until the stream dries up or I decide to close it and walk away) 447 | 448 | --- 449 | 450 | 56.How to compare two dates that are constructed differently in Dart? 451 | 452 | date 453 | 454 | --- 455 | 456 | 57.What's the difference between `async` and `async*` in Dart? 457 | 458 | async 459 | 460 | --- 461 | 462 | 58.`Debug` vs `Profile` mode? 463 | 464 | In debug mode, the app is set up for debugging on the physical device, emulator, or simulator. 465 | 466 | Debug 467 | 468 | Assertions are enabled. 469 | Service extensions are enabled. 470 | Compilation is optimized for fast development and run cycles (but not for execution speed, binary size, or deployment). 471 | Debugging is enabled, and tools supporting source level debugging (such as DevTools) can connect to the process. 472 | 473 | 474 | Profile 475 | In profile mode, some debugging ability is maintained—enough to profile your app’s performance. Profile mode is disabled on the emulator and simulator, because their behavior is not representative of real performance. On mobile, profile mode is similar to release mode, with the following differences: 476 | 477 | Some service extensions, such as the one that enables the performance overlay, are enabled. 478 | Tracing is enabled, and tools supporting source-level debugging (such as DevTools) can connect to the process. 479 | 480 | 481 | --- 482 | 483 | 59.How to convert a `List` into a `Map` in Dart? 484 | 485 | list 486 | 487 | 488 | --- 489 | 490 | 60.What does `non-nullable` by default mean? 491 | 492 | no_null 493 | 494 | --- 495 | 496 | 61.`Expanded` vs `Flexible`? 497 | 498 | flex1 499 | 500 | flex2 501 | 502 | 503 | --- 504 | 505 | 62.Why is `exit(0)` not preferred for closing an app? 506 | 507 | exit0 508 | 509 | --- 510 | 511 | 63.What is the difference between `main` function and the `runApp()` function in Flutter? 512 | 513 | In Dart, main() acts as the entry point for the program whereas runApp() attaches the given widget to the screen. 514 | 515 | 516 | --- 517 | 518 | 64.What is `Dart` and why does Flutter use it? 519 | 520 | 521 | Dart is AOT (Ahead Of Time) compiled to fast, predictable, native code, which allows almost all of Flutter to be written in Dart. This not only makes Flutter fast, virtually everything (including all the widgets) can be customized. 522 | 523 | Dart can also be JIT (Just In Time) compiled for exceptionally fast development cycles and game-changing workflow (including Flutter’s popular sub-second stateful hot reload). 524 | 525 | Dart makes it easier to create smooth animations and transitions that run at 60fps. Dart can do object allocation and garbage collection without locks. And like JavaScript, Dart avoids preemptive scheduling and shared memory (and thus locks). Because Flutter apps are compiled to native code, they do not require a slow bridge between realms (e.g., JavaScript to native). They also start up much faster. 526 | 527 | Dart allows Flutter to avoid the need for a separate declarative layout language like JSX or XML, or separate visual interface builders, because Dart’s declarative, programmatic layout is easy to read and visualize. And with all the layout in one language and in one place, it is easy for Flutter to provide advanced tooling that makes layout a snap. 528 | 529 | Developers have found that Dart is particularly easy to learn because it has features that are familiar to users of both static and dynamic languages 530 | 531 | --- 532 | 533 | 65.Where are the `layout` files? Why doesn’t Flutter have layout files? 534 | 535 | In the Android framework, we separate an activity into layout and code. Because of this, we need to get references to views to work on them in Java. (Of course Kotlin lets you avoid that.) The layout file itself would be written in XML and consist of Views and ViewGroups. 536 | 537 | Flutter uses a completely new approach where instead of Views, you use widgets. A View in Android was mostly an element of the layout, but in Flutter, a Widget is pretty much everything. Everything from a button to a layout structure is a widget. The advantage here is in customisability. Imagine a button in Android. It has attributes like text which lets you add text to the button. But a button in Flutter does not take a title as a string, but another widget. Meaning inside a button you can have text, an image, an icon and pretty much anything you can imagine without breaking layout constraints. This also lets you make customised widgets pretty easily whereas in Android making customised views is a rather difficult thing to do 538 | 539 | --- 540 | 541 | 66.What is the difference between `final` and `const` in Flutter? 542 | 543 | `final` means single-assignment: A final variable or field must have an initializer. Once assigned a value, a final variable's value cannot be changed. final modifies variables. 544 | 545 | `const` has a meaning that's a bit more complex and subtle in Dart. const modifies values. You can use it when creating collections, like const [1, 2, 3], and when constructing objects (instead of new) like const Point(2, 3). Here, const means that the object's entire deep state can be determined entirely at compile time and that the object will be frozen and completely immutable. 546 | 547 | Const objects have a couple of interesting properties and restrictions: 548 | 549 | They must be created from data that can be calculated at compile time. A const object does not have access to anything you would need to calculate at runtime. 1 + 2 is a valid const expression, but new DateTime.now() is not. 550 | 551 | They are deeply, transitively immutable. If you have a final field containing a collection, that collection can still be mutable. If you have a const collection, everything in it must also be const, recursively. 552 | 553 | They are canonicalized. This is sort of like string interning: for any given const value, a single const object will be created and re-used no matter how many times the const expression(s) are evaluated. 554 | 555 | https://news.dartlang.org/2012/06/const-static-final-oh-my.html 556 | -------------------------------------------------------------------------------- /img/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/power19942/flutter-interview-questions/71dcaa4cc2ad302355532ae4a2d9fb6172c2d438/img/as.png -------------------------------------------------------------------------------- /img/async.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/power19942/flutter-interview-questions/71dcaa4cc2ad302355532ae4a2d9fb6172c2d438/img/async.png -------------------------------------------------------------------------------- /img/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/power19942/flutter-interview-questions/71dcaa4cc2ad302355532ae4a2d9fb6172c2d438/img/date.png -------------------------------------------------------------------------------- /img/ephemeral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/power19942/flutter-interview-questions/71dcaa4cc2ad302355532ae4a2d9fb6172c2d438/img/ephemeral.png -------------------------------------------------------------------------------- /img/exit0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/power19942/flutter-interview-questions/71dcaa4cc2ad302355532ae4a2d9fb6172c2d438/img/exit0.png -------------------------------------------------------------------------------- /img/flex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/power19942/flutter-interview-questions/71dcaa4cc2ad302355532ae4a2d9fb6172c2d438/img/flex1.png -------------------------------------------------------------------------------- /img/flex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/power19942/flutter-interview-questions/71dcaa4cc2ad302355532ae4a2d9fb6172c2d438/img/flex2.png -------------------------------------------------------------------------------- /img/getDocuments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/power19942/flutter-interview-questions/71dcaa4cc2ad302355532ae4a2d9fb6172c2d438/img/getDocuments.png -------------------------------------------------------------------------------- /img/life_cycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/power19942/flutter-interview-questions/71dcaa4cc2ad302355532ae4a2d9fb6172c2d438/img/life_cycle.png -------------------------------------------------------------------------------- /img/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/power19942/flutter-interview-questions/71dcaa4cc2ad302355532ae4a2d9fb6172c2d438/img/list.png -------------------------------------------------------------------------------- /img/mainAxisAlignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/power19942/flutter-interview-questions/71dcaa4cc2ad302355532ae4a2d9fb6172c2d438/img/mainAxisAlignment.png -------------------------------------------------------------------------------- /img/no_null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/power19942/flutter-interview-questions/71dcaa4cc2ad302355532ae4a2d9fb6172c2d438/img/no_null.png -------------------------------------------------------------------------------- /img/pushNamed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/power19942/flutter-interview-questions/71dcaa4cc2ad302355532ae4a2d9fb6172c2d438/img/pushNamed.png -------------------------------------------------------------------------------- /img/sized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/power19942/flutter-interview-questions/71dcaa4cc2ad302355532ae4a2d9fb6172c2d438/img/sized.png -------------------------------------------------------------------------------- /img/sized2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/power19942/flutter-interview-questions/71dcaa4cc2ad302355532ae4a2d9fb6172c2d438/img/sized2.png -------------------------------------------------------------------------------- /img/stateful_build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/power19942/flutter-interview-questions/71dcaa4cc2ad302355532ae4a2d9fb6172c2d438/img/stateful_build.png -------------------------------------------------------------------------------- /img/ticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/power19942/flutter-interview-questions/71dcaa4cc2ad302355532ae4a2d9fb6172c2d438/img/ticker.png --------------------------------------------------------------------------------