londonappbrewery / bmi-calculator-flutter

Learn to Code While Building Apps - The Complete Flutter Development Bootcamp
https://www.appbrewery.co
192 stars 838 forks source link

Font awesome icons are not showing inside widget #25

Open fobf opened 3 years ago

fobf commented 3 years ago

body: Column( children: [ Expanded( child: Row( children: [ Expanded( child: ReusableCard(

                color: activeCardColor,
                cardChild: Column(

                  children: [
                    FaIcon(FontAwesomeIcons.search, size: 80),

                  ],
                ),
              ),
            ),
            Expanded(
              child: ReusableCard(
                color: activeCardColor,
              ),
            ),
          ],
        ),
      ),

this is the imputpage.dart, but it's not working this way, , but why not?