mediatemplate

Last updated:

0 purchases

mediatemplate Image
mediatemplate Images
Add to Cart

Description:

mediatemplate

Media Template #
Show template on mobile
Its supports template:

POP_UP
FLOATING_BAR
FULL_SCREEN
INLINE
SLIDE_IN
GAMIFIED


Media Template
Getting Started #
For help getting started with Flutter, view online documentation(https://flutter.dev/).
iOS #
In order for plugin to work correctly, you need to add new key to ios/Runner/Info.plist
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSAllowsArbitraryLoadsInWebContent</key>
<true/>
</dict>
copied to clipboard
NSAllowsArbitraryLoadsInWebContent is for iOS 10+ and NSAllowsArbitraryLoads for iOS 9.
Intstall #
flutter pub add mediatemplate
copied to clipboard
Example #
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:mediatemplate/mediatemplate.dart';
import 'package:flutter/scheduler.dart';
import 'package:device_info_plus/device_info_plus.dart';
import 'package:flutter/services.dart';
import 'package:android_id/android_id.dart';
import 'dart:io' show Platform;

class FloatingBar extends StatefulWidget {
final String deviceId;

const FloatingBar({required this.deviceId});

@override
State<FloatingBar> createState() => _FloatingBarState();
}

class _FloatingBarState extends State<FloatingBar> {
late AdInfo _ad;
bool loaded = false;
String? deviceId;
static final DeviceInfoPlugin deviceInfo = DeviceInfoPlugin();

@override
void initState() {
_initState();
}

Future<void> _initState() async {
if (Platform.isAndroid) {
const androidId = AndroidId();
deviceId = await androidId.getId();
} else if (Platform.isIOS) {
final iosInfo = await deviceInfo.iosInfo;
deviceId = iosInfo.identifierForVendor;
} else if (Platform.isLinux) {
final linuxInfo = await deviceInfo.linuxInfo;
deviceId = linuxInfo.machineId;
} else if (Platform.isWindows) {
final windowsInfo = await deviceInfo.windowsInfo;
deviceId = windowsInfo.deviceId;
} else if (Platform.isMacOS) {
final macOsInfo = await deviceInfo.macOsInfo;
deviceId = macOsInfo.systemGUID;
}

Ads.load(
portalId: 561236459,
propsId: 564990801,
ec: 'product',
ea: 'view',
templateType: 'floating_bar',
zoneCode: 'div_asm_inline',
userId: deviceId,
onAdFailedToLoad: (String error) {
print(error);
},
onAdLoaded: (AdInfo ad) {
setState(() {
_ad = ad;
loaded = true;
});
});
}

@override
Widget build(BuildContext context) {
final scaffoldKey = GlobalKey<ScaffoldState>();

if (loaded) {
WidgetsBinding.instance.addPostFrameCallback((_) {
Ads.show(_ad, context, scaffoldKey);
});
}

return Scaffold(
key: scaffoldKey,
appBar: AppBar(
title: const Text('FloatingBar'),
),
body: Center(
child: ElevatedButton(
child: const Text('Home'),
onPressed: () {
// Navigate to home route when tapped.
Navigator.pop(context);
},
),
));
}
}

copied to clipboard
Usage #

Open example to get more information

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.