tapjoy_offerwall 14.6.0 copy "tapjoy_offerwall: ^14.6.0" to clipboard
tapjoy_offerwall: ^14.6.0 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());
}