test_plugin 0.0.2 copy "test_plugin: ^0.0.2" to clipboard
test_plugin: ^0.0.2 copied to clipboard

discontinued

Test Plugin for Kotlin and Swift

example/lib/main.dart

import 'dart:async';

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:test_plugin/test_plugin.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

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

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

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    String kickBack;
    // Platform messages may fail, so we use a try/catch PlatformException.
    String message = "dynamic text";

    try {
      kickBack = await TestPlugin.kickBackValue(message);
    } on PlatformException {
      kickBack = 'Failed to get message back from OS.';
    }

    // 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(() {
      _kickBack = kickBack;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(child: Text('Kick : $_kickBack')),
      ),
    );
  }
}
0
likes
20
pub points
0%
popularity

Publisher

unverified uploader

Test Plugin for Kotlin and Swift

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on test_plugin