Skip to main content

Posts

Showing posts from September, 2024

TImer & Count Down Timer

  https://stackoverflow.com/questions/54610121/flutter-countdown-timer

Flutter Deep Linking

https://blog.flutter.wtf/flutter-deep-link/ https://medium.com/@ronakofficial/deep-links-in-flutter-a-comprehensive-guide-without-firebase-1fdf471174d0 https://www.scaler.com/topics/deeplink-flutter/ https://medium.com/yavar/app-links-for-android-flutter-8eade713e4ea

Flutter release debugging

https://stackoverflow.com/questions/74926047/can-we-check-the-print-statement-of-app-in-playstore https://stackoverflow.com/questions/64537474/flutter-debugging-release-mode-enable-logs-in-release-mode https://stackoverflow.com/questions/41565558/is-android-log-output-visible-for-apps-downloaded-from-the-play-store

Color theory resources

https://uxdesign.cc/basic-color-theory-for-better-mobile-design-522798534a99 https://careerfoundry.com/en/blog/ui-design/introduction-to-color-theory-and-color-palettes/ https://designcode.io/color-theory https://mindsea.com/color-theory/ https://www.interaction-design.org/literature/topics/color-theory https://dribbble.com/resources/education/choose-colors-mobile-app-design https://blog.hubspot.com/marketing/color-theory-design https://www.canva.com/colors/color-wheel/

Flutter Theme Resources

1.  https://dianapps.com/blog/flutter-theming-light-and-dark-theme-with-custom-color/ 2.  https://medium.com/@amazing_gs/complete-flutter-guide-how-to-implement-dark-mode-dynamic-theming-and-theme-switching-ddabaef48d5a 3.  https://www.dhiwise.com/post/the-definitive-guide-to-implementing-flutter-dark-mode

FFmpeg resources

FFmpeg is a set of open source libraries that allow you to record, convert digital audio and video recordings in various formats. It includes libavcodec, a library for encoding and decoding audio and video, and libavformat, a library for multiplexing and demultiplexing into a media container. The name comes from the name of the MPEG and FF expert group, meaning fast forward. FFmpeg is already built into the program and does not require downloading additional codecs. The conversion takes place directly on the device (the Internet is not required), and the conversion speed depends on the processor speed of the device. Supports: MPEG4, h265, h264, mp3, 3gp, aac, ogg (vorbis and theora), opus, vp8, vp9 and many other formats (you will find the list in the app). Requirements: Android 4.4 and the availability of the processor ARMv7, ARMv8, x86, x86_64. FFmpeg with x264, x265, ogg, vorbis, theora, opus, vp8, vp9, mp3lame, libxvid, libfdk_aac, libvo_amrwbenc, libopencore-amr, speex, libsox, li...