Last updated:
0 purchases
ruby text touch
RubyText touch version #
A ruby text widget with flutter with touch callback.
Install #
dependencies:
ruby_text: <Latest version.>
copied to clipboard
Example #
RubyText(
[
RubyTextData(
'検査',
ruby: 'けんさ',
),
],
);
copied to clipboard
Other #
const RubyText(
List<RubyTextData> data, {
double spacing = 0.0,
TextStyle? style,
TextStyle? rubyStyle,
TextAlign? textAlign,
TextDirection? textDirection,
bool? softWrap,
TextOverflow? overflow,
int? maxLines,
onPressed
});
const RubyTextData(
String text, {
String? ruby,
TextStyle? style,
TextStyle? rubyStyle,
TextDirection textDirection = TextDirection.rtl,
});
const RubySpanWidget(BuildContext context, RubyTextData data);
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.