![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
react-native-popup-confirm-toast
Advanced tools
![platforms](https://img.shields.io/badge/platforms-Web%20%7C%20Android%20%7C%20iOS-brightgreen.svg?style=flat-square&colorB=191A17) [![npm](https://img.shields.io/npm/v/@sekizlipenguen/react-native-popup-confirm-toast.svg?style=flat-square)](https://www.
A flexible and user-friendly popup, toast, and bottom sheet solution for React Native. This package provides customizable components for displaying interactive messages, confirmation dialogs, and toast notifications in your mobile applications.
Note: This package has been moved to the @sekizlipenguen
scope for improved organization and better support for future updates.
Custom Example 1 | Custom Example 2 | Custom Example 3 | Custom Example 4 |
---|---|---|---|
![]() | ![]() | ![]() | ![]() |
Example Message | Example Confirm Message | Example Message AutoClose | Example Custom Body Component |
---|---|---|---|
![]() | ![]() | ![]() | ![]() |
Example Toast Top | Example Toast Bottom |
---|---|
![]() | ![]() |
yarn add react-native-popup-confirm-toast
or
npm install react-native-popup-confirm-toast
Wrap your root component in Provider from react-native-popup-confirm-toast. If you have a vanilla React Native project, it's a good idea to add it in the component which is passed to AppRegistry.registerComponent. This will usually be in the index.js file. If you have an Expo project, you can do this inside the exported component in the App.js file.
import * as React from 'react';
import { AppRegistry } from 'react-native';
import {Root as PopupRootProvider} from 'react-native-popup-confirm-toast';
import { name as appName } from './app.json';
import App from './src/App';
export default function Main() {
return (
<PopupRootProvider>
<App />
</PopupRootProvider>
);
}
AppRegistry.registerComponent(appName, () => Main);
import { Root, SPSheet } from 'react-native-popup-confirm-toast'
const component = (props) => {
//hook or class
return (<Text>Hi, SekizliPenguen</Text>);
//props.spSheet.hide();
//props.spSheet.setHeight(150,()=>alert('nice'));
};
<View>
<TouchableOpacity
onPress={() => {
const spSheet = SPSheet;
spSheet.show({
component: () => component({...this.props, spSheet}),
dragFromTopOnly: true,
onCloseComplete: () => {
alert('onCloseComplete');
},
onOpenComplete: () => {
alert('onOpenComplete');
},
height:260
});
}
>
<Text>Open SPSheet Message</Text>
</TouchableOpacity>
</View>
import {Popup} from 'react-native-popup-confirm-toast'
<View>
<TouchableOpacity
onPress={() =>
Popup.show({
type: 'success',
title: 'Success!',
textBody: 'Mutlak özgürlük, kendi başına hiçbir anlam ifade etmez. ',
buttonText: 'OK',
callback: () => Popup.hide()
})
}
>
<Text>Open Popup Message</Text>
</TouchableOpacity>
</View>
import {Popup} from 'react-native-popup-confirm-toast'
<View>
<TouchableOpacity
onPress={() =>
Popup.show({
type: 'confirm',
title: 'Dikkat!',
textBody: 'Mutlak özgürlük, kendi başına hiçbir anlam ifade etmez. ',
buttonText: 'Tamam',
confirmText: 'Vazgeç',
callback: () => {
alert('Okey Callback && hidden');
Popup.hide();
},
cancelCallback: () => {
alert('Cancel Callback && hidden');
Popup.hide();
},
})
}
>
<Text>Open Popup Confirm Message</Text>
</TouchableOpacity>
</View>
import { Root, Popup } from 'react-native-popup-confirm-toast'
//hooks or class component
const bodyComponent = ({props,bodyProps}) => {
return (
<View onLayout={(e}=>bodyProps.onLayout(e)}>
<Text>Mustafa Kemal ATATÜRK</Text>
</View>
);
}
<Root>
<View>
<TouchableOpacity
onPress={() => {
const popup = Popup;
popup.show({
type: 'confirm',
textBody: 'Hesabınızın silinme işlemini onaylamak için şifrenizi giriniz.',
bodyComponent: (bodyProps) => bodyComponent({...props,bodyProps,popup}),
confirmText: 'Cancel',
iconEnabled: false,
buttonEnabled: false,
});
}}
>
<Text>Open Popup Confirm Message</Text>
</TouchableOpacity>
</View>
</Root>
import { Root, Toast } from 'react-native-popup-confirm-toast'
<Root>
<View>
<TouchableOpacity
onPress={() =>
Toast.show({
title: 'I\'m Eight!',
text: 'The best gift I received in this life are the codes. They are worlds inside the worlds.',
backgroundColor: '#702c91',
timeColor: '#440f5f',
timing: 3000,
icon: <Icon name={'check'} color={'#fff'} size={31}/>,
position: 'bottom',
statusBarType:'dark-content',
onCloseComplete: () => {
alert('onCloseComplete');
},
onOpenComplete: () => {
alert('onOpenComplete');
},
})
}
>
<Text>Open Bottom Toast</Text>
</TouchableOpacity>
<TouchableOpacity
onPress={() =>
Toast.show({
title: 'I\'m Eight!',
text: 'The best gift I received in this life are the codes. They are worlds inside the worlds.',
backgroundColor: '#702c91',
timeColor: '#440f5f',
timing: 3000,
icon: <Icon name={'check'} color={'#fff'} size={31}/>,
position: 'top',
statusBarTranslucent: false,
statusBarType:'light-content',
onCloseComplete: () => {
alert('onCloseComplete');
},
onOpenComplete: () => {
alert('onOpenComplete');
},
})
}
>
<Text>Open Top Toast</Text>
</TouchableOpacity>
</View>
</Root>
Key | Type | Description | Default |
---|---|---|---|
background | string | rgba(0, 0, 0, 0.5) | |
height | number | auto height (min: 250) | 250 |
duration | number | animation time used when opening | 250(ms) |
closeDuration | number | animation time used when closing | 300(ms) |
closeOnDragDown | boolean | Use drag with motion to close the window | true |
closeOnPressMask | boolean | press the outside space to close the window | true |
closeOnPressBack | boolean | Press the back key to close the window (Android only) | true |
dragTopOnly | boolean | use only the top area of the draggable icon to close the window | false |
component | component(hook or class) | custom modal component container | null |
onOpen | function | works after the window is opened | null |
onOpenComplete | function | works after the window is opened | null |
onClose | function | works after window is closed | null |
onCloseComplete | function | works after window is closed | null |
customStyles | object | customStyles: { draggableIcon: {}, container: {}, draggableContainer:{} } | {} |
timing | number | Use this parameter for automatic shutdown. | 0(ms) |
keyboardHeightAdjustment | boolean | re-adjusts the height when the keyboard is opened | false |
Key | Type | Description | Default |
---|---|---|---|
title | string | false | |
textBody | string | false | |
bodyComponent | component(hook or class) | custom modal component container | null |
bodyComponentForce | boolean | The component you specify covers the entire space | false |
onLayout | (event: LayoutChangeEvent) => void | Triggers automatically to calculate and adjust the height of the popup component during rendering. | - |
type | enum | enum(success, info, danger, warning, confirm) | warning |
buttonText | string | Ok | |
confirmText | string | Cancel | |
callback | function | ok button press | popupHidden |
cancelCallback | function | cancel button press | popupHidden |
background | string | rgba(0, 0, 0, 0.5) | |
timing | number | 0 > autoClose | 0 |
iconEnabled | boolean | true | |
iconHeaderStyle | object | {height: 75, width: 100, backgroundColor: '#fff'} | |
icon | requireUrl | require('../assets/{type}.png') | |
containerStyle | object | { position: 'absolute', zIndex: 10, backgroundColor: 'rgba(0, 0, 0, 0.5)', alignItems: 'center', top: 0, left: 0,} | |
modalContainerStyle | object | { width: '90%',backgroundColor: '#fff', borderRadius: 8, alignItems: 'center', overflow: 'hidden', position: 'absolute'}} | |
buttonContentStyle | object | {} | |
okButtonStyle | object | {backgroundColor: '#702c91'} | |
confirmButtonStyle | object | default | |
okButtonTextStyle | object | default | |
confirmButtonTextStyle | object | default | |
titleTextStyle | object | default | |
descTextStyle | object | default | |
bounciness | number | 15 | |
onClose | function | when the popup is first closed | false |
onCloseComplete | function | false | |
onOpen | function | when the popup is first opened | false |
onOpenComplete | function | false | |
duration | boolean | 100 | |
closeDuration | boolean | 100 |
Key | Type | Description | Default |
---|---|---|---|
title | string | false | |
text | string | Description | false |
titleTextStyle | object | {color: '#fff',fontWeight: 'bold',fontSize: 16} | |
descTextStyle | object | {marginTop: 5,fontSize: 13,color: '#fff', fontWeight: '400',} | |
backgroundColor | string | #1da1f2 | |
timeColor | string | time backgroundColor | #1c6896 |
position | enum | parameters => top, bottom | bottom |
icon | component | (react-native-vector-icons or | null |
timing | number | 5000 ms | |
statusBarType | string | default | |
statusBarTranslucent | boolean | false | |
statusBarHidden | boolean | false | |
statusBarAndroidHidden | boolean | true | |
statusBarAppleHidden | boolean | false | |
hiddenDuration | number | 200 ms | |
startDuration | number | 200 ms | |
onOpen | function | works after the window is opened | null |
onOpenComplete | function | works after the window is opened | null |
onClose | function | works after window is closed | null |
onCloseComplete | function | works after window is closed | null |
Component Name | Method Name | Example | Description |
---|---|---|---|
SPSheet | show | const spSheet = SPSheet; spSheet.show(config); | |
SPSheet | hide | const spSheet = SPSheet; spSheet.hide(); | |
SPSheet | setHeight | const spSheet = SPSheet; spSheet.setHeight(500,completeEventFunction); | allows you to change the box height |
Popup | show | const popup = Popup; popup.show(config); | |
Popup | hide | const popup = Popup; popup.hide(); | |
Toast | show | const toast = Toast; toast.show(config); | |
Toast | hide | const toast = Toast; toast.hide(); |
import {getStatusBarHeight} from 'react-native-popup-confirm-toast';
SekizliPenguen
FAQs
![platforms](https://img.shields.io/badge/platforms-Web%20%7C%20Android%20%7C%20iOS-brightgreen.svg?style=flat-square&colorB=191A17) [![npm](https://img.shields.io/npm/v/@sekizlipenguen/react-native-popup-confirm-toast.svg?style=flat-square)](https://www.
The npm package react-native-popup-confirm-toast receives a total of 132 weekly downloads. As such, react-native-popup-confirm-toast popularity was classified as not popular.
We found that react-native-popup-confirm-toast demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.