blob: 64f948b5b6ffda31ced567d34fdf0ced980dac5d [file] [log] [blame]
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: const Text('Sample flutter_android_lifecycle usage'),
),
),
);
}
}