Lesson 2: Types of Mobile Apps

Mobile applications are grouped into different types based on how they are built and how they run on devices.

1. Native Mobile Apps

2. Web Apps

3. Cross-Platform Apps (Flutter)

Flutter Example Code


import 'package:flutter/material.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text('Types of Mobile Apps'),
        ),
        body: Center(
          child: Text('Flutter is Cross-Platform'),
        ),
      ),
    );
  }
}
    
Previous Next Lesson