Issue I want to set a splash screen for android 12 in flutter I used flutter_native_splash package but it doesn’t show my icon I added it to the pybspec.yaml file: dependencies: flutter: sdk: flutter # The following adds the Cupertino
Continue readingTag: flutter-packages
flutter doesn't show icon image in splash screen android 12
Issue I want to set a splash screen for android 12 in flutter I used flutter_native_splash package but it doesn’t show my icon I added it to the pybspec.yaml file: dependencies: flutter: sdk: flutter # The following adds the Cupertino
Continue readingHow to convert String to Permission in flutter
Issue I use permission_handler package I need to convert string to permission E.g: "location" is string, need to convert Permission.location Solution I think there are two solutions: With the ability to manage names Make enum with all Permission’s values and
Continue readingvideo_thumbnail package does not generate different thumbnails for different time frames
Issue I have a video file and want to generate 10 different thumbnails for the whole video. I use video_thumbnail package and VideoThumbnail.fromFile() constructor. This constructor has an argument called timeMs and is for, as the documentation states: generates the
Continue readingAdd enabledBorder color in date_time_picker package field in flutter
Issue How to Add enabledBorder color in date_time_picker package field in flutter? ` DateTimePicker( type: DateTimePickerType.dateTimeSeparate, dateMask: ‘d MMM, yyyy’, cursorColor: Colors.cyan, firstDate: DateTime(2000), lastDate: DateTime(2100), icon: const Icon(Icons.event,color: Colors.indigo,), dateLabelText: ‘Start Date’, timeLabelText: ‘Start Hour’, selectableDayPredicate: (date) { //
Continue readingHow to change flutter project name and import names at all?
Issue I tried to use the "rename" package to change my project name, and of course, also imports that have the project name itself, but the package has only changed the project name. For example, my project name was A,
Continue readingFlutter slidable package covers my item shadow
Issue I’m trying to create a list of items with shadow, I also used from flutter_slidable and now this slidable covers my item shadow!! As you can see in first item is inside a slidable widget and the second item
Continue readingUsing supabase_flutter package to add new users using email and password
Issue I am learning to use supabase for my backend and I see that there is a lot of examples of how to add new users using the dart package supabase [docs]. However, I wanted to know how I can
Continue readingHow to remove backspace between the frames in video_trimmer package
Issue I would like to remove the black space between each frame video. I using the package called video_trimmer: https://pub.dev/packages/video_trimmer trimmer video example This is my Trim Editor so far: TrimEditor( trimmer: controller.trimmer!, viewerHeight: 50, viewerWidth: Get.width, maxVideoLength: const Duration(seconds:
Continue readingOpen the link in the browser in flutter_linkify package
Issue I use this package to open links within the text, but this package opens the link inside the application, can I make it open the link in the browser? This is the package link: https://pub.dev/packages/flutter_linkify Solution You can use
Continue reading