Answers for "in backgroungimage hoe to chose image form you pc in flutter"

0

in backgroungimage hoe to chose image form you pc in flutter

class BaseLayout extends StatelessWidget{
  @override
  Widget build(BuildContext context){
    return new Scaffold(
      body: new Container(
        child: new Column(
          mainAxisAlignment: MainAxisAlignment.start,
          children: [
            new Image.asset("assets/images/bulb.jpg") 
          ]
        )
      )
    );
  }
}
Posted by: Guest on March-05-2022

Code answers related to "in backgroungimage hoe to chose image form you pc in flutter"

Browse Popular Code Answers by Language