flutter_reach_five 1.0.0 copy "flutter_reach_five: ^1.0.0" to clipboard
flutter_reach_five: ^1.0.0 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(),
    );
  }
}