React, how to use if condition inside a div to change its className?

I am trying to get data using API and loop it for banner images. I got the data. And it is working fine. Here is the code to get the data. ///Retrieving data using API const [post, setPost] = useState(null); useEffect(() => { axios.get(global.url+’api/welcome’).then(response => { setPost(response.data); }); }, []); Now, I want to show… Read More React, how to use if condition inside a div to change its className?

How to create flutter widget list using list builder?

I have a items argument where I have to assign list widget, it’s looks like below items: [ CachedNetworkImage( imageUrl: "https://images.unsplash.com/photo-1534531173927-aeb928d54385?crop=entropy&cs=tinysrgb&fm=jpg&ixlib=rb-1.2.1&q=80&raw_url=true&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&quot;, height: double.infinity, fit: BoxFit.cover, ), CachedNetworkImage( imageUrl: "https://images.unsplash.com/photo-1489824904134-891ab64532f1?crop=entropy&cs=tinysrgb&fm=jpg&ixlib=rb-1.2.1&q=80&raw_url=true&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1031&quot;, height: double.infinity, fit: BoxFit.cover, ) ], Same thing I’m trying by a dynamic list , where my data looks like List <Carousel> carousels = [ const… Read More How to create flutter widget list using list builder?

How to trigger autoplay for Javascript carousel on page load?

I have a simple carousel using JavaScript, html and CSS with three images. When ‘prev’ and ‘next’ buttons are clicked manually, the carousel will cycle continually, so when the visitor reaches the third image and clicks/taps ‘next’ it goes back to image 1. How can I make this cycling happen automatically on page load? Here… Read More How to trigger autoplay for Javascript carousel on page load?

How to put Indicator no image flutter

how to put on image like the design. I was learn on youtube but tutorial have only outside, I try to use Carousel_Pro but it’s can’t use because it’s not nullSafety . Center( child: CarouselSlider( carouselController: _carouselController, options: CarouselOptions( initialPage: 0, height: MediaQuery.of(context).size.height * 0.23, viewportFraction: 1.0, enlargeCenterPage: false, onPageChanged: (index, reason) => setState(() =>… Read More How to put Indicator no image flutter