-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Allow scroll bars in scroll views to be hidden
Resolves #377. Notes: - Update docs for `<body>`, `<form>` and `<list>` - Update schema - Add examples for scroll view and list view - `<section-list>` **does not** implement this property, it does not seem supported by RN <SectionView>
- Loading branch information
flochtililoch
committed
Apr 12, 2022
1 parent
22a4809
commit 7c12160
Showing
10 changed files
with
360 additions
and
9 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
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,118 @@ | ||
<doc xmlns="https://hyperview.org/hyperview"> | ||
<screen> | ||
<styles> | ||
<style | ||
id="Header" | ||
alignItems="center" | ||
backgroundColor="white" | ||
borderBottomColor="#eee" | ||
borderBottomWidth="1" | ||
flexDirection="row" | ||
paddingLeft="24" | ||
paddingRight="24" | ||
paddingBottom="16" | ||
/> | ||
<style | ||
id="Header__Back" | ||
color="blue" | ||
fontSize="16" | ||
fontWeight="600" | ||
paddingRight="16" | ||
/> | ||
<style id="Header__Title" color="black" fontSize="24" fontWeight="600" /> | ||
<style id="Body" backgroundColor="white" flex="1" /> | ||
<style | ||
id="Description" | ||
borderColor="red" | ||
borderRadius="4" | ||
borderWidth="2" | ||
fontSize="16" | ||
fontWeight="600" | ||
margin="24" | ||
padding="16" | ||
/> | ||
<style | ||
id="Item" | ||
alignItems="center" | ||
borderBottomColor="#eee" | ||
borderBottomWidth="1" | ||
flex="1" | ||
flexDirection="row" | ||
height="48" | ||
justifyContent="space-between" | ||
paddingLeft="24" | ||
paddingRight="24" | ||
/> | ||
<style id="Item__Label" fontSize="18" fontWeight="normal" /> | ||
<style id="Item__Chevron" fontSize="18" fontWeight="bold" /> | ||
</styles> | ||
<body style="Body" safe-area="true"> | ||
<header style="Header"> | ||
<text action="back" href="#" style="Header__Back">Back</text> | ||
<text style="Header__Title">List With Hidden Scroll Bar</text> | ||
</header> | ||
<list shows-scroll-indicator="false"> | ||
<item key="1" style="Item"> | ||
<text style="Item__Label">List 1</text> | ||
</item> | ||
<item key="2" style="Item"> | ||
<text style="Item__Label">List 2</text> | ||
</item> | ||
<item key="3" style="Item"> | ||
<text style="Item__Label">List 3</text> | ||
</item> | ||
<item key="4" style="Item"> | ||
<text style="Item__Label">List 4</text> | ||
</item> | ||
<item key="5" style="Item"> | ||
<text style="Item__Label">List 5</text> | ||
</item> | ||
<item key="6" style="Item"> | ||
<text style="Item__Label">List 6</text> | ||
</item> | ||
<item key="7" style="Item"> | ||
<text style="Item__Label">List 7</text> | ||
</item> | ||
<item key="8" style="Item"> | ||
<text style="Item__Label">List 8</text> | ||
</item> | ||
<item key="9" style="Item"> | ||
<text style="Item__Label">List 9</text> | ||
</item> | ||
<item key="10" style="Item"> | ||
<text style="Item__Label">List 10</text> | ||
</item> | ||
<item key="11" style="Item"> | ||
<text style="Item__Label">List 11</text> | ||
</item> | ||
<item key="12" style="Item"> | ||
<text style="Item__Label">List 12</text> | ||
</item> | ||
<item key="13" style="Item"> | ||
<text style="Item__Label">List 13</text> | ||
</item> | ||
<item key="14" style="Item"> | ||
<text style="Item__Label">List 14</text> | ||
</item> | ||
<item key="15" style="Item"> | ||
<text style="Item__Label">List 15</text> | ||
</item> | ||
<item key="16" style="Item"> | ||
<text style="Item__Label">List 16</text> | ||
</item> | ||
<item key="17" style="Item"> | ||
<text style="Item__Label">List 17</text> | ||
</item> | ||
<item key="18" style="Item"> | ||
<text style="Item__Label">List 18</text> | ||
</item> | ||
<item key="19" style="Item"> | ||
<text style="Item__Label">List 19</text> | ||
</item> | ||
<item key="20" style="Item"> | ||
<text style="Item__Label">List 20</text> | ||
</item> | ||
</list> | ||
</body> | ||
</screen> | ||
</doc> |
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,118 @@ | ||
<doc xmlns="https://hyperview.org/hyperview"> | ||
<screen> | ||
<styles> | ||
<style | ||
id="Header" | ||
alignItems="center" | ||
backgroundColor="white" | ||
borderBottomColor="#eee" | ||
borderBottomWidth="1" | ||
flexDirection="row" | ||
paddingLeft="24" | ||
paddingRight="24" | ||
paddingBottom="16" | ||
/> | ||
<style | ||
id="Header__Back" | ||
color="blue" | ||
fontSize="16" | ||
fontWeight="600" | ||
paddingRight="16" | ||
/> | ||
<style id="Header__Title" color="black" fontSize="24" fontWeight="600" /> | ||
<style id="Body" backgroundColor="white" flex="1" /> | ||
<style | ||
id="Description" | ||
borderColor="red" | ||
borderRadius="4" | ||
borderWidth="2" | ||
fontSize="16" | ||
fontWeight="600" | ||
margin="24" | ||
padding="16" | ||
/> | ||
<style | ||
id="Item" | ||
alignItems="center" | ||
borderBottomColor="#eee" | ||
borderBottomWidth="1" | ||
flex="1" | ||
flexDirection="row" | ||
height="48" | ||
justifyContent="space-between" | ||
paddingLeft="24" | ||
paddingRight="24" | ||
/> | ||
<style id="Item__Label" fontSize="18" fontWeight="normal" /> | ||
<style id="Item__Chevron" fontSize="18" fontWeight="bold" /> | ||
</styles> | ||
<body style="Body" safe-area="true"> | ||
<header style="Header"> | ||
<text action="back" href="#" style="Header__Back">Back</text> | ||
<text style="Header__Title">Horizontal List</text> | ||
</header> | ||
<list scroll-orientation="horizontal"> | ||
<item key="1" style="Item"> | ||
<text style="Item__Label">List 1</text> | ||
</item> | ||
<item key="2" style="Item"> | ||
<text style="Item__Label">List 2</text> | ||
</item> | ||
<item key="3" style="Item"> | ||
<text style="Item__Label">List 3</text> | ||
</item> | ||
<item key="4" style="Item"> | ||
<text style="Item__Label">List 4</text> | ||
</item> | ||
<item key="5" style="Item"> | ||
<text style="Item__Label">List 5</text> | ||
</item> | ||
<item key="6" style="Item"> | ||
<text style="Item__Label">List 6</text> | ||
</item> | ||
<item key="7" style="Item"> | ||
<text style="Item__Label">List 7</text> | ||
</item> | ||
<item key="8" style="Item"> | ||
<text style="Item__Label">List 8</text> | ||
</item> | ||
<item key="9" style="Item"> | ||
<text style="Item__Label">List 9</text> | ||
</item> | ||
<item key="10" style="Item"> | ||
<text style="Item__Label">List 10</text> | ||
</item> | ||
<item key="11" style="Item"> | ||
<text style="Item__Label">List 11</text> | ||
</item> | ||
<item key="12" style="Item"> | ||
<text style="Item__Label">List 12</text> | ||
</item> | ||
<item key="13" style="Item"> | ||
<text style="Item__Label">List 13</text> | ||
</item> | ||
<item key="14" style="Item"> | ||
<text style="Item__Label">List 14</text> | ||
</item> | ||
<item key="15" style="Item"> | ||
<text style="Item__Label">List 15</text> | ||
</item> | ||
<item key="16" style="Item"> | ||
<text style="Item__Label">List 16</text> | ||
</item> | ||
<item key="17" style="Item"> | ||
<text style="Item__Label">List 17</text> | ||
</item> | ||
<item key="18" style="Item"> | ||
<text style="Item__Label">List 18</text> | ||
</item> | ||
<item key="19" style="Item"> | ||
<text style="Item__Label">List 19</text> | ||
</item> | ||
<item key="20" style="Item"> | ||
<text style="Item__Label">List 20</text> | ||
</item> | ||
</list> | ||
</body> | ||
</screen> | ||
</doc> |
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
Oops, something went wrong.