* Update screens * Update login tests * Remove done * Fix failing tests * Update screens and components * Check styles fix * Update tests * Prevent setState call after component unmounts * Add empty setButtons func to dummy navigator * Remove platform check * Remove Platform import * Update react-native-navigation version * Add separate showModalOverCurrentContext function * check-style fixes * Remove overriding of AppDelegate's window * Fix modal over current context animation * Add showSearchModal navigation action * Check-style fix * Address review comments
28 lines
494 B
Text
28 lines
494 B
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`AttachmentButton should match snapshot 1`] = `
|
|
<TouchableOpacity
|
|
activeOpacity={0.2}
|
|
onPress={[Function]}
|
|
style={
|
|
Object {
|
|
"alignItems": "center",
|
|
"height": 34,
|
|
"justifyContent": "center",
|
|
"width": 45,
|
|
}
|
|
}
|
|
>
|
|
<Icon
|
|
allowFontScaling={false}
|
|
color="rgba(61,60,64,0.9)"
|
|
name="md-add"
|
|
size={30}
|
|
style={
|
|
Object {
|
|
"marginTop": 2,
|
|
}
|
|
}
|
|
/>
|
|
</TouchableOpacity>
|
|
`;
|