mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
24 lines
620 B
TypeScript
24 lines
620 B
TypeScript
import * as React from 'react';
|
|
import { StyleSheet } from 'react-native';
|
|
const { themeStyle } = require('./global-style.js');
|
|
|
|
const rootStyles_: Record<number, any> = {};
|
|
|
|
class BaseScreenComponent<Props, State> extends React.Component<Props, State> {
|
|
|
|
protected rootStyle(themeId: number) {
|
|
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 };
|
|
export default BaseScreenComponent;
|