Merge branch 'main' of https://git.aissel.com/poojakhatawate/DiscoverModule into devios
This commit is contained in:
commit
91f46d6036
|
@ -290,14 +290,22 @@ class _EditInteractionScreenState extends State<EditInteractionScreen> {
|
|||
sectionItem.input ==
|
||||
'add'
|
||||
? const SizedBox.shrink()
|
||||
: Text(
|
||||
'${sectionItem.name}:*',
|
||||
style: TextStyle(
|
||||
color: Colors.orange
|
||||
.shade800,
|
||||
fontSize: isTablet
|
||||
? 18
|
||||
: 12,
|
||||
: Padding(
|
||||
padding:
|
||||
const EdgeInsets
|
||||
.only(
|
||||
left: 8.0,
|
||||
right: 8.0),
|
||||
child: Text(
|
||||
'${sectionItem.name}:*',
|
||||
style: TextStyle(
|
||||
color: Colors
|
||||
.orange
|
||||
.shade800,
|
||||
fontSize: isTablet
|
||||
? 18
|
||||
: 12,
|
||||
),
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
|
|
|
@ -282,21 +282,29 @@ class _InteractionScreenState extends State<InteractionScreen> {
|
|||
sectionItem.input ==
|
||||
'add'
|
||||
? const SizedBox.shrink()
|
||||
: FittedBox(
|
||||
fit: BoxFit.scaleDown,
|
||||
child: Text(
|
||||
sectionItem
|
||||
.validation!
|
||||
.isRequired
|
||||
? '${sectionItem.name}:*'
|
||||
: '${sectionItem.name}:',
|
||||
style: TextStyle(
|
||||
color: Colors.orange
|
||||
.shade800,
|
||||
fontSize: 18.0,
|
||||
// fontSize: isTablet
|
||||
// ? 18
|
||||
// : 12,
|
||||
: Padding(
|
||||
padding:
|
||||
const EdgeInsets
|
||||
.only(
|
||||
left: 8.0,
|
||||
right: 8.0),
|
||||
child: FittedBox(
|
||||
fit: BoxFit.scaleDown,
|
||||
child: Text(
|
||||
sectionItem
|
||||
.validation!
|
||||
.isRequired
|
||||
? '${sectionItem.name}:*'
|
||||
: '${sectionItem.name}:',
|
||||
style: TextStyle(
|
||||
color: Colors
|
||||
.orange
|
||||
.shade800,
|
||||
fontSize: 18.0,
|
||||
// fontSize: isTablet
|
||||
// ? 18
|
||||
// : 12,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
|
Loading…
Reference in New Issue