vn-verdnaturachat/app/views/RoomView/styles.js

69 lines
1.2 KiB
JavaScript
Raw Normal View History

import { StyleSheet } from 'react-native';
2019-04-17 17:01:03 +00:00
2019-03-29 19:36:07 +00:00
import {
COLOR_SEPARATOR, COLOR_PRIMARY, COLOR_WHITE, COLOR_TEXT_DESCRIPTION
} from '../../constants/colors';
import sharedStyles from '../Styles';
export default StyleSheet.create({
container: {
flex: 1,
2019-03-29 19:36:07 +00:00
backgroundColor: COLOR_WHITE
},
safeAreaView: {
flex: 1
},
list: {
2019-03-27 20:06:57 +00:00
flex: 1
},
2019-03-29 19:36:07 +00:00
contentContainer: {
paddingTop: 10
},
separator: {
height: 1,
2019-03-27 20:06:57 +00:00
backgroundColor: COLOR_SEPARATOR
},
2019-04-17 17:01:03 +00:00
loading: {
flex: 1,
Beta (#265) * Fabric iOS * Fabric configured on iOS and Android * - react-native-fabric configured - login tracked * README updated * Run scripts from README updated * README scripts * get rooms and messages by rest * user status * more improves * more improves * send pong on timeout * fix some methods * more tests * rest messages * Room actions (#266) * Toggle notifications * Search messages * Invite users * Mute/Unmute users in room * rocket.cat messages * Room topic layout fixed * Starred messages loading onEndReached * Room actions onEndReached * Unnecessary login request * Login loading * Login services fixed * User presence layout * ïmproves on room actions view * Removed unnecessary data from SelectedUsersView * load few messages on open room, search message improve * fix loading messages forever * Removed state from search * Custom message time format * secureTextEntry layout * Reduce android app size * Roles subscription fix * Public routes navigation * fix reconnect * - New login/register, login, register * proguard * Login flux * App init/restore * Android layout fixes * Multiple meteor connection requests fixed * Nested attachments * Nested attachments * fix check status * New login layout (#269) * Public routes navigation * New login/register, login, register * Multiple meteor connection requests fixed * Nested attachments * Button component * TextInput android layout fixed * Register fixed * Thinner close modal button * Requests /me after login only one time * Static images moved * fix reconnect * fix ddp * fix custom emoji * New message layout (#273) * Grouping messages * Message layout * Users typing animation * Image attachment layout
2018-04-24 19:34:03 +00:00
padding: 15,
2019-03-29 19:36:07 +00:00
color: COLOR_TEXT_DESCRIPTION
},
readOnly: {
justifyContent: 'flex-end',
alignItems: 'center',
marginVertical: 15
},
reactionPickerContainer: {
// width: width - 20,
// height: width - 20,
backgroundColor: '#F7F7F7',
borderRadius: 4,
flexDirection: 'column'
},
joinRoomContainer: {
justifyContent: 'flex-end',
alignItems: 'center',
marginVertical: 15
},
joinRoomButton: {
width: 107,
height: 44,
marginTop: 15,
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
2019-03-29 19:36:07 +00:00
backgroundColor: COLOR_PRIMARY,
borderRadius: 2
},
joinRoomText: {
2019-03-29 19:36:07 +00:00
color: COLOR_WHITE,
fontSize: 14,
2019-03-29 19:36:07 +00:00
...sharedStyles.textMedium
},
previewMode: {
fontSize: 16,
2019-03-29 19:36:07 +00:00
...sharedStyles.textMedium,
...sharedStyles.textColorNormal
}
});