Danny Thuering

Results 9 comments of Danny Thuering

That error occurs when Digits2.0 is used. The constructor changed: https://docs.fabric.io/android/digits/upgrading.html

Same here. Default line spacing on MacOS target. Looks the same on iOS. Could not find how to set the preferred line height yet. ![Screenshot 2022-05-29 at 09 23 10](https://user-images.githubusercontent.com/655937/170857064-080a67ad-d8b4-4b4c-99cb-67447406b1ba.png)

Found the [ZefyrTheme](https://github.com/glynskyi/zefyrka/blob/main/lib/src/widgets/theme.dart) 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(...

I even get it now without mentioning what member is missing: ``` Failed to build iOS app Error (Xcode): ../../../../.pub-cache/hosted/pub.dev/zefyrka-1.5.0/lib/src/widgets/editor.dart:723:7: Error: The non-abstract class 'RawEditorState' is missing implementations for these...

I had the same issue when not wrapping `Marquee` with a `Container` with a `height` property as this: ```dart Container(height: 20, child: Marquee(text: ticker.text)) ```

Hello @vijetaR Thank you for your reply. Adding the CSS fixed the issue. :) Best, Danny

Hello, yes, it got lost. It is working now.

Same here. As @paulgrainger85 mentioned it was caused by the permissions. Also running Docker on macOS. Here is the diff of my changes to the `docker-compose.yaml` file. ```diff 44c44 <...