Answers for "horizontal scrolling in fluitter"

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 in fluitter"

Code answers related to "Dart"

Browse Popular Code Answers by Language