Open ayyyushhhhh opened 2 years ago
Same here. Default line spacing on MacOS target. Looks the same on iOS. Could not find how to set the preferred line height yet.
Found the ZefyrTheme class that is responsible for this kind of setting. Here is an example that changes line height.
SizedBox(
height: 200,
child: ZefyrTheme(
data: ZefyrThemeData.fallback(context).copyWith(
paragraph: TextBlockTheme(
style: DefaultTextStyle.of(context).style,
spacing: VerticalSpacing.zero())),
child: ZefyrEditor(
controller: _controller,
),
),
),
Hi, I'm using Zefyrka Package in my flutter web project. But I found some issue in Flutter web.
1 - Zefyrka editor takes 4-5 seconds before someone can use the editor. 2- Line spacing is too much. (Almost like you have enter a new line twice). Is there any way to reduce it?