Skip to content
On this page

Selectable Text

A representation of Typography.

NikuSelectableText accepts all the props as same as Selectable Text.

// Using namespace
n.SelectableText("");

// Using Niku Prefix
NikuSelectableText("");

Example Usage

n.SelectableText("I'm selectable");

Using extension

"I'm selectable".n.select;

Adding toolbars

"I'm selectable".n.select
    ..toolbarOptions = ToolbarOptions(
        copy: true,
        selectAll: true,
    );

Defination

View Defination on pub.dev