আমি আমার ফ্লাটার অ্যাপ্লিকেশনটির জন্য একটি সাধারণ লগইন পৃষ্ঠা তৈরির চেষ্টা করছি। আমি সাফল্যের সাথে টেক্সটফিল্ড এবং লগইন / সাইন ইন বোতামগুলি তৈরি করেছি। আমি একটি অনুভূমিক তালিকার ভিউ যুক্ত করতে চাই। আমি যখন কোড চালনা করি তখন আমার উপাদানগুলি অদৃশ্য হয়ে যায়, আমি যদি তালিকাভিউ ব্যতীত এটি করি তবে এটি আবার ঠিক আছে। আমি কীভাবে এটি সঠিকভাবে করতে পারি?
return new MaterialApp(
home: new Scaffold(
appBar: new AppBar(
title: new Text("Login / Signup"),
),
body: new Container(
child: new Center(
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
new TextField(
decoration: new InputDecoration(
hintText: "E M A I L A D D R E S S"
),
),
new Padding(padding: new EdgeInsets.all(15.00)),
new TextField(obscureText: true,
decoration: new InputDecoration(
hintText: "P A S S W O R D"
),
),
new Padding(padding: new EdgeInsets.all(15.00)),
new TextField(decoration: new InputDecoration(
hintText: "U S E R N A M E"
),),
new RaisedButton(onPressed: null,
child: new Text("SIGNUP"),),
new Padding(padding: new EdgeInsets.all(15.00)),
new RaisedButton(onPressed: null,
child: new Text("LOGIN"),),
new Padding(padding: new EdgeInsets.all(15.00)),
new ListView(scrollDirection: Axis.horizontal,
children: <Widget>[
new RaisedButton(onPressed: null,
child: new Text("Facebook"),),
new Padding(padding: new EdgeInsets.all(5.00)),
new RaisedButton(onPressed: null,
child: new Text("Google"),)
],)
],
),
),
margin: new EdgeInsets.all(15.00),
),
),
);