Customizing your widget's view
At present, your widget displays the restaurant's name in black text on a white background. You'll configure the widget to more closely match the look of your app. Click LetsEatWidget.swift
in the Project navigator and modify the structure of LetsEatWidgetEntryView
as follows:
struct LetsEatWidgetEntryView : View { var entry: Provider.Entry var body: some View { ZStack { Color(.darkGray) VStack { Text(entry.restaurantTitle) ...