浏览代码

OSX fixes

lucky1213 4 年前
父节点
当前提交
90077c66e4
共有 2 个文件被更改,包括 2 次插入0 次删除
  1. 1
    0
      packages/zefyr/lib/src/widgets/__theme.dart
  2. 1
    0
      packages/zefyr/lib/src/widgets/common.dart

+ 1
- 0
packages/zefyr/lib/src/widgets/__theme.dart 查看文件

@@ -230,6 +230,7 @@ class BlockTheme {
230 230
     String fontFamily;
231 231
     switch (themeData.platform) {
232 232
       case TargetPlatform.iOS:
233
+      case TargetPlatform.macOS:
233 234
         fontFamily = 'Menlo';
234 235
         break;
235 236
       case TargetPlatform.android:

+ 1
- 0
packages/zefyr/lib/src/widgets/common.dart 查看文件

@@ -60,6 +60,7 @@ class _ZefyrLineState extends State<ZefyrLine> {
60 60
       Color cursorColor;
61 61
       switch (theme.platform) {
62 62
         case TargetPlatform.iOS:
63
+        case TargetPlatform.macOS:
63 64
           cursorColor ??= CupertinoTheme.of(context).primaryColor;
64 65
           break;
65 66