scatesdk_flutter 0.3.6
scatesdk_flutter: ^0.3.6 copied to clipboard
Scate SDK is made for developers to integrate Scate's services into their apps. Please visit https://www.scate.io for more information.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter/services.dart';
import 'package:scatesdk_flutter/scatesdk_flutter.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 _remoteConfigValue = 'Loading...';
@override
void initState() {
super.initState();
initPlatformState();
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> initPlatformState() async {
ScateSDK.Init("uw2YK");
ScateSDK.SetAdid("test_adid");
ScateSDK.Event("test_event");
ScateSDK.EventWithValue("test_event", "test_value");
var localConfig = await ScateSDK.GetRemoteConfig('test', 'default');
setState(() {
_remoteConfigValue = 'Local -> ' + (localConfig ?? 'not found');
});
ScateSDK.AddListener(ScateEvents.REMOTE_CONFIG_READY, (success) async {
print('Remote Fetched: $success');
var remoteConfig = await ScateSDK.GetRemoteConfig('test', 'default');
setState(() {
_remoteConfigValue = 'Remote -> ' +
(remoteConfig ?? 'not found') +
'\n success -> ' +
success.toString(); // Convert boolean to string
});
});
//ScateSDK.RemoveListener(ScateEvents.REMOTE_CONFIG_READY);
//ScateSDK.ClearListeners(ScateEvents.REMOTE_CONFIG_READY);
// 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;
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('ScateSDK example app'),
),
body: Center(
child: Text(_remoteConfigValue + '\n'),
),
),
);
}
}