A new Flutter project.
This project is a starting point for a Flutter application.
Lesson learnt:
Containers
- Properties:
- EdgeInsets.all()
- EdgeInsets.only(right/left/top/bottom: double value)
- EdgeInsets.symmetric(horizental/vertical: double value)
- decoration:BoxDecoration
- shape: BoxShape.circle,
- shape:BoxShape.rectangle,
- borderRadius: BorderRadius.all(Radius.circular(double value)
- borderRadius : BorderRadius.only(topLeft: Radius.circular(double value), bottomRight:Radius.circular(double value))
###Gradient Property
- gradient: LinearGradient
- gradient: RadialGradient
- colors:[Colors.color type[double value], Colors.color type[double value])
####Changing Direction:
- begin: Alignment.topCenter,
- end: Alignment.bottomCenter,
- begin: Alignment.topCenter,
- tileMode: TileMode.clamp
- radius: double value
- center:Alignment(x, y)
- gradient: LinearGradient
- shape: BoxShape.circle,
- EdgeInsets.all()