go_mailer_push_sdk 1.4.0
go_mailer_push_sdk: ^1.4.0 copied to clipboard
Go Mailer SDK for Flutter - Cross-platform customer engagement messaging and push notifications
example/lib/main.dart
import 'package:flutter/material.dart';
import 'screens/config_screen.dart';
void main() {
WidgetsFlutterBinding.ensureInitialized();
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'GoMailer Example',
theme: ThemeData(
colorSchemeSeed: Colors.blue,
useMaterial3: true,
),
home: const ConfigScreen(),
);
}
}