mayhemious
Söyle birsey size tasariminiz icin fikir verebilir.
class Deneme extends StatefulWidget {
@override
_DenemeState createState() => _DenemeState();
}
class _DenemeState extends State<Deneme> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(),
backgroundColor: Colors.amber,
body: Stack(
children: <Widget>[
Column(
children: <Widget>[
Expanded(
child: Center(
child: Text('icerik'),
),
),
Container(
padding: const EdgeInsets.only(right: 150.0),
width: double.infinity,
color: Colors.white,
child: Padding(
padding: const EdgeInsets.all(8.0),
child: TextField(
textAlign: TextAlign.left,
decoration: InputDecoration(
hintText: 'yaziniz',
hintStyle: TextStyle(
color: Colors.grey,
fontFamily: 'OpenSans',
),
),
),
),
),
],
),
Positioned(
bottom: 20,
right: 25,
child: Container(
width: 75,
height: 75,
decoration: BoxDecoration(
color: Colors.white,
shape: BoxShape.circle,
),
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Container(
height: 50,
width: 50,
decoration: BoxDecoration(
shape: BoxShape.circle,
color: Colors.blue,
),
child: Icon(Icons.send),
),
),
),
),
],
));
}
}