native_bridge_x 1.0.0+1 copy "native_bridge_x: ^1.0.0+1" to clipboard
native_bridge_x: ^1.0.0+1 copied to clipboard

A Dart library designed to simplify the process of executing native code directly from Flutter.

example/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'NativeBridgeX',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.blueAccent),
        useMaterial3: true,
      ),
      home: const UiTestExamplePage(),
    );
  }
}
copied to clipboard
0
likes
140
points
1
downloads

Publisher

verified publisher3p-cups.com

Weekly Downloads

2024.09.23 - 2025.04.07

A Dart library designed to simplify the process of executing native code directly from Flutter.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

cupertino_icons, flutter

More

Packages that depend on native_bridge_x