-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from EddyVerbruggen/boxType
boxType iOS-Android alignment
- Loading branch information
Showing
10 changed files
with
50 additions
and
47 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export enum BoxType { | ||
circle = <any>"circle", | ||
square = <any>"square" | ||
} |
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 |
---|---|---|
|
@@ -20,5 +20,5 @@ ListView{ | |
|
||
|
||
.fontBig { | ||
font-size: 40; | ||
font-size: 30; | ||
} |
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 |
---|---|---|
@@ -1,34 +1,32 @@ | ||
|
||
import { View } from "tns-core-modules/ui/core/view"; | ||
|
||
/** | ||
* Represents a CheckBox component. | ||
*/ | ||
export declare class CheckBox extends View { | ||
|
||
/** | ||
/** | ||
* Gets the native [android widget](https://developer.android.com/reference/android/widget/CheckBox.html) that represents the user interface for this component. Valid only when running on Android OS. | ||
*/ | ||
android: any /* android.widget.CheckBox */; | ||
android: any /* android.widget.CheckBox */; | ||
|
||
/** | ||
/** | ||
* Gets the ios Label with the checkbox as a subview | ||
*/ | ||
ios: any /* Label */; | ||
ios: any /* Label */; | ||
|
||
/** | ||
/** | ||
* Gets or sets if a switch is checked or not. | ||
*/ | ||
checked: boolean; | ||
checked: boolean; | ||
|
||
/** | ||
/** | ||
* Change the checked state of the view to the inverse of its current state. | ||
*/ | ||
toggle(): void; | ||
|
||
toggle(): void; | ||
} | ||
|
||
export interface CheckBoxInterface { | ||
text?: string; | ||
checked: boolean; | ||
toggle(): void; | ||
} | ||
text?: string; | ||
checked: boolean; | ||
toggle(): void; | ||
} |
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