Flutter-Interview-Questions
Flutter-Interview-Questions copied to clipboard
This repo contains a list of helpful Flutter related questions you can use to interview potential candidates.
Added more questions
[Effective Dart: Style](https://dart.dev/guides/language/effective-dart/style#prefer-using-lowercamelcase-for-constant-names) [Linter rule](https://dart-lang.github.io/linter/lints/constant_identifier_names.html) In new code, use lowerCamelCase for constant variables, including enum values. In existing code that uses ALL_CAPS_WITH_UNDERSCORES for constants, you may continue to use all...
Answers?
Maybe someone could answer those questions :) This could become the best flutter interview preparation source.
Added two new questions pertaining to `Futures` in Source.md
[class Internal extends StatefulWidget{ @override _InternalState createState()=>_InternalState(); } class _InternalState extends State { bool isSearching=false; Photo(int number,){ return Scaffold( backgroundColor: Color(0XFFfffafa), body: SafeArea( child: SingleChildScrollView( child: Container( child: Stack( children:...
import 'dart:io'; import 'package:dio/dio.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:flutter_app_retrofit/example.dart'; class Homepage extends StatefulWidget { @override HomepageState createState() => HomepageState(); } class _HomepageState extends State { @override Widget build(BuildContext context)...
Hey @whatsupcoders I was wondering if we can categorize the questions based on the developer level. From my experience, not all questions are made for Junior developers. However, this is...