| 1234567891011121314151617181920212223242526 |
- import 'message_display_page.dart';
- import 'package:flutter/material.dart';
- void main() {
- runApp(MyApp());
- }
- class MyApp extends StatefulWidget {
- @override
- _MyAppState createState() => _MyAppState();
- }
- class _MyAppState extends State<MyApp> {
- @override
- Widget build(BuildContext context) {
- return MaterialApp(
- home: Scaffold(
- appBar: AppBar(
- title: const Text('Appsp push example'),
- ),
- body:MessageDisplayPage(),
- ),
- );
- }
- }
|