Silvan
Silvan
Are you importing the Remirror styles? ```tsx import "remirror/styles/all.css"; ``` Or when you want to import the placeholder styles only: ```tsx import "remirror/styles/extension-placeholder.css"; ```
In my case adding `react-native` to the `resolverMainFields` in the Metro config seemed to have solved the issue. ```js resolver: { /* ... */ resolverMainFields: ["react-native", "browser", "main"], /* ......
@jpudysz I was wondering if, in theory, although `useAnimatedTheme` is an awesome addition that technically works well in my case, it would also be an option to support making my...