Send mail with attachment using Gmail API

To send an email from your app with an attachment like image, video, etc. We can do this by calling 2-3 functions. First, we need to add some required permission in AndroidManifest.xml as below. <uses-permission android:name=”android.permission.INTERNET” /> <uses-permission android:name=”android.permission.GET_ACCOUNTS” /> <uses-permission android:name=”android.permission.WRITE_EXTERNAL_STORAGE” /> Then add necessary …

Install Flutter on a MAC

System Requirements Operating Systems: macOS (64-bit) Disk Space: 700 MB (does not include disk space for IDE/tools). Tools: Flutter depends on these command-line tools being available in your environment. Step 1 : Download Flutter SDK from official website  https://flutter.dev/docs/get-started/install/macos and Extract the file in the desired location Step 2: Open …