flutter_reach_five 1.0.0
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
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(),
);
}
}