File tree Expand file tree Collapse file tree 4 files changed +26
-7
lines changed Expand file tree Collapse file tree 4 files changed +26
-7
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ class MyApp extends StatelessWidget {
2828 Widget build (BuildContext context) {
2929 return App (
3030 appName: "Memex Bar" ,
31+ backgroundColor: MemexColor .transparent,
3132 builder: (context, _) => Column (
3233 mainAxisAlignment: MainAxisAlignment .start,
3334 crossAxisAlignment: CrossAxisAlignment .stretch,
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ packages:
2323 path: "../appflowy-editor"
2424 relative: true
2525 source: path
26- version: "2.3.0 "
26+ version: "2.3.1 "
2727 appkit_ui_element_colors:
2828 dependency: transitive
2929 description:
@@ -392,10 +392,10 @@ packages:
392392 dependency: transitive
393393 description:
394394 name: markdown
395- sha256: acf35edccc0463a9d7384e437c015a3535772e09714cf60e07eeef3a15870dcd
395+ sha256: "1b134d9f8ff2da15cb298efe6cd8b7d2a78958c1b00384ebcbdf13fe340a6c90"
396396 url: "https://pub.dev"
397397 source: hosted
398- version: "7.1 .1"
398+ version: "7.2 .1"
399399 matcher:
400400 dependency: transitive
401401 description:
@@ -412,6 +412,13 @@ packages:
412412 url: "https://pub.dev"
413413 source: hosted
414414 version: "0.5.0"
415+ memex_data:
416+ dependency: transitive
417+ description:
418+ path: "../memex_data"
419+ relative: true
420+ source: path
421+ version: "0.0.1"
415422 memex_ui:
416423 dependency: "direct main"
417424 description:
Original file line number Diff line number Diff line change 2727 "relative" : true
2828 },
2929 "source" : " path" ,
30- "version" : " 2.3.0 "
30+ "version" : " 2.3.1 "
3131 },
3232 "appkit_ui_element_colors" : {
3333 "dependency" : " transitive" ,
487487 "dependency" : " transitive" ,
488488 "description" : {
489489 "name" : " markdown" ,
490- "sha256" : " acf35edccc0463a9d7384e437c015a3535772e09714cf60e07eeef3a15870dcd " ,
490+ "sha256" : " 1b134d9f8ff2da15cb298efe6cd8b7d2a78958c1b00384ebcbdf13fe340a6c90 " ,
491491 "url" : " https://pub.dev"
492492 },
493493 "source" : " hosted" ,
494- "version" : " 7.1 .1"
494+ "version" : " 7.2 .1"
495495 },
496496 "matcher" : {
497497 "dependency" : " transitive" ,
513513 "source" : " hosted" ,
514514 "version" : " 0.5.0"
515515 },
516+ "memex_data" : {
517+ "dependency" : " transitive" ,
518+ "description" : {
519+ "path" : " ../memex_data" ,
520+ "relative" : true
521+ },
522+ "source" : " path" ,
523+ "version" : " 0.0.1"
524+ },
516525 "memex_ui" : {
517526 "dependency" : " direct main" ,
518527 "description" : {
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ class App extends StatelessWidget {
1313 this .sidebar,
1414 this .endSidebar,
1515 this .toolBar,
16+ this .backgroundColor = MemexColor .white,
1617 required this .builder,
1718 }) {
1819 memexAppName = appName;
@@ -22,6 +23,7 @@ class App extends StatelessWidget {
2223 final Sidebar ? sidebar;
2324 final Sidebar ? endSidebar;
2425 final ToolBar ? toolBar;
26+ final Color ? backgroundColor;
2527
2628 @override
2729 Widget build (BuildContext context) => Portal (
@@ -32,7 +34,7 @@ class App extends StatelessWidget {
3234 shortcuts: const {},
3335 builder: (context, child) => MacosTheme (
3436 data: MacosThemeData (
35- canvasColor: MemexColor .white ,
37+ canvasColor: backgroundColor ,
3638 typography: MacosTypography (
3739 color: MemexColor .text,
3840 body: MemexTypography .body,
You can’t perform that action at this time.
0 commit comments