Я хочу добиться чего-то подобного во флаттере, который я пытался выполнить, но я не могу получить это, поставив
Stack(
overflow: Overflow.visible,
children: <Widget>[
Container(
height: 250,
margin: EdgeInsets.fromLTRB(0, 0, 0, 0),
padding: EdgeInsets.fromLTRB(0, 60, 0, 0),
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage("assets/bacground_img.png"),
fit: BoxFit.fill,
),
),
child: Column(
children: <Widget>[
GestureDetector(
child: Container(
margin: EdgeInsets.all(10),
// padding: EdgeInsets.only(left: 10, right: 10),
padding: EdgeInsets.only(left: 0, right: 0),
color: Colors.transparent,
child: IgnorePointer(
child: TextFormField(
style: TextStyle(),
controller: searchcc,
decoration: InputDecoration(
focusedBorder: OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(0.0)),
borderSide:
BorderSide(color: Colors.white, width: 1.0),
),
enabledBorder: OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(0.0)),
borderSide:
BorderSide(color: Colors.white, width: 1.0),
),
prefixIcon:
Icon(Icons.search, color: Colors.white),
hintText: 'Search here',
hintStyle: TextStyle(color: Colors.white),
contentPadding: EdgeInsets.zero),
))),
onTap: () async {
final int selected = await showSearch<int>(
context: context,
delegate: _delegate,
);
if (selected != null && selected != _lastIntegerSelected) {
setState(() {
_lastIntegerSelected = selected;
});
}
},
),
Padding(
padding:
const EdgeInsets.only(left: 10.0, top: 15.0, bottom: 0.0),
child: Text('My to-do list',
style: TextStyle(
color: Colors.white,
fontSize: 18.0,
fontFamily: "MicrosoftSansSerif",
fontWeight: FontWeight.normal)),
),
],
) /* add child content here */,
),
Positioned(
top: 200.0,
left: 10.0,
right: 10.0,
child: GestureDetector(
child: Container(
width: MediaQuery.of(context).size.width,
margin:
const EdgeInsets.only(top: 10.0, right: 10.0, left: 10),
padding: const EdgeInsets.only(
right: 10.0, left: 10.0, top: 10.0, bottom: 10.0),
decoration: BoxDecoration(
border: Border.all(color: Colors.grey.shade300, width: 1.0),
borderRadius: BorderRadius.all(Radius.circular(
10.0) // <--- border radius here
),
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
list,
Padding(
padding: const EdgeInsets.only(top: 8.0, bottom: 8),
child: Container(
height: 0.5,
color: Colors.grey.shade300,
),
),
todo_succ != false
? Text("View all",
style: TextStyle(
color: Color(0xFF0378d7),
fontSize: 15.0,
fontWeight: FontWeight.normal))
: Text("Add to list > ",
style: TextStyle(
color:Color(0xFF0378d7),
fontSize: 15.0,
fontWeight: FontWeight.normal)),
],
)),
onTap: () {
Navigator.of(context).push(new MaterialPageRoute(
builder: (BuildContext context) => ToDolistCustomer(
show: true,
)));
},
),
),
]),
из приведенного выше кода позиционированный виджет настроен идеально, но я не вижу остальной части, как показано, как на картинке, остальная часть не показывает, пожалуйста, помогите !!
Мне нужно перекрыть столбец с несколькими списками, но я не знаю, как мне этого добиться ???