Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 14 additions & 16 deletions sdk/app/app.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.title {
@import '~nativescript-theme-core/css/core.light.css';

.title {
font-size: 30;
horizontal-align: center;
margin:20;
Expand All @@ -20,7 +22,7 @@ button {
}

.drawerContent {
background-color: gray;
background-color: lightgray;
}

.drawerContentText {
Expand Down Expand Up @@ -83,18 +85,6 @@ button {
padding: 5;
}

.titleLabel {
margin: 16;
vertical-align: center;
}

.itemStackLayout {
text-align: left;
vertical-align: center;
font-size: 16;
color:#404040;
}

.label {
margin-left: 20;
margin-top: 20;
Expand All @@ -107,7 +97,15 @@ button {
font-weight: bold;
}

.item-template-style{
.item-template-style {
border-width:1;
border-color: gray;
}
}

.btn {
margin: 0;
}

/* .test {
background-color: red;
} */
3 changes: 2 additions & 1 deletion sdk/app/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ declare module com {


if (application.android) {
require("./main-activity.android.ts");
application.on("launch", (intent) => {
fresco.initialize();
});
}

application.start("./navigation/category-list-page");
application.run({ moduleName: "navigation/category-list-page" });
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export class ViewModel extends observableModule.Observable {

public onOptionsTapped() {
var navigationEntry = {
moduleName: "./navigation/options-menu/options",
moduleName: "navigation/options-menu/options",
context: this._viewModesInfo,
animated: true
};
Expand Down
2 changes: 1 addition & 1 deletion sdk/app/calendar/cell-styling/cell-styles-model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export class StylingViewModel extends Observable {

public onOptionsTapped() {
var navigationEntry = {
moduleName: "./navigation/options-menu/options",
moduleName: "navigation/options-menu/options",
context: this._selectionInfo,
animated: true
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class ViewModel extends observableModule.Observable {

public onOptionsTapped() {
var navigationEntry = {
moduleName: "./navigation/options-menu/options",
moduleName: "navigation/options-menu/options",
context: this._viewModesInfo,
animated: true
};
Expand Down
2 changes: 1 addition & 1 deletion sdk/app/calendar/selection-modes/selection-modes-model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class ViewModel extends observableModule.Observable{

public onOptionsTapped() {
var navigationEntry = {
moduleName: "./navigation/options-menu/options",
moduleName: "navigation/options-menu/options",
context: this._selectionInfo,
animated: true
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class ViewModel extends observableModule.Observable {

public onOptionsTapped() {
var navigationEntry = {
moduleName: "./navigation/options-menu/options",
moduleName: "navigation/options-menu/options",
context: this._transitionInfo,
animated: true
};
Expand Down
2 changes: 1 addition & 1 deletion sdk/app/calendar/view-modes/view-modes-model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class ViewModel extends observableModule.Observable{

public onOptionsTapped() {
var navigationEntry = {
moduleName: "./navigation/options-menu/options",
moduleName: "navigation/options-menu/options",
context: this._selectionInfo,
animated: true
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class ViewModel extends Observable {
public onOptionsTapped(args: any) {
if (frameModule.topmost().ios) {
var navigationEntry = {
moduleName: "./navigation/options-menu/options",
moduleName: "navigation/options-menu/options",
context: this._selectionInfo,
animated: true
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class ViewModel extends Observable {
public onOptionsTapped(args: any) {
if (frameModule.topmost().ios) {
var navigationEntry = {
moduleName: "./navigation/options-menu/options",
moduleName: "navigation/options-menu/options",
context: this._selectionInfo,
animated: true
};
Expand Down
Loading