2021-08-16 12:43:51 +02:00
|
|
|
import 'package:page_transition/page_transition.dart';
|
2021-08-15 16:22:20 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
2021-08-16 12:43:51 +02:00
|
|
|
import 'package:easy_learn/view/screens/content.dart';
|
|
|
|
|
2021-08-15 16:22:20 +02:00
|
|
|
class ListContentsBox extends StatelessWidget {
|
|
|
|
const ListContentsBox({Key? key, required this.imagePath, required this.title}) : super(key: key);
|
|
|
|
|
|
|
|
final String imagePath;
|
|
|
|
final String title;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return InkWell(
|
2021-08-16 12:43:51 +02:00
|
|
|
onTap: (){
|
2021-08-18 15:48:02 +02:00
|
|
|
Navigator.push(context, PageTransition(type: PageTransitionType.rightToLeft, child: const Content(category: 'None')));
|
2021-08-16 12:43:51 +02:00
|
|
|
},
|
2021-08-15 16:22:20 +02:00
|
|
|
child: Container(
|
|
|
|
padding: const EdgeInsets.all(5.0),
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: Colors.black.withOpacity(0.3),
|
|
|
|
borderRadius: const BorderRadius.all(Radius.circular(25.0))
|
|
|
|
),
|
|
|
|
child: Stack(
|
|
|
|
children: [
|
|
|
|
Container(
|
|
|
|
margin: const EdgeInsets.all(25.0),
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
image: DecorationImage(
|
|
|
|
image: AssetImage(imagePath)
|
|
|
|
)
|
|
|
|
),
|
|
|
|
width: 300,
|
|
|
|
height: 300,
|
|
|
|
),
|
|
|
|
SizedBox.expand(
|
|
|
|
child: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.end,
|
|
|
|
children: [
|
|
|
|
Text(title, style: const TextStyle(fontSize: 20, color: Colors.white),)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
)
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|