Flutter Online Test

TestDome skill assessments are used by more than 8,000 companies and 880,000 test takers.

For Jobseekers

Practice your skills and earn a certificate of achievement when you score in the top 25%.

Take a Practice Test

For Companies

Test candidates with real-world problems and interview the best ones.

Sign Up to Offer this Test

About the test

The Flutter online test assesses knowledge of key concepts used to build UIs with Flutter, through a series of multiple-choice and fill-in-the-blank questions.

The assessment includes work-sample tasks such as:

  • Managing and configuring widgets.
  • Navigating between routes.
  • Using conditional rendering to dynamically show/hide UI elements.

A good Flutter developer should be able to work with the Flutter framework to build high performance and user-friendly interfaces.

Sample public questions

Easy
5 min
mca
Public
Flutter
Layout
Widgets

You are making a Flutter widget to display a popup ad in your app.

The popup ad has 3 sections - title, main, and footer.

Below is the code of the widget:

Column(
    crossAxisAlignment: CrossAxisAlignment.center,
    mainAxisAlignment: MainAxisAlignment.spaceBetween,
    children: <Widget>[
      Expanded(
        flex: 2,
        child: Container(
          margin: EdgeInsets.symmetric(vertical: 5),
          width: double.infinity,
          child: Center(child: Text("Title content"))),
      ),
      Expanded(
        flex: 4,
        child: Container(
          width: double.infinity,
          child: Center(child: Text("Main content"))),
      ),
      Expanded(
        flex: 1,
        child: Container(
          width: double.infinity,
          child: Text("Footer content"))
      ),
    ]);

What can we conclude about the layout of the above widget? 

Easy
5 min
mca
Public
Flutter
Null Safety

Consider the following code for a PatientNameDisplay widget in a hospital app made with Flutter:

class PatientNameDisplay extends StatefulWidget {
  final String patientName;
  final bool isAlive;
  PatientNameDisplay({this.patientName, this.isAlive});

  @override
  State<PatientNameDisplay> createState() => _PatientNameDisplayState();
}

class _PatientNameDisplayState extends State<PatientNameDisplay> {
  @override
  Widget build(BuildContext context) {
    return Text(
      (widget.patientName ?? "John Doe"),
      style: TextStyle(color: widget.isAlive ? Colors.blue : Colors.red),
    );
  }
}

The PatientNameDisplay widget defined above is used to display a patient's name. It has the following requirements:

  • The widget might receive patientName as null in the case of anonymous patients.
  • The widget will always receive the patient's status in the isAlive field.

Considering the requirements and the code above, what needs to be done to migrate the code to have sound null safety?

For jobseekers: get certified

Earn a free certificate by achieving top 25% on the Flutter test with public questions.

Take a Certification Test

Sample silver certificate

Sunshine Caprio

Java and SQL
TestDome
Certificate
TestDome logo icon

For companies: premium questions

Buy TestDome to access premium questions that can't be practiced.
Get money back if you find any premium question answered online.

Sign Up to Offer this Test

5 more premium Flutter questions

Product Details, Social Media Data, Diary App, Student Search, Files Screen.

Skills and topics tested

  • Flutter
  • Conditional Rendering
  • Widgets
  • Async-Await
  • Asynchronous Programming
  • Layout
  • Navigation

For job roles

  • Flutter Developer
  • Mobile Developer

Sample candidate report

What others say

Decorative quote

Simple, straight-forward technical testing

TestDome is simple, provides a reasonable (though not extensive) battery of tests to choose from, and doesn't take the candidate an inordinate amount of time. It also simulates working pressure with the time limits.

Jan Opperman, Grindrod Bank

Product reviews

G2 - Crowd Badge
G2 - High Performer (2022)
Capterra - 4.5 Stars
Capterra - Shortlist (2022)

Used by

Solve all your skill testing needs

150+ Pre-made tests

From web development and database administration to project management and customer support. See all pre-made tests.

90+ skills

From JavaScript and SQL to English and customer support. See all questions to filter by skill.

Multi-skills Test

Mix questions for different skills or even custom questions in one test. See an example.

How TestDome works

1

Choose a pre-made test
or create a custom test

2

Invite candidates via
email, URL, or your ATS

3

Candidates take
a test remotely

4

Sort candidates and
get individual reports

Want to know more?