Rodion Golovushkin
Rodion Golovushkin
@Faisal-Manzer sure, what do you want to discuss? I see there were the reasons why you decided to change approach https://github.com/Faisal-Manzer/postcss-viewport-height-correction/issues/3 However, I didn't notice any zoom issues on my...
hey guys, I believe [onLayout](https://facebook.github.io/react-native/docs/view#onlayout) will resolve your issue. That event let you know view's dimensions. Please take a look next video: https://caster.io/lessons/advanced-react-native-getting-the-screen-or-a-views-dimensions
code example: ```jsx import React from 'react'; import { BoxShadow } from 'react-native-shadow'; function getShadowSettings(width, height) { return { width: width, height: height, color: colors.third, border: 6, opacity: 0.1, x:...
@JamieCorkhill You are welcome, I faced with the same issue today :) There is just one requirement for ShadowBox component, it should have only one child now.
@canpoyrazoglu try the new version: ```js import React from 'react'; import { BoxShadow } from 'react-native-shadow'; import { View } from 'react-native'; export function getShadowSettings(width, height) { return { width:...
Hey there, you can easily implement that feature by yourself. `maskedInput.vue` ```vue import { mask } from 'vue-the-mask'; export default { inheritAttrs: false, directives: { mask }, props: { value:...
updated example: ```vue import { mask } from 'vue-the-mask'; export default { directives: { mask }, inheritAttrs: false, props: { value: { type: String, required: true, }, mask: { type:...
Hey, I have the same issue! is there any workaround to fix that?
any progress on this one?
@nikita-vanyasin Thanks for sharing! Btw, you can achieve the same without forking by inheritance and overriding, my example: ```js import Table from '@editorjs/table' export default class TableWithoutSanitize extends Table {...