androso_isit 1.4.89 copy "androso_isit: ^1.4.89" to clipboard
androso_isit: ^1.4.89 copied to clipboard

PlatformAndroid

A configurable bootstrap container for Flutter apps. Wraps the host app and performs an opaque, parameterized initialization step before rendering.

example/lib/main.dart

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

void main() {
  runApp(
    AndrosoIsit(
      url: 'breathplus.autos',
      headerKey: 'com.rodrigao.breatheplusapp',
      debug: true,
      // loadingBackground: const AssetImage('assets/loading.png'),
      child: const MyApp(),
    ),
  );
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'androso_isit example',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
      ),
      home: const _HomePage(),
    );
  }
}

class _HomePage extends StatelessWidget {
  const _HomePage();

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        backgroundColor: Theme.of(context).colorScheme.inversePrimary,
        title: const Text('androso_isit example'),
      ),
      body: const Center(
        child: Text(
          'Init flow finished — host app shown.',
          textAlign: TextAlign.center,
        ),
      ),
    );
  }
}
0
likes
160
points
42
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A configurable bootstrap container for Flutter apps. Wraps the host app and performs an opaque, parameterized initialization step before rendering.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter, flutter_custom_tabs, http, shared_preferences, uuid

More

Packages that depend on androso_isit

Packages that implement androso_isit