skip to Main Content

Using Single singlechildscrollview while using scrolllable listview.builder (flutter)

This is my whole code: import 'package:flutter/material.dart'; import 'package:testproject/components/event_tile.dart'; import 'package:testproject/components/mybutton.dart'; class MenuPage extends StatelessWidget { const MenuPage({super.key}); @override Widget build(BuildContext context) { List EventList = [ EventTile( name: "Mitama Matsuri festivial", price: "€ 49", imagePath: "lib/images/japan7.png", rating: "5", details:…

VIEW QUESTION

Html – Automatic horizontal scrollable div

const scrollableDiv = document.querySelectorAll(".scrollableDiv a"); const contentH2 = document.querySelectorAll("#content h2"); contentH2.forEach((element, index) => { let observer = new IntersectionObserver((entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { scrollableDiv[index].style.color = "brown"; }else{ scrollableDiv[index].style.color = ""; } }) }); observer.observe(element); }); .scrollableDiv{…

VIEW QUESTION
Back To Top
Search