mapp_sdk 0.0.11 copy "mapp_sdk: ^0.0.11" to clipboard
mapp_sdk: ^0.0.11 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';

void main() {
  WidgetsFlutterBinding.ensureInitialized();

  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

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

Publisher

verified publishermapp.com

Weekly Downloads

2024.09.26 - 2025.04.10

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

Repository (GitHub)

Documentation

API reference

License

unknown (license)

Dependencies

flutter

More

Packages that depend on mapp_sdk