Skip to content

Commit

Permalink
🐛 bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TESLA2402 committed Nov 19, 2023
1 parent 2dcf5e6 commit 5d54f33
Showing 1 changed file with 25 additions and 23 deletions.
48 changes: 25 additions & 23 deletions lib/home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1415,31 +1415,33 @@ class _HomeScreenState extends State<HomeScreen> {
"comic panel with${panelInputs[index]}",
imagePaths: imagePaths,
),
Text(
"yes",
style: GoogleFonts.bangers(
color: Colors.white),
)
// if (bubbleText[index].toString() !=
// "")
Container(
width: double.infinity,
color: Colors.white,
padding: EdgeInsets.all(4),
child: Expanded(
child: Container(
decoration: BoxDecoration(
border: Border.all(
color: Colors.black),
color: Colors.white),
child: Padding(
padding:
EdgeInsets.all(4.0),
child: Text(
// bubbleText[index]
// .toString(),
"yes",
// style:
// GoogleFonts.bangers(),
),
),
),
)),
// Container(
// width: double.infinity,
// color: Colors.white,
// padding: EdgeInsets.all(4),
// child: Container(
// decoration: BoxDecoration(
// border: Border.all(
// color: Colors.black),
// color: Colors.white),
// child: Padding(
// padding: EdgeInsets.all(4.0),
// child: Text(
// // bubbleText[index]
// // .toString(),
// "yes",
// // style:
// // GoogleFonts.bangers(),
// ),
// ),
// )),
]);
},
),
Expand Down

0 comments on commit 5d54f33

Please sign in to comment.