Pierre Skowron

Results 14 comments of Pierre Skowron

Any quick fix / clue for it? PLEASE I need it now, not in July tbh..

Here is my trick: **home.html** ```html ``` **home.ts** ```typescript @ViewChild('zoomWrapper') zoomWrapper: ElementRef; @ViewChild('zoomImg') zoomImg: ElementRef; ngOnInit() { if (this.zoomWrapper && this.zoomImg) { // this is to set the container's height...

It works in my case.. But it's super _hacky_ IMO

I'm writing a custom component as such ```tsx import React from "react"; import FontAwesome6 from "@react-native-vector-icons/fontawesome6"; import { useTheme } from "../../Hooks"; type IconProps = { name: React.ComponentProps["name"]; size?: number;...