tapjoy_offerwall 0.0.2
tapjoy_offerwall: ^0.0.2 copied to clipboard
Flutter Plugin for Tapjoy SDK
example/lib/main.dart
import 'package:flutter/material.dart';
import 'navigation_widget.dart';
class App extends StatelessWidget {
const App({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: Home(),
);
}
}
void main() {
runApp(const App());
}