tnk_flutter_rwd 0.0.8
tnk_flutter_rwd: ^0.0.8 copied to clipboard
tnk rwd sdk flutter plugin support android.
example/lib/main.dart
import 'dart:ffi';
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter/services.dart';
import 'package:tnk_flutter_rwd/tnk_flutter_rwd.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 _tnkResult = 'Unknown';
int _myPoint = 0;
final _tnkFlutterRwdPlugin = TnkFlutterRwd();
@override
void initState() {
super.initState();
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> showAdList() async {
String platformVersion;
// Platform messages may fail, so we use a try/catch PlatformException.
// We also handle the message potentially returning null.
try {
await _tnkFlutterRwdPlugin.setUserName("testUser");
await _tnkFlutterRwdPlugin.setCOPPA(false);
platformVersion =
await _tnkFlutterRwdPlugin.showAdList("타이틀") ?? '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(() {
_tnkResult = platformVersion;
});
}
Future<void> showATTPopup() async {
try {
await _tnkFlutterRwdPlugin.showATTPopup();
} on Exception {
}
}
Future<void> getEarnPoint() async {
int point;
try {
point = await _tnkFlutterRwdPlugin.getEarnPoint() ?? 0 ;
} on PlatformException {
point = 0;
}
setState(() {
_myPoint = point;
});
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
Text('result \n\n$_tnkResult\n'),
Text('적립가능한 Point : $_myPoint'),
OutlinedButton(
onPressed: (){ showAdList(); },
style: OutlinedButton.styleFrom(foregroundColor: Colors.black),
child: const Text('show adlist'),
),
OutlinedButton(
onPressed: (){ showATTPopup(); },
style: OutlinedButton.styleFrom(foregroundColor: Colors.black),
child: const Text('show attPopup'),
),
OutlinedButton(
onPressed: (){ getEarnPoint(); },
style: OutlinedButton.styleFrom(foregroundColor: Colors.black),
child: const Text('show attPopup'),
),
],
),
),
),
);
}
}