skip to Main Content

enter image description here

We design three screens first one is a welcome screen like when the user open the app it shows after that user has two options if he or she has an account then press the login button and it just shifts him to the login screen or if he or she don’t have an account then press signup button its transfers to the signup screen. This video shows you how easy it is to build all those using flutter.

……………………………………………………………………………………………………………………………………………………………………………………..

2

Answers


  1. Remove your row widget and use listview like this

     ListView(
            scrollDirection: Axis.horizontal,
            shrinkWrap: true,
            children: const [],)
    
    Login or Signup to reply.
  2. add that : will work

    SingleChildScrollView(
    scrollDirection: Axis.horizontal,
    child: Row(
    

    for the image in asset did you add the image path in pubspec.yaml
    assets:
    – lib/images/

    describe what to add in pubspec.yaml

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search