benrhodabatias88

benrhodabatias88

Lv4

benrhodabatias88Leyte Normal University

0 Followers
0 Following
1 Helped

ANSWERS

Published58

Subjects

Project Management4History3Law1English5Philosophy1Anthropology1Business1Science1Psychology1Algebra4Computer Science2Accounting2Calculus8Biology4Mathematics6Physics1Chemistry13
Answer: A black hole is a region of space with a gravitational pull so strong ...
Answer: The above scenario describes an instance of hacking and cyber attack c...
Answer: The site of the first mass in the Philippines is believed to be the is...
Answer: It is important to know the author's background and context of a prima...
Answer: Primary Source: "The Declaration of Independence" written by Thomas Je...
Answer: As a future teacher, good values formation is essential in order to ef...
Answer: 1. Education and awareness campaigns: NORSU can organize and conduct e...
Answer: The National Organization for Restricting Soliciting and Use of Public...
Answer: B. 0.0001
Answer: a) The set {u, v, w} is linearly independent if and only if the only s...
Answer: It is unclear what you mean by "different at moment as salcarmoation."...
Answer: The Lagrange Theorem states that for any finite group G, the order of ...
Answer: The peripheral nervous system (PNS) is the part of the nervous system ...
Answer: B. the continents have moved C. rock samples. The presence of the same...

Don't know what to put the return value in the return line (The last line) see below for Flutter.

class MyAppState extends State<MyApp>{
@override
Widget build(BuildContext context) {
return;

The entire code listed below -

import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';

void main() {

runApp(const MyApp());
}
class MyAppState extends State<MyApp>{
@override
Widget build(BuildContext context) {
return;
}
}
class MyApp extends StatefulWidget {

const MyApp({super.key});

@override

MyAppState createState() => MyAppState();
}

class LoginData {
String username = "";
String password = "";
}

class _MyApp extends State {

LoginData loginData = LoginData();
final GlobalKey<FormState> _formkey = GlobalKey<FormState>();
@override

Widget build(BuildContext inContext) {
return MaterialApp(home: Scaffold(
body : Container(
padding : const EdgeInsets.all(50.0),
child : Form(
key: _formkey,
child: Column(
children: [
TextFormField(
keyboardType: TextInputType.emailAddress,
validator: (String? inValue) {
if (inValue?.isEmpty?? true) {
return "Please enter username";
}
return null;
},
onSaved: (String? inValue) {
loginData.username = inValue!;
},

decoration: const InputDecoration(
hintText: "[email protected]",
labelText: "Username (eMail address)"
),
),

TextFormField(

obscureText: true,

validator: (String? inValue) {
if (inValue == null) {
return "Password cannot be null";
} else if (inValue.length < 10) {
return "Password must be >= 10 in length";
}
return null;
},

onSaved: (String? inValue) {
loginData.password = inValue!;
},

decoration: const InputDecoration(
hintText : "Password",
labelText : "Password"
),
),

ElevatedButton(

child : const Text("Log In!"),

onPressed: (){

if (_formkey.currentState!.validate()){

_formkey.currentState!.save();

if (kDebugMode) {
debugPrint ("Username: ${loginData.username}");
}
if (kDebugMode) {
debugPrint ("Password: ${loginData.password}");
}

}

},

),

]

),

),

),

));

}

}


Answer: The code you've provided is missing a return value in the return state...
Answer: The part of the script that tells the reader of the scene's location a...
Answer: A chemical household cleaning company that specializes in the producti...
Answer: To find the balance of James' savings account after 12 years, you need...
Answer: The question of whether bioethanol production should be subsidized in ...
Answer: The reporter in film is a character that typically works for a news or...
Answer: The core values of a chemical household cleaning company that speciali...
Answer: The average atomic mass of an element is the weighted average of the m...
Answer: In Bohr's model of the atom, electrons orbit the nucleus in specific e...
Answer: a) Molten gold solidifies. Delta Ssys for this process is negative, be...
Answer: A) calcium chloride + potassium phosphate ~> calcium phosphate + po...
Answer: The torque on the lever is 30 N⋅mStep-by-step explanation:Torque can b...
Answer: The Lewis structure for vinyl bromide (C2H3Br) is as follows: H | H-C-...
Answer: the percentage of chromite (FeCr2O4) in the original sample is 9.03%.S...
C. List out the steps to Protein Synthesis using the word bank below.
1. A. DNA strand will unwind from its double helix in the _______
2. An enzyme reads the DNA code and creates an  _______ strand.
3. The process of _______ transcribes DNA language to RNA language.
4. mRNA leaves the nucleus and is headed to a  _______ on the  _______
5. This entire process is called _______
6. The ribosome along with _______ will assemble to create a complex in order to read the mRNA strand.
7. mRNA enters the ribosome complex and the tRNA  _______ -codon will pair with the codon an the  _______ strand. This allows for the IRNA to bring specific for protein assembly.
8. This entire processed is called _______
9. Once the amino acid sequence has been created it is sent to the  _______ for inspection.
10. The  _______ packages the protein in a _______ to carry it out of the cell via a process called _______
 
Word Bank: Italicized words
will be used twice
 Exocytosis                                  Nucleus                            Translation                              Rough ER
  Secretory Vesicle                                   Base Pairing                                    Anti-
  Golgi Apparatus/Complex                                    Ribosome                                    Amino Acid
  tRNA                                 Transcription                                mRNA
Answer: 1. DNA strand will unwind from its double helix in the Nucleus 2. An e...
Answer: The equation for the Gibbs free energy change (ΔG) is given by ΔG = ΔH...
Answer: 1. To calculate the molar mass of calcium phosphate, Ca3(PO4), we need...
Answer: 1. The balanced equation for the reaction is: 2Ag+ + 3Al -> Al2S3 +...
Answer: To determine the percent yield, you need to divide the actual yield by...
Answer: ) The given word equation can be translated into a chemical equation b...
Answer: "Manny, who is terribly shy, will blush if he receives a compliment."S...
Answer: (a) 425 students ate breakfast, and 275 of them also ate lunch. So, 42...
Answer: Soil temperature plays a critical role in agriculture as it affects se...
Answer: The series infinity k = 1 (-1)k k / (2k + 1)2 diverges because it is a...
Answer: In order to find the value of 2x3 + 2x2 - 7x +72, we need to substitut...
Answer: The correct relation is option 4) a+b = -1.Step-by-step explanation:Th...

Weekly leaderboard

Start filling in the gaps now
Log in