buildWithSPI method

Builds a Widget using the data extracted from the state.

Implementation

@override
Widget buildWithSPI(ProcessAccountDeletionScreenSPI spi) {
  final t = spi.t;
  final body = _buildBody(spi);
  return t.childScaffold(
    spi: spi,
    body: body,
    appBar: AppBar(
      automaticallyImplyLeading: false,
      title: t.childText(text: AFSITranslationID.titleDeletingAccount)
    ),
  );
}