This repository has been archived by the owner on Feb 2, 2024. It is now read-only.
-
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
0edc370
commit 5193dc5
Showing
28 changed files
with
1,416 additions
and
313 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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,9 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<List xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="schema.xsd" | ||
orientation="vertical"> | ||
<Text id="counter" color="#ff1493">0</Text> | ||
<Button id="btn"> | ||
<Text>Click me!</Text> | ||
</Button> | ||
</List> |
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,61 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" | ||
xmlns:xs="http://www.w3.org/2001/XMLSchema"> | ||
|
||
<xs:element name="Image"> | ||
<xs:complexType> | ||
<xs:attribute name="src" type="xs:string" use="required" /> | ||
<xs:attribute name="width" type="xs:string" use="required" /> | ||
<xs:attribute name="height" type="xs:string" use="required" /> | ||
<xs:attribute name="id" type="xs:string" /> | ||
</xs:complexType> | ||
</xs:element> | ||
|
||
<xs:element name="Text"> | ||
<xs:complexType> | ||
<xs:simpleContent> | ||
<xs:extension base="xs:string"> | ||
<xs:attribute name="id" type="xs:string" /> | ||
<xs:attribute name="font" type="xs:string" /> | ||
</xs:extension> | ||
</xs:simpleContent> | ||
</xs:complexType> | ||
</xs:element> | ||
|
||
<!-- --> | ||
|
||
<xs:element name="List"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:any minOccurs="1" maxOccurs="unbounded" processContents="strict" /> | ||
</xs:sequence> | ||
<xs:attribute name="orientation" use="required"> | ||
<xs:simpleType> | ||
<xs:restriction base="xs:string"> | ||
<xs:enumeration value="vertical" /> | ||
<xs:enumeration value="horizontal" /> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
</xs:attribute> | ||
</xs:complexType> | ||
</xs:element> | ||
|
||
<xs:element name="Button"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:any minOccurs="1" maxOccurs="1" processContents="strict" /> | ||
</xs:sequence> | ||
<xs:attribute name="id" use="required" /> | ||
</xs:complexType> | ||
</xs:element> | ||
|
||
<!-- Document / Root needs at least ParentElement or ChildElement--> | ||
|
||
<xs:element name="Document"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:any minOccurs="1" maxOccurs="unbounded" processContents="strict" /> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:schema> |
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
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.