How to style a custom app bar using a theme?

Issue There is a custom appbar on a page @override Widget build(BuildContext context) { return DefaultTabController( length: 4, child: Scaffold( backgroundColor: Theme.of(context).scaffoldBackgroundColor, appBar: MyAppbar( tabController: tabController, ), body: … where MyAppbar is @override Widget build(BuildContext context) { const double tabHeight

Continue reading

Google Maps Place Picker package Error in Flutter

Issue I am getting a huge list of error when I try to run the following code with google_maps_place_picker package in flutter. import ‘package:flutter/material.dart’; // import ‘package:google_maps/google_maps.dart’; import ‘package:google_maps/google_maps.dart’; import ‘package:google_maps_place_picker/google_maps_place_picker.dart’ as place; // import ‘package:location/location.dart’; import ‘../components/location_helper.dart’; // import

Continue reading