mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
[Do Not Merge] chore(e2e): skip specific test suites with known issues on android / ios (#6797)
* Update README.md * comment flip * skip specific test suites with known issues * restore skipped ios tests * chore: update css for ios * chore: update android css * chore: tab-root tests remove suspend for android * chore: frame-root tested on api23, api27 and ios11 * chore: fix tslint * chore: frame-tab-root tests api27 * chore: lower font size
This commit is contained in:
@@ -1,25 +1,20 @@
|
||||
Button {
|
||||
font-size: 8;
|
||||
padding-left: 5;
|
||||
padding-right: 5;
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
margin-right: 0;
|
||||
height: 50px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
height: 30px;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
TextView {
|
||||
font-size: 10;
|
||||
font-size: 8;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
color: green;
|
||||
}
|
||||
|
||||
Label {
|
||||
font-size: 10;
|
||||
font-size: 8;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
@@ -30,6 +25,6 @@ GridLayout {
|
||||
}
|
||||
|
||||
ActionBar {
|
||||
height: 30;
|
||||
height: 20;
|
||||
margin: 0;
|
||||
}
|
||||
@@ -1,7 +1,22 @@
|
||||
Button{
|
||||
color: blue;
|
||||
font-size: 10;
|
||||
height: 35px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
TextView{
|
||||
color: green;
|
||||
font-size: 10;
|
||||
}
|
||||
|
||||
Label{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: 10;
|
||||
}
|
||||
|
||||
ActionBar {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
@@ -1,8 +1,8 @@
|
||||
<Page xmlns="http://schemas.nativescript.org/tns.xsd" class="page">
|
||||
|
||||
<ActionBar class="action-bar">
|
||||
<ActionBar>
|
||||
<NavigationButton text="frameHomeBack" tap="onBackButtonTap" android.systemIcon="ic_menu_back" />
|
||||
<Label class="action-bar-title" text="multi frame home page" horizontalAlignment="center" />
|
||||
<Label text="multi frame home page" horizontalAlignment="center" />
|
||||
</ActionBar>
|
||||
|
||||
<GridLayout rows="auto, *, *">
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<Page xmlns="http://schemas.nativescript.org/tns.xsd" class="page">
|
||||
|
||||
<ActionBar class="action-bar">
|
||||
<Label class="action-bar-title" text="layout home page" horizontalAlignment="center" />
|
||||
<ActionBar>
|
||||
<Label text="layout home page" horizontalAlignment="center" />
|
||||
</ActionBar>
|
||||
|
||||
<GridLayout rows="auto, *">
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<Page xmlns="http://schemas.nativescript.org/tns.xsd" class="page">
|
||||
|
||||
<ActionBar class="action-bar">
|
||||
<Label class="action-bar-title" text="layout home secondary page" horizontalAlignment="center" />
|
||||
<ActionBar >
|
||||
<Label text="layout home secondary page" horizontalAlignment="center" />
|
||||
</ActionBar>
|
||||
|
||||
<GridLayout rows="auto, *">
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<Page class="page" navigatingTo="onNavigatingTo" xmlns="http://schemas.nativescript.org/tns.xsd">
|
||||
|
||||
<ActionBar class="action-bar">
|
||||
<ActionBar>
|
||||
<NavigationButton text="playerBack" tap="onBackButtonTap" android.systemIcon="ic_menu_back"/>
|
||||
<Label class="action-bar-title" text="{{ name }}"></Label>
|
||||
<Label text="{{ name }}"></Label>
|
||||
</ActionBar>
|
||||
|
||||
<GridLayout>
|
||||
<Label class="m-10 h3" verticalAlignment="top" text="{{ description }}"></Label>
|
||||
<Label verticalAlignment="top" text="{{ description }}"></Label>
|
||||
</GridLayout>
|
||||
|
||||
</Page>
|
||||
@@ -1,7 +1,7 @@
|
||||
<Page class="page" navigatingTo="onNavigatingTo" xmlns="http://schemas.nativescript.org/tns.xsd">
|
||||
|
||||
<ActionBar class="action-bar">
|
||||
<Label class="action-bar-title" text="Players"></Label>
|
||||
<ActionBar >
|
||||
<Label text="Players"></Label>
|
||||
</ActionBar>
|
||||
|
||||
<ListView items="{{ items }}" itemTap="onItemTap" class="list-group">
|
||||
|
||||
Reference in New Issue
Block a user