@mohamadalbakour6348

Thank You very Match. شكرا جزيلا لك على كل المعلومات الرائعة

@satuteknologi1961

its suitable for my small and free project ..thanks man

@Windre_X

How did I not know about Apps Script before this video? Thanks so much this is gamechanger <3 <3

@JoshComninellis

Does this same or similar process work for using Google Sheets as a for Flutterflow

@tacowaco

Thank you. This must have taken a lot of work to prepare.

@jrnight7694

Hey i've just found your channel and this video is so useful and understandable, i'm in the middle of my project using data from microcontroller ESP to send into google sheet then into flutter app that like google map to show information from ESP but yeah i guess the map is kinda the hard part to me .Anyway thank you for your explaniation it helping me out.

@subsavage5722

Daaamn, great video man.

@alescdev

oooooo yessss!! This is very useful! Thank you!

@b_rabbit9774

What if the app has a lot of users how to set the app to save the data on users google sheets account?

@fedimakni1200

Thank you very much for the video.
I have 2 questions if possible:
- i am a beginner to flutter, where's the function doGet you wrote in apps script mentioned in flutter code?
-Other than getting the data, can we also send data to google sheet?
May i ask if you can tell us the steps (no need to be in detail just the big lines) should i add a set function to apps script first and then call it in flutter but i return to my first question about the location of get function in flutter code.

@jed1as

You find a better way than Google API v4

@SriVenkateshwaraSuperMarket

bro how to updated this sheet

@swatirawat2515

Unfortunately google no longer allows the api to deploy
It blocks the deployment everytime showing  'This app tried to access sensitive info in your Google Account. To keep your account safe, Google blocked this access.'

@abdullahflutter

hello can i send you something and you can tell me how to fix
it is an error but i don't know how to fix

@TrikNgonlen

A W E S O M E !

@naveensinghkhatri

Can you not just prompt ChatGPT to give you step by step instructions on how to do what you want to do? 😂

@informativeinformations9580

Block chain(from scratch) with flutter please

@abdullahflutter

this is a sign in screen but the erro is when i added the image the buttons are not in the bottom screen anymore :                       


import 'package:flutter/material.dart';

class SigninScreen extends StatelessWidget {
  const SigninScreen({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Stack(
        alignment: Alignment.bottomCenter,
        children: [
          Image.asset(
            'images/veg.png',
          ),
          Positioned(
            bottom: 130,
            child: SizedBox(
              width: 300,
              height: 65,
              child: ElevatedButton(
                onPressed: () {},
                child: Row(
                  mainAxisAlignment: MainAxisAlignment.center,
                  children: [
                    Icon(Icons.telegram, color: Colors.white),
                    SizedBox(width: 8),
                    Text('Sign in with Telegram', style: TextStyle(fontSize: 20)),
                  ],
                ),
                style: ElevatedButton.styleFrom(
                  backgroundColor: Colors.blue[700],
                  shape: RoundedRectangleBorder(
                    borderRadius: BorderRadius.circular(30),
                  ),
                ),
              ),
            ),
          ),
          Positioned(
            bottom: 50,
            child: SizedBox(
              width: 300,
              height: 65,
              child: ElevatedButton(
                onPressed: () {},
                child: Row(
                  mainAxisAlignment: MainAxisAlignment.center,
                  children: [
                    Icon(Icons.facebook, color: Colors.white),
                    SizedBox(width: 8),
                    Text('Sign in with Facebook', style: TextStyle(fontSize: 20)),
                  ],
                ),
                style: ElevatedButton.styleFrom(
                  backgroundColor: Colors.blue[900],
                  shape: RoundedRectangleBorder(
                    borderRadius: BorderRadius.circular(30),
                  ),
                ),
              ),
            ),
          ),
        ],
      ),
    );
  }
}