#flutter #dart #gradient #android-appbarlayout #flutter-appbar
Вопрос:
Я пытаюсь добавить линейный градиент в панель приложений, но до сих пор мне не удалось это сделать. Кто-нибудь знает, как я могу добавить это в свою панель приложений? Спасибо
decoration: BoxDecoration(
gradient: LinearGradient(
colors: [const Color(0xFFF06292), const Color(0xff2A75BC)]),
мой код выглядит так
class RegisterAgree extends StatefulWidget {
@override
_RegisterAgreeState createState() => _RegisterAgreeState();
}
class _RegisterAgreeState extends State<RegisterAgree> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Colors.pink,
title: Row(
children: <Widget>[
Image.asset(
'assets/images/logox.png',
fit: BoxFit.cover,
height: 45.0,
)
],
),
),
);
}
}
Комментарии:
1. проверьте эту статью, hackernoon.com/flutter-gradient-app-bar-jm8a32fu
Ответ №1:
Вы также можете использовать это :
appBar: AppBar(
title: Text('Flutter Demo'),
flexibleSpace: Container(
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment.centerLeft,
end: Alignment.centerRight,
colors: <Color>[
Colors.red,
Colors.blue
],
),
),
),
),
Ответ №2:
Вы можете создать свой собственный многоразовый виджет панели приложений, обернув AppBar
его внутри a Container
градиентом:
class GradientAppBar extends StatelessWidget with PreferredSizeWidget {
static const _defaultHeight = 56.0;
final double elevation;
final Gradient gradient;
final Widget title;
final double barHeight;
GradientAppBar(
{this.elevation = 3.0,
this.gradient,
this.title,
this.barHeight = _defaultHeight});
@override
Widget build(BuildContext context) {
return Container(
height: 56.0,
decoration: BoxDecoration(gradient: gradient, boxShadow: [
BoxShadow(
offset: Offset(0, elevation),
color: Colors.black.withOpacity(0.3),
blurRadius: 3,
),
]),
child: AppBar(
title: title,
elevation: 0.0,
backgroundColor: Colors.transparent,
),
);
}
@override
Size get preferredSize => Size.fromHeight(barHeight);
}
Попробуйте полный пример на DartPad
Скриншот
Комментарии:
1. Большое вам спасибо!