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

Use the Fintoc widget within your Flutter application as a View

example/lib/main.dart

import 'package:flutter/material.dart';

import 'index.dart';

void main() {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(const MyApp());
}

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        // This is the theme of your application.
        //
        // Try running your application with "flutter run". You'll see the
        // application has a blue toolbar. Then, without quitting the app, try
        // changing the primarySwatch below to Colors.green and then invoke
        // "hot reload" (press "r" in the console where you ran "flutter run",
        // or simply save your changes to "hot reload" in a Flutter IDE).
        // Notice that the counter didn't reset back to zero; the application
        // is not restarted.
        primarySwatch: Colors.blue,
      ),
      home: Scaffold(
        backgroundColor: Colors.grey.shade200,
        body: const MyHomePage(
          title: 'Plugin Demo',
        ),
      ),
    );
  }
}
1
likes
160
points
51
downloads

Publisher

verified publisherfaqcodes.dev

Weekly Downloads

Use the Fintoc widget within your Flutter application as a View

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, webview_flutter

More

Packages that depend on fintoc

Packages that implement fintoc