import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:flutter_svg_provider/flutter_svg_provider.dart'; class Live extends StatelessWidget { @override Widget build(BuildContext context) { return Container( width: double.infinity, height: double.infinity, decoration: BoxDecoration( color: Color(0xFFededed), image: DecorationImage( image: Svg( 'assets/flat-mountains.svg', ), alignment: Alignment.bottomCenter, ), ), child: Row( mainAxisAlignment: MainAxisAlignment.center, children: [ Text( 'next_year'.tr, style: TextStyle(fontSize: 24, fontWeight: FontWeight.w700), ) ], ), ); } }