build method

  1. @override
dynamic build(
  1. dynamic context
)

Implementation

@override
Widget build(BuildContext context) {
  return Center(
    child: Card(
      child: SelectionArea(
        child: Container(
          padding: const EdgeInsets.all(15),
          child: ListTile(
            leading: const Icon(Atlas.shield_chat_thin),
            title: Text(
              L10n.of(context).encryptedChatInfo,
              style: Theme.of(context).textTheme.labelSmall,
            ),
          ),
        ),
      ),
    ),
  );
}