This file contains hidden or 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
<picture> | |
<!--[if IE 9]><video style="display: none;"><![endif]--> | |
<source srcset="img-2560-land.webp" type="image/webp" media="(min-width: 1440px)" /> | |
<source srcset="img-2560-land.jpg" type="image/jpg" media="(min-width: 1440px)" /> | |
<source srcset="img-1920-land.webp, img-3888-land.webp 1.5x" type="image/webp" media="(min-width: 1024px)" /> | |
<source srcset="img-1920-land.jpg, img-3888-land.jpg 1.5x" type="image/jpg" media="(min-width: 1024px)" /> | |
<source srcset="img-768.webp, img-768-1.5x.webp 1.5x" type="image/webp" media="(min-width: 768px)" /> | |
<source srcset="img-768.jpg, img-768-1.5x.jpg 1.5x" type="image/jpg" media="(min-width: 768px)" /> |
This file contains hidden or 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
React-redux | |
Redux | |
redux-saga(need to learn)- useful library to dispatch actions from functions | |
React-native redux persist - useful to store data within local storage, help us to use locally stored data when there is no inetrenet on mobile. | |
React-native drawer | |
Native-base (for ready to use design/ui components) | |
React-native-scrollable tab view | |
React-native-dismiss-keyboard(iOS) | |
React-native Push notification | |
react-native youtube(buggy on android) |
This file contains hidden or 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
-webkit-transition: all 0.35s; | |
-moz-transition: all 0.35s; | |
-ms-transition: all 0.35s; | |
-o-transition: all 0.35s; | |
transition: all 0.35s; |
This file contains hidden or 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
-webkit-transform: /* add value */ ; | |
-moz-transform: /* add value */ ; | |
-ms-transform: /* add value */ ; | |
-o-transform: /* add value */ ; | |
transform: /* add value */ ; |
This file contains hidden or 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
-webkit-transform-origin: /* add value */; | |
-moz-transform-origin: /* add value */; | |
-ms-transform-origin: /* add value */; | |
-o-transform-origin: /* add value */; | |
transform-origin: /* add value */; |
This file contains hidden or 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
-webkit-animation: /* add value */; | |
-moz-animation: /* add value */; | |
-ms-animation: /* add value */; | |
-o-animation: /* add value */; | |
animation: /* add value */; |
This file contains hidden or 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
@-webkit-keyframes /* animation name */ { | |
from { /* add properties */ } | |
to { /* add properties */ } | |
} | |
@-moz-keyframes /* animation name */ { | |
from { /* add properties */ } | |
to { /* add properties */ } | |
} | |
@-ms-keyframes /* animation name */ { | |
from { /* add properties */ } |
This file contains hidden or 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
display: -webkit-flex; | |
display: -webkit-box; | |
display: -moz-box; | |
display: -ms-flexbox; | |
display: flex; |
This file contains hidden or 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
/* $values = Combination of flex-grow, flex-shrink, and flex-basis */ | |
-webkit-box-flex: $values; | |
-webkit-flex: $values; | |
-moz-box-flex: $values; | |
-ms-flex: $values; | |
flex: $values; |
This file contains hidden or 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
-webkit-order: /* add value */; | |
-moz-order: /* add value */; | |
-ms-flex-order: /* add value */; | |
order: /* add value */; |
OlderNewer