Snack
Preview

Code sample
import { Snack } from '@dormakaba/digital-reactnative-visual';
<Snack
ref={(c) => { this.snack = c; }}
error
message="Lorem ipsum..."
/>
// to show use function on ref
this.snack.show();
// to hide use function on ref
this.snack.hide();
Props
Last updated