mapp_sdk 0.0.12 copy "mapp_sdk: ^0.0.12" to clipboard
mapp_sdk: ^0.0.12 copied to clipboard

Mapp SDK plugin enables the usage of Mapp Engage platform, such as push notifications and InApp messages segmented sendout.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'home_page.dart';

final GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>();

void main() {
  WidgetsFlutterBinding.ensureInitialized();

  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      navigatorKey: navigatorKey,
      title: 'Flutter Demo',
      theme: ThemeData(
          primaryColor: const Color(0xFF00BAFF),
          primaryColorDark: const Color(0xFF0592D7),
          cardColor: const Color(0xFF888888)),
      home: const HomePage(),
    );
  }
}
1
likes
130
points
8
downloads

Publisher

verified publishermapp.com

Weekly Downloads

Mapp SDK plugin enables the usage of Mapp Engage platform, such as push notifications and InApp messages segmented sendout.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (license)

Dependencies

flutter

More

Packages that depend on mapp_sdk

Packages that implement mapp_sdk