React Native Manual Trigger
Even with shake trigger enabled, keep a manual trigger in Settings/Help.
await Fidbek.open();
Example button
import {Pressable, Text} from 'react-native';
import Fidbek from '@saltware/fidbek-react-native';
export function OpenFidbekButton() {
return (
<Pressable onPress={() => Fidbek.open()}>
<Text>Send Feedback</Text>
</Pressable>
);
}
Timing guidance
If app startup is still rendering, delay manual open until UI interactions complete.