outliner_view 0.1.0 copy "outliner_view: ^0.1.0" to clipboard
outliner_view: ^0.1.0 copied to clipboard

A platform-agnostic Flutter outliner library with block-based editing, drag-and-drop reordering, and customizable rendering.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'screens/demo_screen.dart';

void main() {
  runApp(const ProviderScope(child: MyApp()));
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Outliner View Example',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue),
        useMaterial3: true,
      ),
      darkTheme: ThemeData(
        colorScheme: ColorScheme.fromSeed(
          seedColor: Colors.blue,
          brightness: Brightness.dark,
        ),
        useMaterial3: true,
      ),
      themeMode: ThemeMode.system,
      home: const DemoScreen(),
    );
  }
}
0
likes
60
points
9
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A platform-agnostic Flutter outliner library with block-based editing, drag-and-drop reordering, and customizable rendering.

Repository (GitHub)

License

MIT (license)

Dependencies

flutter, flutter_hooks, flutter_riverpod, freezed_annotation, hooks_riverpod, json_annotation, uuid

More

Packages that depend on outliner_view