bridgesdk 0.0.5 copy "bridgesdk: ^0.0.5" to clipboard
bridgesdk: ^0.0.5 copied to clipboard

Bridge SDK handle javascript events and perform native actions

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('WebView Example'),
        ),
        body: Center(
          child: Bridgesdk().buildWebView(),
        ),
      ),
    );
  }
}
1
likes
120
points
63
downloads

Publisher

unverified uploader

Weekly Downloads

Bridge SDK handle javascript events and perform native actions

Documentation

API reference

License

MIT (license)

Dependencies

camera, flutter, flutter_local_notifications, gallery_saver, local_auth, plugin_platform_interface, webview_flutter

More

Packages that depend on bridgesdk

Packages that implement bridgesdk