title component

This commit is contained in:
Juan Marulanda De Los Rios 2024-08-12 12:13:48 -04:00
parent ae5fc1304a
commit 2fdd0a4d66

View File

@ -400,11 +400,30 @@ class _EmailViewState extends State<EmailView> {
appBar: AppBar( appBar: AppBar(
title: Text(widget.name), title: Text(widget.name),
), ),
body: HtmlElementView( body: Column(
children: [
// Container(
// color: Colors.amber,
// child: Text(
// widget.from ,),
// ),
Row(
children: [
Text(
widget.subject,
style: TextStyle(fontSize: 30),
),
],
),
Expanded(
child: HtmlElementView(
key: iframeKey, key: iframeKey,
viewType: iframeKey.toString(), viewType: iframeKey.toString(),
// 'html-view33', // 'html-view33',
), ),
)
],
)
); );
} }
} }