mindbox_ios 2.8.5 copy "mindbox_ios: ^2.8.5" to clipboard
mindbox_ios: ^2.8.5 copied to clipboard

PlatformiOS
unlisted

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

example/lib/main.dart

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

import 'package:mindbox_ios/mindbox_ios.dart';

import 'package:mindbox_platform_interface/mindbox_platform_interface.dart';

void main() {
  WidgetsFlutterBinding.ensureInitialized();

  /// When using the iOs plugin directly it is mandatory to register
  /// the plugin as default instance as part of initializing the app.
  MindboxIosPlatform.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
53%
popularity

Publisher

verified publishermindbox.ru

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

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

flutter, mindbox_platform_interface

More

Packages that depend on mindbox_ios