forked from Surrealism-All/SurrealismUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a16570b
commit 02e5320
Showing
4 changed files
with
74 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { Calendar } from "./calendar.slint"; | ||
|
||
export { | ||
Calendar as SCalendar | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import {SCalendar} from "../../index.slint"; | ||
component TestCalendar inherits Window { | ||
height: 500px; | ||
width: 400px; | ||
background: #333; | ||
VerticalLayout { | ||
padding: 16px; | ||
SCalendar { | ||
theme: Dark; | ||
height: 464px; | ||
width: 364px; | ||
} | ||
} | ||
} | ||
|
||
component TestCalendar2 inherits Window { | ||
height: 500px; | ||
width: 700px; | ||
background: #333; | ||
VerticalLayout { | ||
padding: 16px; | ||
SCalendar { | ||
theme: Info; | ||
height: 464px; | ||
width: 664px; | ||
} | ||
} | ||
} |