**이 페이지에서 알 수 있는 내용 このページからわかること

- Drawer
	- elevation
- SafeArea**
	

main.dart

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            const Text(
              'You have pushed the button this many times:',
            ),
          ],
        ),
      ),
      drawer: Drawer(elevation: 400,
        child: SafeArea(
          child:Text('こんにちは')
        ),
      ),
    );
  }
}

Untitled

Untitled

Untitled

Drawer

elevation

SafeArea