-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doesn't work #4
Comments
Hey thanks for the issue report. |
Hi @java-james , there are no errors. void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key}) : super(key: key);
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Overlay Test"),
),
body: LoadingOverlay(
isLoading: true,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Text(
'Some text',
),
],
),
),
);
}
} |
not working as well |
1.12.13 doesn't exist? |
Ah referring to the flutter version I'm running on. Thanks I will use the info you've provided to reproduce the issue and report back here. |
same, doesnt work when LoadingOverlay is child of Scaffold |
Have pushed the update as 0.2.1 |
Closing this issue. Fixed in 0.2.1 let me know if you have any other issues |
This library don't seem to work at all. No errors though.
Flutter doctor:
The text was updated successfully, but these errors were encountered: