Skip to content

Instantly share code, notes, and snippets.

View mestartlearncode's full-sized avatar

beginnercoder mestartlearncode

View GitHub Profile
/**
* Retrieves all the rows in the active spreadsheet that contain data and logs the
* values for each row.
* For more information on using the Spreadsheet API, see
* https://developers.google.com/apps-script/service_spreadsheet
*/
function readRows() {
var sheet = SpreadsheetApp.getActiveSheet();
var rows = sheet.getDataRange();
var numRows = rows.getNumRows();
import 'package:flutter/material.dart';
import 'package:pigment/pigment.dart';
import 'package:prj035apps/src/blocs/auth/forgot_password_bloc.dart';
import 'package:prj035apps/src/resources/index.dart';
import 'package:prj035apps/src/translations.dart';
import 'package:prj035apps/src/ui/widgets/custom_textfield.dart';
import 'package:prj035apps/src/ui/widgets/loading.dart';
import 'package:prj035apps/src/blocs/analytics/analytics_firebase.dart';
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
import 'package:superellipse_shape/superellipse_shape.dart';