flutter container border
Container(
decoration: BoxDecoration(
border: Border.all(
color: Colors.red, // red as border color
),
),
child: Text("Your text...")
)
flutter container border
Container(
decoration: BoxDecoration(
border: Border.all(
color: Colors.red, // red as border color
),
),
child: Text("Your text...")
)
container border flutter
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(50.0),
border: Border.all(
color: Colors.blue,
width: 2.0,
),
),
border side in flutter
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Center(
child: Container(
child: Text(
"This is a Boder with One Side",
textDirection: TextDirection.ltr,
style: TextStyle(color: Colors.black),
),
padding: EdgeInsets.symmetric(vertical: 100.0, horizontal: 100.0),
decoration: BoxDecoration(
border: Border(
top: BorderSide(width: 16.0, color: Colors.lightBlue.shade600),
bottom: BorderSide(width: 16.0, color: Colors.lightBlue.shade900),
),
color: Colors.white,
),
),
);
}
}
flutter roudnd border container
Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.all(Radius.circular(20))
),
child: ...
)
container border flutter
BoxDecoration myBoxDecoration() {
return BoxDecoration(
border: Border.all(),
);
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us