0
0
Fluttermobile~20 mins

First Flutter app (Hello World) - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Flutter Hello World Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
ui_behavior
intermediate
2:00remaining
What will this Flutter app display?
Look at this Flutter code. What text will appear in the center of the screen when you run this app?
Flutter
import 'package:flutter/material.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: Scaffold(
        body: Center(
          child: Text('Hello Flutter!'),
        ),
      ),
    );
  }
}
AHello Flutter!
BHello World!
CMaterialApp
DCenter
Attempts:
2 left
💡 Hint
Look at the Text widget inside Center. It shows the exact string displayed.
📝 Syntax
intermediate
2:00remaining
Which option fixes the syntax error in this Flutter code?
This Flutter code has a syntax error. Which option fixes it so the app runs and shows 'Hello World!'?
Flutter
import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Center(
          child: Text('Hello World!'),
          widthFactor: 2.0,
        ),
      ),
    );
  }
}
AAdd a semicolon after class MyApp extends StatelessWidget
BRemove the parentheses after runApp
CChange StatelessWidget to StatefulWidget
DAdd a comma after Text('Hello World!')
Attempts:
2 left
💡 Hint
Check commas after widgets inside widget trees.
lifecycle
advanced
2:00remaining
What happens if you replace StatelessWidget with StatefulWidget in this app?
If you change MyApp to extend StatefulWidget but keep the same build method, what will happen when you run the app?
Flutter
import 'package:flutter/material.dart';

void main() => runApp(const MyApp());

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: Scaffold(
        body: Center(
          child: Text('Hello World!'),
        ),
      ),
    );
  }
}
AThe app crashes because StatefulWidget needs initState method
BThe app shows a blank screen
CThe app runs normally and shows 'Hello World!'
DThe app shows an error about missing build method
Attempts:
2 left
💡 Hint
StatefulWidget requires a State class with build method.
navigation
advanced
2:00remaining
What happens when you add Navigator.push to this Flutter app?
This app has a button that pushes a new screen. What will the user see after tapping the button?
Flutter
import 'package:flutter/material.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Center(
          child: ElevatedButton(
            child: const Text('Go'),
            onPressed: () {
              Navigator.push(
                context,
                MaterialPageRoute(builder: (context) => const SecondScreen()),
              );
            },
          ),
        ),
      ),
    );
  }
}

class SecondScreen extends StatelessWidget {
  const SecondScreen({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: Text('Second Screen'),
      ),
    );
  }
}
ANothing happens when the button is tapped
BThe app navigates to a new screen showing 'Second Screen'
CThe app closes when the button is tapped
DThe app shows an error about Navigator
Attempts:
2 left
💡 Hint
Navigator.push adds a new screen on top of the current one.
🔧 Debug
expert
2:00remaining
Why does this Flutter app throw a runtime error?
This Flutter app throws an error when run. What is the cause?
Flutter
import 'package:flutter/material.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Center(
          child: Text('Hello World!'),
        ),
      ),
    );
  }
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Container();
  }
}
AThere are two classes named MyApp causing a duplicate class error
BThe Text widget is missing a required style parameter
CMaterialApp cannot be used inside a StatelessWidget
DScaffold requires an AppBar widget to run
Attempts:
2 left
💡 Hint
Check if any class names are repeated in the code.