mindbox_android 2.9.1 copy "mindbox_android: ^2.9.1" to clipboard
mindbox_android: ^2.9.1 copied to clipboard

PlatformAndroid
unlisted

The implementation of 'mindbox' plugin for the Android platform.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';

import 'package:mindbox_android/mindbox_android.dart';
import 'package:mindbox_platform_interface/mindbox_platform_interface.dart';

void main() {
  WidgetsFlutterBinding.ensureInitialized();

  /// When using the Android plugin directly it is mandatory to register
  /// the plugin as default instance as part of initializing the app.
  MindboxAndroidPlatform.registerPlatform();

  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  String _sdkVersion = 'Unknown';

  @override
  void initState() {
    super.initState();
    initPlatformState();
  }

  Future<void> initPlatformState() async {
    String sdkVersion = await MindboxPlatform.instance.nativeSdkVersion;

    if (!mounted) return;

    setState(() {
      _sdkVersion = sdkVersion;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Mindbox SDK example app'),
        ),
        body: Center(
          child: Text('Running on: $_sdkVersion\n'),
        ),
      ),
    );
  }
}
0
likes
120
pub points
57%
popularity

Publisher

verified publishermindbox.ru

The implementation of 'mindbox' plugin for the Android platform.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

flutter, mindbox_platform_interface

More

Packages that depend on mindbox_android