1. npm init 2. to the project folder -> npm install node-sass –save-dev 3. go to package.json -> dependancy -> and you will able to see sass… Read more “Setup scss project”
Category: A
Meaning and how to use Developer tool in iPhone?
There are very helpful developer tools available to enhance and ease our app development process. How to check available developer tool : go to Setting -> Developer… Read more “Meaning and how to use Developer tool in iPhone?”
How to pass data between screens in iOS Swift (Forward)
1. Using programatically to implement this method we are considering we have one viewcontroller in storyboard having identifier //FirstViewController import UIKit class FirstViewController: UIViewController { var myName… Read more “How to pass data between screens in iOS Swift (Forward)”
General use Verbs
1. Ekimasu – to Go 2. Tabemasu – to Eat 3. Arimasu – There is 4. imasu – to be / exist Note: arimasu and imasu are 2… Read more “General use Verbs”
Run iOS app wirelessly on iPhone using Xcode
Make sure you have at least Xcode 9 or later and a device with iOS 11 or later 1- Open your project on Xcode 2- Plugged in your iPhone with… Read more “Run iOS app wirelessly on iPhone using Xcode”
RxSwift – Observe IBOutlet change
// // ViewController.swift // RxSwift-example1 // // Created by sandesh sardar on 23/05/19. // Copyright © 2019 sandesh sardar. All rights reserved. // import UIKit import RxSwift… Read more “RxSwift – Observe IBOutlet change”
In Sass, difference between Mixins and Extend features?
@mixin Here is how the mixin works. The definition and usage: @mixin awesome { width: 100%; height: 100%; } body { @include awesome; } p { @include awesome;… Read more “In Sass, difference between Mixins and Extend features?”
All about GULP (with project structure)
Refer – https://css-tricks.com/gulp-for-beginners/ (Best link to learn gulp as per personal experience)
Difference between Display inline, inline-block, block
Inline elements: The default value for elements. Takes left & right margins and padding, but not top & bottom An inline element will accept margin and padding, but the element… Read more “Difference between Display inline, inline-block, block”
How to add border in clip-path CSS
Can border be applied to a clipped element along the clip path? No, adding border property to the clipped element would not apply the borders along the clipped… Read more “How to add border in clip-path CSS”