You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
801 B
31 lines
801 B
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),
|
|
)
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|