skip to Main Content

horizontal scroll with buttons React – Html

i need to make salesRibbon__productCarousel scroll when i click to salesRibbon__arrows_arrowForward forward and salesRibbon__arrows_arrowBack backward import React, { useRef } from 'react'; const SalesRibbon = () => { const container = useRef(null); //<--- this thing ISN"T WORKING! i can't get…

VIEW QUESTION

Show appBar when scrolling – Flutter

I would like to show appBar when scrolling, like video below https://imgur.com/vAq7UCT This is what I have now, but appBar not showing when scroll https://imgur.com/Bq5zAnQ Here the code @override Widget build(BuildContext context) { return Scaffold( bottomNavigationBar: _showButton(), backgroundColor: Colors.grey.shade200, extendBodyBehindAppBar:…

VIEW QUESTION

How to make scrollable part of page in Flutter?

I can't make scrollable the part highlighted in red And this is my code: class Home extends StatelessWidget { const Home({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return Scaffold( body: Stack( children: [ _headerWidget(), _actionWidget(), _backgroundWidget(), _bottomBar()…

VIEW QUESTION

How to scroll page in flutter, dart?

My code for a page is like this. i need to scroll part below appbar. @override Widget build(BuildContext context) { return Container( decoration: const BoxDecoration( gradient: LinearGradient( begin: Alignment.topLeft, end: Alignment.bottomRight, colors: [Colors.deepPurple, Colors.black] ) ), child: Scaffold( appBar: AppBar(…

VIEW QUESTION
Back To Top
Search