toml_viewer 0.0.1 copy "toml_viewer: ^0.0.1" to clipboard
toml_viewer: ^0.0.1 copied to clipboard

retracted

A flutter library embeded TOML view.

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        body: SafeArea(
          child: Padding(
            padding: EdgeInsets.symmetric(horizontal: 14, vertical: 7),
            child: TomlView(assetFilePath: 'assets/test.toml'),
          ),
        ),
      ),
    );
  }
}
5
likes
0
points
25
downloads

Publisher

verified publishersudhi.in

Weekly Downloads

A flutter library embeded TOML view.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, toml

More

Packages that depend on toml_viewer