buildWithSPI method

Builds a Widget using the data extracted from the state.

Implementation

@override
Widget buildWithSPI(StartDeleteAccountScreenSPI spi) {
      final t = spi.t;
      final body = _buildBody(spi);
      return t.childScaffold(
        spi: spi,
        body: body,
        appBar: AppBar(
          title: t.childText(text: "Delete Account"),
          leading: t.leadingButtonStandardBack(spi, screen: screenId),
          automaticallyImplyLeading: false,
        ),
      );
}