appambit_sdk_push_notifications 1.0.0
appambit_sdk_push_notifications: ^1.0.0 copied to clipboard
Push Notifications SDK for Android to send push notifications via AppAmbit platform.
example/lib/main.dart
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: Scaffold(
body: Center(
child: Text('See appambit_test_app for the full demo.'),
),
),
);
}
}