Pedro Moraes
Pedro Moraes
I think service providers are loaded before app/start, so I'm not sure there is much to be done.
Workaround is to use `connectStyle`: ``` import { connectStyle } from '@shoutem/theme'; import {TextInput as RNTextInput} from 'react-native'; const TextInput = connectStyle('shoutem.ui.TextInput')((p) => ( p.getRef(a)} /> )); ```
``` import ( "image" "image/color" "github.com/disintegration/imaging" ) func resizeImage(src image.Image, w, h int) image.Image { dst := imaging.New(w, h, color.White) tmp := imaging.Fit(src, w, h, imaging.CatmullRom) iw := tmp.Rect.Bounds().Max.X -...