Answers for "horizontal scrolling row in flutter"

2

flutter scrollable row

SingleChildScrollView(
  scrollDirection: Axis.horizontal,
  child: Row(
   children: <Widget>[
     Text('hi'),
     Text('hi'),
     Text('hi'),
   ]
  )
)
Posted by: Guest on January-07-2021
2

horizontal scrolling in fluitter

void main() => runApp(MyApp());
 
class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        home: Scaffold(
            body: SafeArea(
          //by default scroll directioin is vertical
              child: SingleChildScrollView(
          //changing scroll direction into horizontal
                scrollDirection: Axis.horizontal,
                child: Row(
                children: <Widget>[
 
                  
                ],
              ),
             ),
            )
           )
          );
  }
}
Posted by: Guest on June-12-2021

Code answers related to "horizontal scrolling row in flutter"

Browse Popular Code Answers by Language