|
|
|
|
@ -121,7 +121,7 @@ class _MyFamily extends State<MyFamily> with TickerProviderStateMixin {
|
|
|
|
|
if (snapshot.hasError)
|
|
|
|
|
return Padding(
|
|
|
|
|
padding: EdgeInsets.all(10),
|
|
|
|
|
child: Text(snapshot.error));
|
|
|
|
|
child: Text("No data found"));
|
|
|
|
|
else
|
|
|
|
|
return Padding(
|
|
|
|
|
padding: EdgeInsets.only(top: 50),
|
|
|
|
|
@ -243,7 +243,7 @@ class _MyFamily extends State<MyFamily> with TickerProviderStateMixin {
|
|
|
|
|
if (snapshot.hasError)
|
|
|
|
|
return Padding(
|
|
|
|
|
padding: EdgeInsets.all(10),
|
|
|
|
|
child: Text(snapshot.error));
|
|
|
|
|
child: Text('No data found'));
|
|
|
|
|
else
|
|
|
|
|
return Column(
|
|
|
|
|
children: [
|
|
|
|
|
@ -343,7 +343,7 @@ class _MyFamily extends State<MyFamily> with TickerProviderStateMixin {
|
|
|
|
|
if (snapshot.hasError)
|
|
|
|
|
return Padding(
|
|
|
|
|
padding: EdgeInsets.all(10),
|
|
|
|
|
child: Text('No data found..'));
|
|
|
|
|
child: Text('No data found'));
|
|
|
|
|
else
|
|
|
|
|
return SingleChildScrollView(
|
|
|
|
|
child: Container(
|
|
|
|
|
@ -394,7 +394,7 @@ class _MyFamily extends State<MyFamily> with TickerProviderStateMixin {
|
|
|
|
|
if (snapshot.hasError)
|
|
|
|
|
return Padding(
|
|
|
|
|
padding: EdgeInsets.all(10),
|
|
|
|
|
child: Text('No data found..'));
|
|
|
|
|
child: Text('No data found'));
|
|
|
|
|
else
|
|
|
|
|
return Column(
|
|
|
|
|
children: [
|
|
|
|
|
|