1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
import React from 'react';
import PropTypes from 'prop-types';
import { withStyles } from '@material-ui/core/styles';
import CloseIcon from '@material-ui/icons/Close';
import {
Button,
Dialog,
DialogActions,
DialogContent,
DialogContentText,
DialogTitle,
List,
ListItem,
ListItemText,
Divider,
Grid,
AppBar,
Toolbar,
IconButton,
Typography,
Slide,
} from '@material-ui/core';
const styles = {
appBar: {
position: 'relative',
},
flex: {
flex: 1,
},
};
const Transition = React.forwardRef(function Transition(props, ref) { // eslint-disable-line
return <Slide direction="up" ref={ref} {...props} />;
});
class FullScreenDialog extends React.Component { // eslint-disable-line
state = {
open: false,
open2: false,
};
handleClickOpen = () => {
this.setState({ open: true });
};
handleClose = () => {
this.setState({ open: false });
};
handleClickOpen2 = () => {
this.setState({ open2: true });
};
handleClose2 = () => {
this.setState({ open2: false });
};
render() {
const { classes } = this.props;
return (
<div>
<Grid container spacing={2}>
<Grid item container alignItems="center" justify="center" md={6}>
<Button variant="contained" color="primary" onClick={this.handleClickOpen}>Open full-screen dialog</Button>
<Dialog
fullScreen
open={this.state.open}
onClose={this.handleClose}
TransitionComponent={Transition}
>
<AppBar className={classes.appBar}>
<Toolbar>
<IconButton color="inherit" onClick={this.handleClose} aria-label="Close">
<CloseIcon />
</IconButton>
<Typography variant="h6" color="inherit" className={classes.flex}>
Sound
</Typography>
<Button color="inherit" onClick={this.handleClose}>
save
</Button>
</Toolbar>
</AppBar>
<List>
<ListItem button>
<ListItemText primary="Phone ringtone" secondary="Titania" />
</ListItem>
<Divider />
<ListItem button>
<ListItemText primary="Default notification ringtone" secondary="Tethys" />
</ListItem>
</List>
</Dialog>
</Grid>
<Grid item container alignItems="center" justify="center" md={6}>
<Button variant="contained" color="secondary" onClick={this.handleClickOpen2}>Open responsive dialog</Button>
<Dialog
fullScreen
open={this.state.open2}
onClose={this.handleClose}
aria-labelledby="responsive-dialog-title"
>
<DialogTitle id="responsive-dialog-title">
{'Use location service?'}
</DialogTitle>
<DialogContent>
<DialogContentText>
Let Google help apps determine location. This means sending anonymous location data to
Google, even when no apps are running.
</DialogContentText>
</DialogContent>
<DialogActions>
<Button onClick={this.handleClose2} color="primary">
Disagree
</Button>
<Button onClick={this.handleClose2} color="primary" autoFocus>
Agree
</Button>
</DialogActions>
</Dialog>
</Grid>
</Grid>
</div>
);
}
}
FullScreenDialog.propTypes = {
classes: PropTypes.object.isRequired,
};
export default withStyles(styles)(FullScreenDialog);
|