uptick_ads 0.2.2
uptick_ads: ^0.2.2 copied to clipboard
The Flutter Uptick SDK enables seamless integration of Uptick offers into your Flutter application. This plugin supports pop-up, inline, and popup_then_inline offers, allowing you to display personali [...]
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:uptick_ads_example/home_page.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
//await FlutterUptickPlugin.initSentry();
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
theme: ThemeData(
useMaterial3: false,
),
home: const HomePage());
}
}