scribble 0.0.7 copy "scribble: ^0.0.7" to clipboard
scribble: ^0.0.7 copied to clipboard

outdated

Scribble is a lightweight library for freehand drawing in Flutter supporting pressure, variable line width and more!

Scribble #

Scribble is a lightweight library for freehand drawing in Flutter supporting pressure, variable line width and more!

At the moment, scribble needs at least Flutter 2.5 to work

scribble_demo

Note: Scribble is still in development and will receive more features down the line!

Features #

  • Variable line width
  • Pen and touch pressure support
  • Lines get slimmer when the pen is moved more quickly
  • Line eraser support
  • Full undo/redo support using state_notifier and kimchi
  • Sketches are fully serializable

Pipeline #

  • Load sketches
  • PNG export

Usage #

You can find a full working example in the example directory

You can create a drawing surface by adding the Scribble widget to your widget tree and passing in a ScribbleNotifier.

Where you manage this notifier is up to you, but since it is a StateNotifier, it works amazingly with riverpod for example.

import 'package:flutter_riverpod/flutter_riverpod.dart';

final scribbleStateProvider =
StateNotifierProvider.autoDispose<ScribbleNotifier, ScribbleState>(
      (ref) => ScribbleNotifier(),
);

You can then pass the notifier to the scribble widget.

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

class App extends ConsumerWidget {
  @override
  Widget build(BuildContext context, ScopedReader watch) {
    return Scaffold(
      body: Scribble(
        notifier: watch(scribbleStateProvider.notifier),
      ),
    );
  }
}

Use the public methods on ScribbleNotifier to control the behavior (for example from a button in the UI:

// Set color
notifier.setColor(Colors.black);

// Clear
notifier.clear();

// Undo
notifier.undo();

//... 

Additional information #

As mentioned above, the package is still under development, but we already use it in the app we are currently developing.

Feel free to contribute, or open issues in our GitHub repo.

144
likes
0
pub points
88%
popularity

Publisher

verified publisherwhynotmake.it

Scribble is a lightweight library for freehand drawing in Flutter supporting pressure, variable line width and more!

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

collection, flutter, flutter_state_notifier, freezed_annotation, kimchi, state_notifier, vector_math

More

Packages that depend on scribble