Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@cnruby
Created December 7, 2019 22:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cnruby/97830a814e5d06bff81f9ff689d3f7b7 to your computer and use it in GitHub Desktop.
Save cnruby/97830a814e5d06bff81f9ff689d3f7b7 to your computer and use it in GitHub Desktop.
Flutter App 36: Adding a border to a widget
import 'package:flutter/material.dart';
void main() {
runApp(new FriendlychatApp());
}
class FriendlychatApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: "Friendlychat",
home: new ChatScreen(),
);
}
}
class ChatScreen extends StatefulWidget {
@override
State createState() => new ChatScreenState();
}
class ChatScreenState extends State<ChatScreen> {
final TextEditingController _textController = new TextEditingController();
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(title: new Text("Friendlychat")),
body: _buildTextComposer(),
);
}
Widget _buildTextComposer() {
return new Container(
decoration: myBoxDecoration(),
margin: const EdgeInsets.symmetric(horizontal: 8.0),
child: new Row(
children: <Widget>[
new Flexible(
child: new TextField(
controller: _textController,
onSubmitted: _handleSubmitted,
decoration:
new InputDecoration.collapsed(hintText: "Send a message"),
),
),
new Container(
decoration: myBoxDecoration(),
margin: new EdgeInsets.symmetric(horizontal: 4.0),
child: new IconButton(
icon: new Icon(Icons.send),
onPressed: () => _handleSubmitted(_textController.text)),
),
],
),
);
}
void _handleSubmitted(String text) {
_textController.clear();
}
BoxDecoration myBoxDecoration() {
return BoxDecoration(
border: Border.all(
width: 3.0,
color: Colors.blue,
),
borderRadius: BorderRadius.all(
Radius.circular(5.0)
),
);
}
}
// https://medium.com/@suragch/adding-a-border-to-a-widget-in-flutter-d387bc5d7cff
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment