|
@@ -137,13 +137,24 @@ class ContentImage extends StatelessWidget implements FWidget {
|
|
|
child: _buildAIDiagnosticOrgans(),
|
|
|
)
|
|
|
: const SizedBox(),
|
|
|
- isCarotidResult
|
|
|
- ? Positioned(
|
|
|
- bottom: 5,
|
|
|
- left: 5,
|
|
|
- child: Text('ddssss'),
|
|
|
- )
|
|
|
- : const SizedBox(),
|
|
|
+ if (isCarotidResult) ...[
|
|
|
+ Positioned(
|
|
|
+ bottom: 5,
|
|
|
+ left: 5,
|
|
|
+ child: FIcon(
|
|
|
+ FIcons.arteria_carotis,
|
|
|
+ color: Colors.lightBlue,
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ Positioned(
|
|
|
+ bottom: 5,
|
|
|
+ right: 5,
|
|
|
+ child: FIcon(
|
|
|
+ FIcons.three_dimensional,
|
|
|
+ color: Colors.lightBlue,
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ ],
|
|
|
InkWell(
|
|
|
onDoubleTap: () {
|
|
|
onChangeImage!.call();
|