Тёмный

Creating a Flutter App with a Google Sheets Database 

Spellthorn
Подписаться 6 тыс.
Просмотров 18 тыс.
50% 1

Опубликовано:

 

29 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 34   
@mohamadalbakour6348
@mohamadalbakour6348 9 месяцев назад
Thank You very Match. شكرا جزيلا لك على كل المعلومات الرائعة
@Spellthorn
@Spellthorn 7 месяцев назад
You're welcome 🤗
@naveensinghkhatri
@naveensinghkhatri Год назад
Can you not just prompt ChatGPT to give you step by step instructions on how to do what you want to do? 😂
@Spellthorn
@Spellthorn Год назад
ChatGPT is better at doing what its told rather than thinking for itself. I find i have better results when giving it rules to follow and then letting it decide off of those rules, let me know if you have better prompting ideas that work 😁
@b_rabbit9774
@b_rabbit9774 3 месяца назад
What if the app has a lot of users how to set the app to save the data on users google sheets account?
@JoshComninellis
@JoshComninellis 7 месяцев назад
Does this same or similar process work for using Google Sheets as a for Flutterflow
@jed1as
@jed1as 3 месяца назад
You find a better way than Google API v4
@swatirawat2515
@swatirawat2515 6 месяцев назад
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.'
@Spellthorn
@Spellthorn 6 месяцев назад
Hmmm. I'll have to look into this. Thanks for the info
@fedimakni1200
@fedimakni1200 7 месяцев назад
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.
@Spellthorn
@Spellthorn 7 месяцев назад
The appsScript is used to create the "API" so you would do that all on sheets side, then in Flutter just access the API like you would access any other API. As for posting to it, yea you should be able to easily post to it but will have to add that functionality to the appsScript. ChatGPT may be able to guide you on this, you can do a doPost etc
@jrnight7694
@jrnight7694 11 месяцев назад
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.
@Spellthorn
@Spellthorn 7 месяцев назад
I'm glad it was helpful 😊
@tacowaco
@tacowaco Год назад
Thank you. This must have taken a lot of work to prepare.
@Spellthorn
@Spellthorn Год назад
You're welcome. I tried to keep the data simple for the video. But I've used this in other projects with tons of data. Definitely an easier work flow. Making this video with chat gpt help did make it take longer due trying to get the prompting perfect 😄
@adamen111
@adamen111 11 месяцев назад
How did I not know about Apps Script before this video? Thanks so much this is gamechanger
@Spellthorn
@Spellthorn 7 месяцев назад
Yea I learned it a few years ago when making a database app for Pokemon unite but then Android wouldn't let me upload the app lol
@abdullahflutter
@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
@Spellthorn
@Spellthorn Год назад
I can certainly try. Have you tried chat gpt you can send it all your code and ask whats wrong 😁
@abdullahflutter
@abdullahflutter Год назад
@@Spellthorn yea i did but even chatgpt can't find the problem
@informativeinformations9580
Block chain(from scratch) with flutter please
@Spellthorn
@Spellthorn Год назад
I can look into it 😁
@informativeinformations9580
Thanks😃
@TrikNgonlen
@TrikNgonlen Год назад
A W E S O M E !
@Spellthorn
@Spellthorn Год назад
Thanks. Glad you liked it
@alessandroscimone5463
@alessandroscimone5463 Год назад
oooooo yessss!! This is very useful! Thank you!
@Spellthorn
@Spellthorn Год назад
Glad it was helpful! Makes coding your apps very easy and easy to update.
@subsavage5722
@subsavage5722 Год назад
Daaamn, great video man.
@Spellthorn
@Spellthorn Год назад
Glad you liked it!
@abdullahflutter
@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), ), ), ), ), ), ], ), ); } }
@Spellthorn
@Spellthorn Год назад
sorry your comment got flagged as spam as you can't paste the code in chat I don't think.
@abdullahflutter
@abdullahflutter Год назад
@@Spellthorn the code is in this comment just press on show more
@Spellthorn
@Spellthorn Год назад
Oh sorry, it wasn't showing on the comments in my studio.
@Spellthorn
@Spellthorn Год назад
I would suggest not using Stack. and use Column. Here's example, Hope it helps return Scaffold( body: Column( mainAxisAlignment: MainAxisAlignment.end, children: [ Expanded( child: Image.asset('images/veg.jpg'), ), SizedBox( width: 300, height: 65, child: ElevatedButton( onPressed: () {}, style: ElevatedButton.styleFrom( backgroundColor: Colors.blue[700], shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(30), ), ), child: Row( mainAxisAlignment: MainAxisAlignment.center, children: const [ Icon(Icons.telegram, color: Colors.white), SizedBox(width: 8), Text('Sign in with Telegram', style: TextStyle(fontSize: 20)), ], ), ), ), const SizedBox(height: 16), SizedBox( width: 300, height: 65, child: ElevatedButton( onPressed: () {}, style: ElevatedButton.styleFrom( backgroundColor: Colors.blue[900], shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(30), ), ), child: Row( mainAxisAlignment: MainAxisAlignment.center, children: const [ Icon(Icons.facebook, color: Colors.white), SizedBox(width: 8), Text('Sign in with Facebook', style: TextStyle(fontSize: 20)), ], ), ), ), const SizedBox(height: 130), // added padding at the bottom ], ), );
Далее
Почему?
00:22
Просмотров 177 тыс.
+1000 Aura For This Save! 🥵
00:19
Просмотров 12 млн
Watermelon magic box! #shorts by Leisi Crazy
00:20
Просмотров 18 млн
КАК БОМЖУ ЗАРАБОТАТЬ НА ТАЧКУ
1:36:32
GOOGLE SHEETS × FLUTTER
7:17
Просмотров 31 тыс.
Convert Google Sheets into a REST API
14:10
Просмотров 9 тыс.
Keeping it local: Managing a Flutter app's data
44:57
Learn to use Isolates in Flutter | Simplified
10:28
Просмотров 28 тыс.
Turn Your Spreadsheet into an App
6:58
Просмотров 73 тыс.
Почему?
00:22
Просмотров 177 тыс.