bd_sdk_sample 1.0.0 copy "bd_sdk_sample: ^1.0.0" to clipboard
bd_sdk_sample: ^1.0.0 copied to clipboard

The SDK provides easy access to help your app end users

example/lib/main.dart

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

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

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

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('Plugin example app')),
        body: ElevatedButton(
          onPressed: () {
            BdSdkSample.showCalculator();
          },
          child: Text("Open iOS Calculator"),
        ),
      ),
    );
  }
}
0
likes
150
points
12
downloads

Publisher

unverified uploader

Weekly Downloads

The SDK provides easy access to help your app end users

Homepage

Documentation

API reference

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on bd_sdk_sample

Packages that implement bd_sdk_sample