Skip to content

Instantly share code, notes, and snippets.

@cmsong-shina
Last active May 27, 2021 05:28
Show Gist options
  • Save cmsong-shina/46e90db5657d0c83748ac13b4967c1c4 to your computer and use it in GitHub Desktop.
Save cmsong-shina/46e90db5657d0c83748ac13b4967c1c4 to your computer and use it in GitHub Desktop.
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