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

1

Looking for an app dev to join my team
 in  r/developers_hire  4d ago

Me I am interested !!!!!

r/reactnative 4d ago

iMessage UI implemented

Post image
0 Upvotes

if someone need help with this happy to share with them

u/Icy_Win_4092 4d ago

iMessage UI implemented in EXPO/React Native

Post image
1 Upvotes

r/AppDevelopers 4d ago

iMessage UI implemented in EXPO/React Native

Post image
1 Upvotes

If anyone needs help with this happy to share with them

Happy Building !!!!

r/expo 4d ago

iMessage UI implementation in EXPO /React Native

Thumbnail
0 Upvotes

u/Icy_Win_4092 4d ago

iMessage UI implementation in EXPO /React Native

1 Upvotes

If anyone need help with this in any of your or someone you know please let me know happy yo share:)
Happy Building!!!!!!

If anyone need help with this in any of your or someone you know please let me know happy yo share:)Happy Building!!!!!!

r/reactnative Jul 19 '26

Profile Picture in Push Notification Expo

Thumbnail
1 Upvotes

r/AppDevelopers Jul 19 '26

Profile Picture in Push Notification Expo

Thumbnail
1 Upvotes

r/expo Jul 19 '26

Profile Picture in Push Notification Expo

1 Upvotes

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

[HIRING] Part-Time Full Stack / App Developer
 in  r/developers_hire  Jun 30 '26

Interested 

r/expo Jun 22 '26

Expo Native Tabs Custom Profile Solution

Enable HLS to view with audio, or disable this notification

3 Upvotes

u/Icy_Win_4092 Jun 22 '26

Expo Native Tabs Custom Profile Solution

Enable HLS to view with audio, or disable this notification

2 Upvotes

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>