mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
40 lines
775 B
JavaScript
40 lines
775 B
JavaScript
import React, { Component } from 'react';
|
|
import { StyleSheet } from 'react-native';
|
|
import { globalStyle, themeStyle } from 'lib/components/global-style.js';
|
|
|
|
const styleObject_ = {
|
|
screen: {
|
|
flex: 1,
|
|
backgroundColor: globalStyle.backgroundColor,
|
|
},
|
|
};
|
|
|
|
const styles_ = StyleSheet.create(styleObject_);
|
|
|
|
let rootStyles_ = {};
|
|
|
|
class BaseScreenComponent extends React.Component {
|
|
|
|
styles() {
|
|
return styles_;
|
|
}
|
|
|
|
styleObject() {
|
|
return styleObject_;
|
|
}
|
|
|
|
rootStyle(themeId) {
|
|
const theme = themeStyle(themeId);
|
|
if (rootStyles_[themeId]) return rootStyles_[themeId];
|
|
rootStyles_[themeId] = StyleSheet.create({
|
|
root: {
|
|
flex: 1,
|
|
backgroundColor: theme.backgroundColor,
|
|
},
|
|
});
|
|
return rootStyles_[themeId];
|
|
}
|
|
|
|
}
|
|
|
|
export { BaseScreenComponent }; |