Skip to content

Instantly share code, notes, and snippets.

@jaggzh
Last active May 31, 2020 21:26
Show Gist options
  • Save jaggzh/f43306c0b8837d6f4fd829c5cca15c92 to your computer and use it in GitHub Desktop.
Save jaggzh/f43306c0b8837d6f4fd829c5cca15c92 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: TestWidget(),
);
}
}
class TestWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Material(
child: Stack(
children: <Widget>[
Container(
child: Row(
children: <Widget>[
Column(
children: <Widget>[
Text(
"qWerty1 qWerty1qWerty1 qWerty1qWerty1 qWerty1qWerty1 qWerty1qWerty1 qWerty1qWerty1 qWerty1 2222"),
],
),
],
),
),
],
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment