You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The argument type 'DetailsScreen Function(BuildContext, int)' can't be assigned to the parameter type 'DetailsScreen Function(BuildContext, int, bool)'.dart(argument_type_not_assignable)
#5
Open
MassiveSuccess opened this issue
Mar 1, 2020
· 1 comment
The argument type 'DetailsScreen Function(BuildContext, int)' can't be assigned to the parameter type 'DetailsScreen Function(BuildContext, int, bool)'.dart(argument_type_not_assignable)
home.dart file line 33
@OverRide
Widget build(BuildContext context) {
final bool _tablet = isTablet(context, breakpoint: _tabletBreakpoint);
return ResponsiveScaffold.builder(
tabletBreakpoint: _tabletBreakpoint,
// detailBuilder: (BuildContext context, int index) {
final i = _emails[index];
return DetailsScreen(
appBar: AppBar(
elevation: 0.0,
The text was updated successfully, but these errors were encountered:
The argument type 'DetailsScreen Function(BuildContext, int)' can't be assigned to the parameter type 'DetailsScreen Function(BuildContext, int, bool)'.dart(argument_type_not_assignable)
home.dart file line 33
@OverRide
Widget build(BuildContext context) {
final bool _tablet = isTablet(context, breakpoint: _tabletBreakpoint);
return ResponsiveScaffold.builder(
tabletBreakpoint: _tabletBreakpoint,
// detailBuilder: (BuildContext context, int index) {
final i = _emails[index];
return DetailsScreen(
appBar: AppBar(
elevation: 0.0,
The text was updated successfully, but these errors were encountered: