# Scaffold

Scaffold widget is defined like this:

```dart
Scaffold()
```

## Options:

There are different options to add to the Scaffold

```dart
// appBar
appBar: AppBar(
title: const Text('title'),
elevation: 0,
)

// Body
body: Body(
child: // Widgets here
)

// Background Color
backgroundColor: Colors.white
```
