mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-26 05:43:34 +03:00
Add demonstratory zoom out button
This commit is contained in:
parent
645671265a
commit
e2455ec3f9
@ -13,6 +13,7 @@ import i18n from "./i18n";
|
||||
import DarkModeIcon from '@mui/icons-material/DarkMode';
|
||||
import LightModeIcon from '@mui/icons-material/LightMode';
|
||||
import SchoolIcon from '@mui/icons-material/School';
|
||||
import ZoomOutIcon from '@mui/icons-material/ZoomOut';
|
||||
|
||||
export default class App extends Component {
|
||||
constructor(props) {
|
||||
@ -20,10 +21,11 @@ export default class App extends Component {
|
||||
this.state = {
|
||||
dark: window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches,
|
||||
openLearn: false,
|
||||
theme: {typography: { fontSize: 14 }},
|
||||
}
|
||||
}
|
||||
|
||||
lightTheme = createTheme({});
|
||||
lightTheme = createTheme ({});
|
||||
|
||||
darkTheme = createTheme({
|
||||
palette: {
|
||||
@ -34,13 +36,25 @@ export default class App extends Component {
|
||||
},
|
||||
});
|
||||
|
||||
onZoomOutClick = () => {
|
||||
this.setState(({theme}) => ({
|
||||
theme: {
|
||||
...theme,
|
||||
typography: {
|
||||
fontSize: this.state.theme.typography.fontSize - 1,
|
||||
},
|
||||
}
|
||||
}));
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<Suspense fallback="loading language">
|
||||
<I18nextProvider i18n={i18n}>
|
||||
<ThemeProvider theme={this.state.dark ? this.darkTheme : this.lightTheme}>
|
||||
<ThemeProvider theme={this.state.dark ? this.darkTheme : createTheme(this.state.theme)}>
|
||||
<CssBaseline/>
|
||||
<LearnDialog open={this.state.openLearn} onClose={()=> this.setState({openLearn:false})}/>
|
||||
<IconButton sx={{position:'fixed',right:'68px'}} onClick={this.onZoomOutClick}><ZoomOutIcon/></IconButton>
|
||||
<IconButton sx={{position:'fixed',right:'34px'}} onClick={()=> this.setState({openLearn:true})}><SchoolIcon/></IconButton>
|
||||
<IconButton sx={{position:'fixed',right:'0px'}} onClick={()=>this.setState({dark:!this.state.dark})}>
|
||||
{this.state.dark ? <LightModeIcon/>:<DarkModeIcon/>}
|
||||
|
Loading…
Reference in New Issue
Block a user