WHAT IS MORSE CODE?

In the following article, we’ll talk about different things related to morse code such as what is morse code, what is morse code for, who invented morse code, what is the morse code for SOS, what is morse code for S O S,what is morse code for SOS, who created morse code, etc. Hopefully, you’ll […]

Vue Owl Carousel | Owl Carousel in Vue JS Fix

  If you have tried to use jquery version of owl carousel in your existing vuejs project or tried to convert jquery based application to vuejs you might have trouble making owl carousel to work flawlessly. The carousel might load correctly for the first time of page reload but not after a change in routes. […]

Passing Arguments in Native Script Vue Tap Event Tutorial

  Passing arguments in button click event are the most commonly needed functionality in many mobile applications. In case of applications such as quiz, tic tac toe or anything which has an array of buttons /elements handling the event for all of them at once might seem like a difficult task. The purpose of this […]

Making a Tic Tac Toe game in Vue JS Tutorial

In our previous tutorial, we have made the tic tac toe game in javascript using modern class-based syntax added in ES6. In this post, we are going to clone the same game in VueJS instead. If you are learning Vue js or just want to know how can we convert existing JS applications to vuejs […]

Top 10 ES6 Features Every JS Developer Must Know

ECMAScript 2016 also known as ES6 has added many exciting features in the javascript developer toolbox. Released in June 2015, ES6 is the successor of ES5 which was released in December 2009. ES6 specially added many shortcuts to make it, even more, user-friendly. It added lots of missing features all modern developer needs in a […]

5 ways to create an object in JavaScript

The object is the fundamental part of any modern OOP language. JS is very different in the case of objects compared to other programming languages. Unlike another language, we can create an object in javascript using multiple ways. As objects are treated as first-class entities in javascript we can easily store, manipulate and transfer it […]

How to Make your application Full Screen/ Immersive in Nativescript Vue ?

Sometimes your application needs to be a full screen reserving all the available space in the screen. You can implement this functionality in native script Vue using with 2 ways. 1. From Source code implement this function in the mounted() method of your activity. if (app.android) { const activity = app.android.startActivity; const win = activity.getWindow(); win.addFlags(android.view.WindowManager.LayoutParams.FLAG_FULLSCREEN); […]

How to set multiple line on Textview/Label with Nativesctipt Vue

Implementing multiline text in the label of your Native script Vue application is not so straightforward as you have thought. The newline character in your text won’t be rendered into the newline directly if you are the binding text for that particular element. But there’s a small workaround to fix this issue. Method 1: Use […]