flutter_inapp_notifications 0.0.3 copy "flutter_inapp_notifications: ^0.0.3" to clipboard
flutter_inapp_notifications: ^0.0.3 copied to clipboard

A simple Flutter package to generate instant in-app notifications.

example/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_inapp_notifications/flutter_inapp_notifications.dart';

import 'screens/main_screen.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter In-App Notifications',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MainScreen(),
      builder: InAppNotifications.init(),
    );
  }
}
23
likes
130
points
859
downloads

Publisher

verified publishertheflutterist.com

Weekly Downloads

A simple Flutter package to generate instant in-app notifications.

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_inapp_notifications