Last active
May 27, 2021 05:28
-
-
Save cmsong-shina/46e90db5657d0c83748ac13b4967c1c4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
runApp( | |
MaterialApp( | |
home: Scaffold( | |
body: SafeArea( | |
child: Center( | |
child: Column( | |
children: [ | |
Slider(value: 0.33, onChanged: (v) {}), | |
Row( | |
// mainAxisSize: MainAxisSize.max, | |
children: [ | |
Slider(value: 0.33, onChanged: (v) {}), | |
], | |
) | |
], | |
), | |
), | |
), | |
), | |
), | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment