# Home Screen

### Location

magaza\_ui/screens/home.dart

### Screenshot

![](https://436780-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M1f1D_inwZ2KLboxO9P%2F-M2hTarDFktFqQJFaeNU%2F-M2hUNC8tRBClWGEek67%2Fimage.png?alt=media\&token=def3893d-6636-4e56-b96e-474a189bfb9d)

### Customization

HomeScreen is a collection of FeedItem() widgets wrapped in a Flat FlatButton. FeedItem widgets take five parameters for use. See example below:

```
FlatButton(
  padding: EdgeInsets.zero,
  onPressed: (){
    Navigator.pushNamed(context, '/story-highlight');
  },
  child: FeedItem(
    title: 'Himalayas',
    timestamp: '23 Mins ago',
    category: 'SOCIAL',
    imageUrl: 'https://i.picsum.photos/id/866/300/200.jpg',
    special: true,
  ),
),
```

�Adding a 'special' property to **true** will add a 'special' tag to the FeedItem() widget.&#x20;
