ronel 0.2.5 copy "ronel: ^0.2.5" to clipboard
ronel: ^0.2.5 copied to clipboard

A powerful Flutter library for building server-driven UI using a Remote-Operated Native Extensible Language.

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    const ronelApp = Ronel(
        url: "https://ronel.dev/example/index.html",
        appTitle: 'Ronel Example',
        useAutoPlatformDetection: false,
        uiDesign: 'Material',
        appBarColor: Colors.redAccent,
      );
    return ronelApp;
  }
}
2
likes
150
points
162
downloads

Publisher

verified publisherronel.dev

Weekly Downloads

A powerful Flutter library for building server-driven UI using a Remote-Operated Native Extensible Language.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

cupertino_icons, flutter, flutter_inappwebview, html, http, shared_preferences, webview_flutter

More

Packages that depend on ronel