flutter_reach_five 2.0.3 copy "flutter_reach_five: ^2.0.3" to clipboard
flutter_reach_five: ^2.0.3 copied to clipboard

This package allows you to use the methods from the reachFive android and ios native sdks in Flutter

example/lib/main.dart

import 'package:flutter/material.dart';

import 'views/reach_five_instances_view.dart';

void main() => runApp(const MyApp());

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(home: ReachFiveInstancesView());
  }
}