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.
41 lines
1.0 KiB
41 lines
1.0 KiB
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
|
|
class SingleAdSpace extends StatelessWidget {
|
|
final String imagePath;
|
|
final double radius;
|
|
SingleAdSpace({Key key, this.imagePath, this.radius = 0}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
height: 160.w,
|
|
margin: EdgeInsets.symmetric(
|
|
horizontal: 32.w,
|
|
vertical: 17.w,
|
|
),
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.all(Radius.circular(radius)),
|
|
boxShadow: <BoxShadow>[
|
|
BoxShadow(
|
|
color: Colors.grey.withOpacity(0.6),
|
|
offset: Offset(1.1, 1.1),
|
|
blurRadius: 10.0),
|
|
],
|
|
),
|
|
child: InkWell(
|
|
onTap: () {},
|
|
child: Container(
|
|
child: Image.asset(
|
|
imagePath,
|
|
height: 160.w,
|
|
fit: BoxFit.fill,
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|