superwallkit_flutter 0.0.1
superwallkit_flutter: ^0.0.1 copied to clipboard
Remotely configure every aspect of your paywall and double your revenue.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter/services.dart';
import 'package:superwallkit_flutter/Superwall.dart';
import 'package:superwallkit_flutter/PublicPresentation.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
String _platformVersion = 'Unknown';
@override
void initState() {
super.initState();
configureSuperwall();
initPlatformState();
}
// Configure Superwall
Future<void> configureSuperwall() async {
try {
await Superwall.configure(
APIKey.crossPlatform(
iosApiKey: 'pk_5f6d9ae96b889bc2c36ca0f2368de2c4c3d5f6119aacd3d2',
androidApiKey: 'pk_d1f0959f70c761b1d55bb774a03e22b2b6ed290ce6561f85'
)
);
} catch (e) {
// Handle any errors that occur during configuration
print('Failed to configure Superwall: $e');
}
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> initPlatformState() async {
String platformVersion;
// Platform messages may fail, so we use a try/catch PlatformException.
// We also handle the message potentially returning null.
try {
platformVersion = 'Unknown platform version';
} on PlatformException {
platformVersion = 'Failed to get platform version.';
}
// If the widget was removed from the tree while the asynchronous platform
// message was in flight, we want to discard the reply rather than calling
// setState to update our non-existent appearance.
if (!mounted) return;
setState(() {
_platformVersion = platformVersion;
});
}
// Method to call when the button is tapped
Future<void> onRegisterTapped() async {
try {
await Superwall.shared.registerEvent(
'flutter',
params: null
);
print('Register method called successfully.');
} catch (e) {
// Handle any errors that occur during registration
print('Failed to call register method: $e');
}
}
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(
title: const Text('Flutter superapp'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text('Running'),
ElevatedButton(
onPressed: onRegisterTapped,
child: const Text('Register event'),
),
],
),
),
),
);
}
}