File tree Expand file tree Collapse file tree 5 files changed +42
-8
lines changed Expand file tree Collapse file tree 5 files changed +42
-8
lines changed Original file line number Diff line number Diff line change
1
+ .paddingCssPanel {
2
+ vertical-align : center;
3
+ font-size : 20 ;
4
+ margin : 15 ;
5
+ }
Original file line number Diff line number Diff line change
1
+ <Page xmlns =" http://schemas.nativescript.org/tns.xsd" >
2
+ <ActionBar title =" issue-5274 " ></ActionBar >
3
+ <StackLayout class =" paddingCssPanel" >
4
+ <Label id =" label" backgroundColor =" green"
5
+ text =" assrts .paddingCssPanel{
6
+ vertical-align: center;
7
+ font-size: 20;
8
+ margin: 15;
9
+ } of StackLayout" textWrap =" true" />
10
+ <Button id =" button" text =" change" backgroundColor =" yellow" style =" padding:50" />
11
+ </StackLayout >
12
+ </Page >
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ export function loadExamples() {
26
26
examples . set ( "tabview-with-scrollview_4022" , "issues/tabview-with-scrollview_4022" ) ;
27
27
examples . set ( "3354-ios" , "issues/issue-3354" ) ;
28
28
examples . set ( "4450" , "issues/issue-4450" ) ;
29
+ examples . set ( "5274" , "issues/issue-5274" ) ;
29
30
30
31
return examples ;
31
32
}
Original file line number Diff line number Diff line change 5
5
"repository" : " <fill-your-repository-here>" ,
6
6
"nativescript" : {
7
7
"id" : " org.nativescript.apps" ,
8
- "tns-ios" : {
9
- "version" : " 3.4.1"
10
- },
11
8
"tns-android" : {
12
- "version" : " 3.4.1"
9
+ "version" : " next"
10
+ },
11
+ "tns-ios" : {
12
+ "version" : " next"
13
13
}
14
14
},
15
15
"dependencies" : {
20
20
"babel-types" : " 6.11.1" ,
21
21
"babylon" : " 6.8.3" ,
22
22
"lazy" : " 1.0.11" ,
23
- "nativescript-dev-typescript" : " ^0.5.0 " ,
23
+ "nativescript-dev-typescript" : " ^0.7.1 " ,
24
24
"tns-platform-declarations" : " *" ,
25
- "typescript" : " ^2.6.1 "
25
+ "typescript" : " ^2.7.2 "
26
26
}
27
- }
27
+ }
Original file line number Diff line number Diff line change 3
3
"exclude" : [
4
4
" node_modules" ,
5
5
" platforms"
6
- ]
6
+ ],
7
+ "compilerOptions" : {
8
+ "baseUrl" : " ." ,
9
+ "paths" : {
10
+ "*" : [
11
+ " ./node_modules/tns-core-modules/*" ,
12
+ " ./node_modules/*"
13
+ ],
14
+ "~/*" : [
15
+ " app/*"
16
+ ]
17
+ },
18
+ "lib" : [
19
+ " es6" ,
20
+ " dom"
21
+ ]
22
+ }
7
23
}
You can’t perform that action at this time.
0 commit comments