1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // @flow
- import variable from './../variables/platform';
- import { PLATFORM } from './../variables/commonColor';
- export default (variables /* : * */ = variable) => {
- const platform = variables.platform;
- const toastTheme = {
- '.danger': {
- backgroundColor: variables.brandDanger
- },
- '.warning': {
- backgroundColor: variables.brandWarning
- },
- '.success': {
- backgroundColor: variables.brandSuccess
- },
- backgroundColor: 'rgba(0,0,0,0.8)',
- borderRadius: platform === PLATFORM.IOS ? 5 : 0,
- flexDirection: 'row',
- justifyContent: 'space-between',
- alignItems: 'center',
- padding: 10,
- minHeight: 50,
- 'NativeBase.Text': {
- color: '#fff',
- flex: 1
- },
- 'NativeBase.Button': {
- backgroundColor: 'transparent',
- height: 30,
- elevation: 0,
- 'NativeBase.Text': {
- fontSize: 14
- }
- }
- };
- return toastTheme;
- };
|