add packages

This commit is contained in:
Sai Naw Wun
2020-06-02 00:00:05 +06:30
21 changed files with 568 additions and 335 deletions

View File

@@ -54,8 +54,10 @@ class _InstructionPageState extends State<InstructionPage> {
body: Container(
padding: EdgeInsets.only(left: 5, right: 5, top: 5),
child: Card(elevation: 0,
child: FittedBox(
child: Image.asset(widget.image), fit: BoxFit.contain)),
child: Expanded(
child: FittedBox(
child: Image.asset(widget.image), fit: BoxFit.contain),
)),
),
),
);