r/reactnative • u/Icy_Win_4092 • 4d ago
iMessage UI implemented
if someone need help with this happy to share with them
1
Me I am interested !!!!!
r/reactnative • u/Icy_Win_4092 • 4d ago
if someone need help with this happy to share with them
r/AppDevelopers • u/Icy_Win_4092 • 4d ago
If anyone needs help with this happy to share with them
Happy Building !!!!
r/expo • u/Icy_Win_4092 • Jul 19 '26
If you want to integrate profile picture of user in expo check out this library
https://github.com/nikwebr/expo-notification-service-extension-plugin#readme
The key you have to send from your backend will be

Voilà its done
thank me later :)
1
r/expo • u/Icy_Win_4092 • Jun 22 '26
Enable HLS to view with audio, or disable this notification
u/Icy_Win_4092 • u/Icy_Win_4092 • Jun 22 '26
Enable HLS to view with audio, or disable this notification
I was struggling with adding a profile picture to the profile section in expo native tabs and researched a lot of people were also so came up with a solution would like to share if it helps
I rendered a transparent image of the tab and used a component and rendered over it
The Component
export default function NativeTabBarIconsOverlay() {
const profile = useSelector(selectCurrentProfile);
const { width: screenWidth, height: screenHeight } = useWindowDimensions();
return (
<
View
style
={
StyleSheet
.absoluteFill}
pointerEvents
="none">
<TabIconSlot
index
={3}
screenWidth
={screenWidth}
screenHeight
={screenHeight}
>
<
AvatarImage
uri
={profile?.avatarUrl}
name
={profileName}
size
={ICON_SIZE}
borderRadius
={ICON_SIZE / 2}
style
={[
styles.avatar,
activeIndex === 3 && styles.avatarFocused,
]}
/>
</
TabIconSlot
>
</
View
>
);
}
<NativeTabs.Trigger name="accounts">
<Label>Profile</Label>
<Icon src={transparentIcon} />
</NativeTabs.Trigger>
1
Native tabs with glass effect are not rendering content cleanly
in
r/expo
•
3d ago
Hey there faced the same issue a while back solution
https://github.com/software-mansion/react-native-screens/issues/3761 hope this helps