mobile app project1 - Computer Science
DMST 102 - Project 01 - 20 pts total Goal: Create a mobile app like the image below that displays a scrollable list of 6 recipes and their ratings. All of the Widgets and code techniques you will need to complete the project have come from homework assignments, with two small exceptions. (Details to follow.) Step 1: Mockups (4 pts total) Goal: Create rough mockups of your layout to use as a guide. They do NOT need to exactly match your final code. Requirements: [2pts each] 1. Create a rough mockup of the boxes you will need to create the apps layout. You can draw them manually (and take a picture), or use software. a. Show how your boxes will fit within other boxes to create the layout. b. At minimum, label the main elements of the layout: i. app bar ii. recipe block (a block = each recipes text + image + ratings) iii. recipe image iv. recipe title v. ratings list c. You may also label any other blocks as needed if you find it useful. d. You only need to mock up 1 recipe block. e. Its OKAY if your boxes arent flush within each other like they will be in the app. Its more important to show which boxes belong in which others. 2. Consider the Flutter widgets that you will need to generate the layout in your mockup from #1. a. Create a hierarchy (branch/leaf) diagram that represents the potential widget structure of your app. b. This time, show the relationship between at least two recipe blocks (and any children/descendants), in addition to their parents/ancestor Widgets. c. As before, you may draw or use software to create the diagram. Step 2: Upload the Starter code Goal: Upload the starter code .zip file into Flutlab.io. 1. In main the Flutlab screen that lists your projects, select the Upload Flutter Project Zip button from the right-hand menu. 2. Upload the .zip file provided in BB for this project. 3. The starter code contains three list arrays that represent the recipe content: recipe title, image file name, and ratings. a. The content of each index value makes up a single recipe. i. So, recipes[0] is the title for images[0] and ratings[0]. 4. The images have also been provided as assets, as you can see by expanding the file explorer tree: Step 3: Create the application (16 pts) Goal: Use the provided Scaffold to recreate the app shown in the image from page 1. The 10/14 - Scaffolding presentation code shows how to add widgets to a Scaffolds appbar and body. SUBMIT YOUR FINAL CODE AS A FLUTTER ZIP FILE. Requirements: [8 pts] 1. Create a layout that matches the image from page 1. a. Use a ListView widget to create your scrollable list of recipes. i. See the 10/14 - Scaffolding presentation for an example of how to use the widget. b. The recipe image and the text/ratings block should each take up half the available screen width. i. Consider which Widget from previous homework assignments is flexible enough to provide that dynamic. [1 pt each] 2. Use a loop and the provided recipe data to generate the recipe blocks. 3. Use a loop and the ratings list data to generate the rating icons. 4. Each recipe block should have: a. 10 pixel bottom margin. 5. Each image should have: a. 10 pixel right margin. [2 pts] 6. Each recipe title should be: a. Bold b. Have a 2 pixel right and bottom margin 1 of 3 __MACOSX/._project 1 __MACOSX/project 1/._10:14 scaffolding __MACOSX/project 1/._Project01-Starter project 1/.DS_Store __MACOSX/project 1/._.DS_Store project 1/10:14 scaffolding /10:14 presentation slides.pdf Material App Scaffolds The framework your app is built on. MaterialApp class A convenience widget that provides commonly used mobile app features and functionality. MaterialApp( title: Material scaffolds, //title of app in app store home: Scaffold widget or custom homepage class, route: <Routes map>, theme: <Theme data>, ); Route: provides navigation ‘routes’ within your app, like “/” and “/about”. ● Similar to web page URL ‘routes’. ○ https://www.rochester.edu/ ← note the “/” for ‘home’ pages. Modern servers hide it. ○ https://www.rochester.edu/about https://api.flutter.dev/flutter/material/MaterialApp-class.html https://www.rochester.edu/ https://www.rochester.edu/about import package:flutter/material.dart; void main() => runApp(MyApp()); // where’s universal directionality? class MyApp extends StatelessWidget { Widget build(BuildContext context) { // MaterialApp is the ‘super container’ return MaterialApp( title: Material scaffolds, home: MyHomePage(), //MyHomePage() is a constructor function for a class MyHomePage() );}} MaterialApp() implementation Scaffold( Scaffold class appBar: AppBar(), body: Your Widgets / Content, bottomNavigationBar: Your nav items, drawer: Drawer(), //slides based on text direction bottomSheet: Persistent widget content, floatingActionButton: FloatingActionButton(), ) MyApp appBar body bottomNavigationBar bottomSheet drawer Implements the basic material design visual layout structure. Flutter example AppBar() class https://api.flutter.dev/flutter/material/AppBar-class.html AppBar( actions: [ //any number Icon(Icons.favorite), Icon(Icons.add), Icon(Icons.beach_access) ], title: Text(‘App Title’), leading: Icon(Icons.menu), backgroundColor: Colors.red, foregroundColor: Colors.white, backwardsCompatibility: false, // required for foregroundColor ) leading App Title title actions Flutter example ListView() class https://api.flutter.dev/flutter/widgets/ListView-class.html ListView( children: [ //any Widgets Center(child: Text(‘Some text)), Expanded(child: Center(child: Text(‘Some text 2))), Text(‘Some text 3), ], scrollDirection: Axis.vertical, //Axis.horizontal ) A scrollable list of widgets arranged linearly. Flutter example GridView() class https://api.flutter.dev/flutter/widgets/ListView-class.html GridView( crossAxisCount: 2, children: <Widget>[ Text(My Text 1), Text(‘My Text 2’), Text(‘My Text 3’), Text(‘More text…’), ], scrollDirection: Axis.vertical, //Axis.horizontal ) A 2D scrollable list of widgets. Main axis Cross axis __MACOSX/project 1/10:14 scaffolding /._10:14 presentation slides.pdf project 1/10:14 scaffolding /10:14 lecture code.docx import package:flutter/material.dart; void main() { runApp(MyApp()); } var theme = new ThemeData( // Define the default `TextTheme`. Use this to specify the default // text styling for headlines, titles, bodies of text, and more. fontFamily: Arial, //3 textTheme: TextTheme( headline1: TextStyle(fontSize: 62.0, fontWeight: FontWeight.bold), headline6: TextStyle(fontSize: 36.0, fontStyle: FontStyle.italic), bodyText2: TextStyle(fontSize: 14.0, fontFamily: Arial, height: 1.5), ), //ThemeData ); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { var appName = Material scaffolds; return MaterialApp( title: appName, home: MyHomePage(), //this removes the debug banner from the app debugShowCheckedModeBanner: false, ); } } String richText = Born in Northamptonshire, England, on October 2, 1452, King Richard III remains one of Englands most infamous rulers. Modern scholars, however, question how much his bad reputation is true and how much is myth. Richard arrived into this world with little expectation that he would win fame or claim power. He was the youngest surviving son of Richard Plantagenet, 3rd Duke of York, and his wife, Cecily Neville. It is thought that Richard spent his early years at Fotheringhay Castle in Northamptonshire.\n\nRichard III was a child when his family, the House of York, engaged in battle against the Lancastrians for control of the country. This long and bloody civil conflict is known as the War of the Roses. Richard lost his father, an uncle and one of his brothers in December 1460 battling for the crown. Another brother, Edward IV, scored an impressive victory against King Henry VI, and his Lancastrian supporters the following February.; String richURL = https://www.biography.com/.image/ar_1:1\%2Cc_fill\%2Ccs_srgb\%2Cg_face\%2Cq_auto:good\%2Cw_300/MTE4MDAzNDEwNjY5ODk3MjMw/richard-iii-9457120-1-402.jpg; class MyHomePage extends StatelessWidget { Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text(Material scaffolds), /* actions: <Widget>[ //For illustration purposes. //Icons on their own dont belong here Icon(Icons.favorite), Icon(Icons.add), Icon(Icons.beach_access), ], */ foregroundColor: Colors.black, backgroundColor: Colors.greenAccent, backwardsCompatibility: false, ), body: gridView(), //listView2(), //Center(child: Text(Body content)), //listView2(), / bottomNavigationBar: Container( child: Text(Nav item), decoration: BoxDecoration(border: Border.all(color: Colors.green, width: 3)), ), //Container drawer: Drawer( child: Center( child: Text(Drawer), ), ), bottomSheet: Container( child: Expanded( child: Text(Copyright 2021), ), margin: EdgeInsets.only(bottom: 10), ), //bottomSheeet floatingActionButton: FloatingActionButton( child: Icon(Icons.add), onPressed: () {}, /*onPressed: () { Widget snackBar = SnackBar( content: Text(You clicked the button!), ); // Find the ScaffoldMessenger in the widget tree // and use it to show a SnackBar. ScaffoldMessenger.of(context).showSnackBar(snackBar); },*/ )); } } //MyHomePage class MyThemePage extends StatelessWidget { Widget build(BuildContext context) { /*body: Center( child: Column(children: [ Container( child: Text( Richard!, style: Theme.of(context).textTheme.headline1, ), ), //Container Container( child: Text( Act III, style: Theme.of(context).textTheme.headline6, ), //Text ), //Expanded Container( child: Text( this.text, style: Theme.of(context).textTheme.bodyText2, ), ), //Container ]) //column ), //Center floatingActionButton: FloatingActionButton( onPressed: () {}, child: Icon(Icons.add), ),*/ } //build } var listColors = [ Colors.amber, Colors.pink, Colors.green, Colors.blue ]; Widget listView() { var blocks = <Widget>[]; for (var color in listColors) { blocks.add(Container( height: 250, color: color, child: Center(child: Text(Color: ${color.value})), )); } return ListView( children: blocks, //padding: const EdgeInsets.all(8), //scrollDirection: Axis.horizontal, ); } //listView Widget listView2() { return ListView( children: [ Container( child: Center(child: Image.network(richURL)), ), Container( child: Center( child: Text( Richard!, style: TextStyle(fontSize: 85, fontFamily: Roboto), ), //Text ), //Center ), //Container Container( child: Center( child: Text( Act III, style: TextStyle(fontSize: 34, fontStyle: FontStyle.italic), ), //Text ), //Center ), //Container Container(child: Text(richText)), //Container ], ); } Widget gridView() { List blocks = <Widget>[]; for (var i = 1; i < 10; i++) { blocks.add(Container( padding: EdgeInsets.all(8), child: Text(This is block $i), color: Colors.teal[i * 100], )); } return GridView.count( primary: false, padding: const EdgeInsets.all(20), crossAxisSpacing: 50, mainAxisSpacing: 150, crossAxisCount: 3, scrollDirection: Axis.vertical, children: blocks, ); //Gridview } __MACOSX/project 1/10:14 scaffolding /._10:14 lecture code.docx project 1/10:14 scaffolding /10:14 starter code.docx import package:flutter/material.dart; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { var appName = Material scaffolds; return MaterialApp( title: appName, home: MyHomePage(), //this removes the debug banner from the app debugShowCheckedModeBanner: false, ); } } String richText = Born in Northamptonshire, England, on October 2, 1452, King Richard III remains one of Englands most infamous rulers. Modern scholars, however, question how much his bad reputation is true and how much is myth. Richard arrived into this world with little expectation that he would win fame or claim power. He was the youngest surviving son of Richard Plantagenet, 3rd Duke of York, and his wife, Cecily Neville. It is thought that Richard spent his early years at Fotheringhay Castle in Northamptonshire.\n\nRichard III was a child when his family, the House of York, engaged in battle against the Lancastrians for control of the country. This long and bloody civil conflict is known as the War of the Roses. Richard lost his father, an uncle and one of his brothers in December 1460 battling for the crown. Another brother, Edward IV, scored an impressive victory against King Henry VI, and his Lancastrian supporters the following February.; String richURL =   :1\%2Cc_fill\%2Ccs_srgb\%2Cg_face\%2Cq_auto:good\%2Cw_300/MTE4MDAzNDEwNjY5ODk3MjMw/richard-iii-9457120-1-402.jpg; class MyHomePage extends StatelessWidget { Widget build(BuildContext context) { }//build } //MyHomePage __MACOSX/project 1/10:14 scaffolding /._10:14 starter code.docx __MACOSX/project 1/Project01-Starter/._test project 1/Project01-Starter/.metadata # This file tracks properties of this Flutter project. # Used by Flutter tool to assess capabilities and perform upgrades etc. # # This file should be version controlled and should not be manually edited. version: revision: 27321ebbad34b0a3fafe99fac037102196d655ff channel: stable project_type: app __MACOSX/project 1/Project01-Starter/._.metadata __MACOSX/project 1/Project01-Starter/._web project 1/Project01-Starter/pubspec.lock # Generated by pub # See https://dart.dev/tools/pub/glossary#lockfile packages: archive: dependency: transitive description: name: archive url: https://pub.dartlang.org source: hosted version: 2.0.11 args: dependency: transitive description: name: args url: https://pub.dartlang.org source: hosted version: 1.5.2 async: dependency: transitive description: name: async url: https://pub.dartlang.org source: hosted version: 2.4.0 boolean_selector: dependency: transitive description: name: boolean_selector url: https://pub.dartlang.org source: hosted version: 1.0.5 charcode: dependency: transitive description: name: charcode url: https://pub.dartlang.org source: hosted version: 1.1.2 collection: dependency: transitive description: name: collection url: https://pub.dartlang.org source: hosted version: 1.14.11 convert: dependency: transitive description: name: convert url: https://pub.dartlang.org source: hosted version: 2.1.1 crypto: dependency: transitive description: name: crypto url: https://pub.dartlang.org source: hosted version: 2.1.3 cupertino_icons: dependency: direct main description: name: cupertino_icons url: https://pub.dartlang.org source: hosted version: 0.1.3 flutter: dependency: direct main description: flutter source: sdk version: 0.0.0 flutter_test: dependency: direct dev description: flutter source: sdk version: 0.0.0 image: dependency: transitive description: name: image url: https://pub.dartlang.org source: hosted version: 2.1.4 matcher: dependency: transitive description: name: matcher url: https://pub.dartlang.org source: hosted version: 0.12.6 meta: dependency: transitive description: name: meta url: https://pub.dartlang.org source: hosted version: 1.1.8 path: dependency: transitive description: name: path url: https://pub.dartlang.org source: hosted version: 1.6.4 pedantic: dependency: transitive description: name: pedantic url: https://pub.dartlang.org source: hosted version: 1.8.0+1 petitparser: dependency: transitive description: name: petitparser url: https://pub.dartlang.org source: hosted version: 2.4.0 quiver: dependency: transitive description: name: quiver url: https://pub.dartlang.org source: hosted version: 2.0.5 sky_engine: dependency: transitive description: flutter source: sdk version: 0.0.99 source_span: dependency: transitive description: name: source_span url: https://pub.dartlang.org source: hosted version: 1.5.5 stack_trace: dependency: transitive description: name: stack_trace url: https://pub.dartlang.org source: hosted version: 1.9.3 stream_channel: dependency: transitive description: name: stream_channel url: https://pub.dartlang.org source: hosted version: 2.0.0 string_scanner: dependency: transitive description: name: string_scanner url: https://pub.dartlang.org source: hosted version: 1.0.5 term_glyph: dependency: transitive description: name: term_glyph url: https://pub.dartlang.org source: hosted version: 1.1.0 test_api: dependency: transitive description: name: test_api url: https://pub.dartlang.org source: hosted version: 0.2.11 typed_data: dependency: transitive description: name: typed_data url: https://pub.dartlang.org source: hosted version: 1.1.6 vector_math: dependency: transitive description: name: vector_math url: https://pub.dartlang.org source: hosted version: 2.0.8 xml: dependency: transitive description: name: xml url: https://pub.dartlang.org source: hosted version: 3.5.0 sdks: dart: >=2.4.0 <3.0.0 __MACOSX/project 1/Project01-Starter/._pubspec.lock __MACOSX/project 1/Project01-Starter/._ios project 1/Project01-Starter/README.md # Project01 A new Flutter project created with [FlutLab](https://flutlab.io) ### Getting Started: FlutLab - Flutter Online IDE - Watch Mini crash course How to use Flutter Widgets on [FlutLab Youtube Channel](https://www.youtube.com/channel/UC7ZOPQm4JFlvBc9WeynLX_g) - Discover a marketplace of ready-to-use Flutter projects [FlutLab Widget Bay](https://widgetbay.flutlab.io/) - Join the discussion and conversation on [FlutLab Facebook Group](https://www.facebook.com/groups/flutlab/) If you have some questions regarding FlutLab, you can ask on [FlutLab FAQ](https://faq.flutlab.io/) ### Getting Started: Flutter This project is a starting point for a Flutter application. A few resources to get you started if this is your first Flutter project: - [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) - [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) For help getting started with Flutter, view [online documentation](https://flutter.dev/docs), which offers tutorials, samples, guidance on mobile development, and a full API reference. __MACOSX/project 1/Project01-Starter/._README.md project 1/Project01-Starter/pubspec.yaml name: project01 description: A new Flutter project. # The following defines the version and build number for your application. # A version number is three numbers separated by dots, like 1.2.43 # followed by an optional build number separated by a +. # Both the version and the builder number may be overridden in flutter # build by specifying --build-name and --build-number, respectively. # In Android, build-name is used as versionName while build-number used as versionCode. # Read more about Android versioning at https://developer.android.com/studio/publish/versioning # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html version: 1.0.0+1 environment: sdk: >=2.10.0 <3.0.0 dependencies: flutter: sdk: flutter # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. cupertino_icons: ^0.1.2 dev_dependencies: flutter_test: sdk: flutter # For information on the generic Dart part of this file, see the # following page: https://dart.dev/tools/pub/pubspec # The following section is specific to Flutter. flutter: assets: - assets/images/agnolotti.jpg - assets/images/couscous.jpg - assets/images/gnocchi.jpg - assets/images/grilled-cheese.jpg - assets/images/ragu.jpg - assets/images/scampi.jpg # The following line ensures that the Material Icons font is # included with your application, so that you can use the icons in # the material Icons class. uses-material-design: true # To add assets to your application, add an assets section, like this: # assets: # - images/a_dot_burr.jpeg # - images/a_dot_ham.jpeg # An image asset can refer to one or more resolution-specific variants, see # https://flutter.dev/assets-and-images/#resolution-aware. # For details regarding adding assets from package dependencies, see # https://flutter.dev/assets-and-images/#from-packages # To add custom fonts to your application, add a fonts section here, # in this flutter section. Each entry in this list should have a # family key with the font family name, and a fonts key with a # list giving the asset and other descriptors for the font. For # example: # fonts: # - family: Schyler # fonts: # - asset: fonts/Schyler-Regular.ttf # - asset: fonts/Schyler-Italic.ttf # style: italic # - family: Trajan Pro # fonts: # - asset: fonts/TrajanPro.ttf # - asset: fonts/TrajanPro_Bold.ttf # weight: 700 # # For details regarding fonts from package dependencies, # see https://flutter.dev/custom-fonts/#from-packages __MACOSX/project 1/Project01-Starter/._pubspec.yaml __MACOSX/project 1/Project01-Starter/._android __MACOSX/project 1/Project01-Starter/._lib project 1/Project01-Starter/packages.md Generated by [flutlab.io](https://flutlab.io) on 2021-10-16 13:33:18 ## pub.dartlang.org hosted packages - [async 2.6.1](https://pub.dartlang.org/packages/async/versions/2.6.1) - [boolean_selector 2.1.0](https://pub.dartlang.org/packages/boolean_selector/versions/2.1.0) - [characters 1.1.0](https://pub.dartlang.org/packages/characters/versions/1.1.0) - [charcode 1.2.0](https://pub.dartlang.org/packages/charcode/versions/1.2.0) - [clock 1.1.0](https://pub.dartlang.org/packages/clock/versions/1.1.0) - [collection 1.15.0](https://pub.dartlang.org/packages/collection/versions/1.15.0) - [cupertino_icons 0.1.3](https://pub.dartlang.org/packages/cupertino_icons/versions/0.1.3) - [fake_async 1.2.0](https://pub.dartlang.org/packages/fake_async/versions/1.2.0) - [matcher 0.12.10](https://pub.dartlang.org/packages/matcher/versions/0.12.10) - [meta 1.3.0](https://pub.dartlang.org/packages/meta/versions/1.3.0) - [path 1.8.0](https://pub.dartlang.org/packages/path/versions/1.8.0) - [source_span 1.8.1](https://pub.dartlang.org/packages/source_span/versions/1.8.1) - [stack_trace 1.10.0](https://pub.dartlang.org/packages/stack_trace/versions/1.10.0) - [stream_channel 2.1.0](https://pub.dartlang.org/packages/stream_channel/versions/2.1.0) - [string_scanner 1.1.0](https://pub.dartlang.org/packages/string_scanner/versions/1.1.0) - [term_glyph 1.2.0](https://pub.dartlang.org/packages/term_glyph/versions/1.2.0) - [test_api 0.3.0](https://pub.dartlang.org/packages/test_api/versions/0.3.0) - [typed_data 1.3.0](https://pub.dartlang.org/packages/typed_data/versions/1.3.0) - [vector_math 2.1.0](https://pub.dartlang.org/packages/vector_math/versions/2.1.0) ## Other packages - flutter - flutter_test - sky_engine - project01 (this package) __MACOSX/project 1/Project01-Starter/._packages.md __MACOSX/project 1/Project01-Starter/._assets project 1/Project01-Starter/test/widget_test.dart // This is a basic Flutter widget test. // // To perform an interaction with a widget in your test, use the WidgetTester // utility that Flutter provides. For example, you can send tap and scroll // gestures. You can also use WidgetTester to find child widgets in the widget // tree, read text, and verify that the values of widget properties are correct. import package:flutter/material.dart; import package:flutter_test/flutter_test.dart; import package:project01/main.dart; void main() { testWidgets(Counter increments smoke test, (WidgetTester tester) async { // Build our app and trigger a frame. await tester.pumpWidget(MyApp()); // Verify that our counter starts at 0. expect(find.text(0), findsOneWidget); expect(find.text(1), findsNothing); // Tap the + icon and trigger a frame. await tester.tap(find.byIcon(Icons.add)); await tester.pump(); // Verify that our counter has incremented. expect(find.text(0), findsNothing); expect(find.text(1), findsOneWidget); }); } __MACOSX/project 1/Project01-Starter/test/._widget_test.dart project 1/Project01-Starter/web/index.html __MACOSX/project 1/Project01-Starter/web/._index.html project 1/Project01-Starter/web/favicon.png __MACOSX/project 1/Project01-Starter/web/._favicon.png __MACOSX/project 1/Project01-Starter/web/._icons project 1/Project01-Starter/web/manifest.json { name: flutter_web_app, short_name: flutter_web_app, start_url: ., display: minimal-ui, background_color: #0175C2, theme_color: #0175C2, description: A new Flutter project., orientation: portrait-primary, prefer_related_applications: false, icons: [ { src: icons/Icon-192.png, sizes: 192x192, type: image/png }, { src: icons/Icon-512.png, sizes: 512x512, type: image/png } ] } __MACOSX/project 1/Project01-Starter/web/._manifest.json __MACOSX/project 1/Project01-Starter/ios/._Runner.xcworkspace __MACOSX/project 1/Project01-Starter/ios/._Runner __MACOSX/project 1/Project01-Starter/ios/._Runner.xcodeproj __MACOSX/project 1/Project01-Starter/ios/._Flutter __MACOSX/project 1/Project01-Starter/android/._app __MACOSX/project 1/Project01-Starter/android/._gradle project 1/Project01-Starter/android/build.gradle buildscript { ext.kotlin_version = 1.3.50 repositories { google() jcenter() } dependencies { classpath com.android.tools.build:gradle:3.5.0 classpath org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version } } allprojects { repositories { google() jcenter() } } rootProject.buildDir = ../build subprojects { project.buildDir = ${rootProject.buildDir}/${project.name} } subprojects { project.evaluationDependsOn(:app) } task clean(type: Delete) { delete rootProject.buildDir } __MACOSX/project 1/Project01-Starter/android/._build.gradle project 1/Project01-Starter/android/gradle.properties org.gradle.jvmargs=-Xmx1536M android.enableR8=true android.useAndroidX=true android.enableJetifier=true __MACOSX/project 1/Project01-Starter/android/._gradle.properties project 1/Project01-Starter/android/settings.gradle include :app def flutterProjectRoot = rootProject.projectDir.parentFile.toPath() def plugins = new Properties() def pluginsFile = new File(flutterProjectRoot.toFile(), .flutter-plugins) if (pluginsFile.exists()) { pluginsFile.withReader(UTF-8) { reader -> plugins.load(reader) } } plugins.each { name, path -> def pluginDirectory = flutterProjectRoot.resolve(path).resolve(android).toFile() include :$name project(:$name).projectDir = pluginDirectory } __MACOSX/project 1/Project01-Starter/android/._settings.gradle project 1/Project01-Starter/lib/main.dart import package:flutter/material.dart; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( // Application name title: Recipes, // A widget which will be started on application startup home: MyHomePage(title: DMST102-Recipes), ); } } class MyHomePage extends StatelessWidget { String title; // The indexes of each array match the assigned recipe. // DO NOT loop through each of these individually // to generate the recipes. List recipes = <String>[ Easy Breezy Grilling Cheesy, //grilled cheese One-Pan Ricotta-Dolloped Gnocchi, One-Pan Toscana Couscous Skillet, Butternut Squash Agnolotti, Shrimp & Scallop Scampi, Turkey Ragu Gnocchi, ]; List images = <String>[ grilled-cheese.jpg, //grilled cheese gnocchi.jpg, couscous.jpg, agnolotti.jpg, scampi.jpg, ragu.jpg ]; List ratings = <int>[ 3, //ratings for grilled cheese 5, 2, 4, 5, 1, ]; MyHomePage({@required this.title}); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( // The title text which will be shown on the action bar title: ),//Appbar body: ); //Scaffold }//build } __MACOSX/project 1/Project01-Starter/lib/._main.dart __MACOSX/project 1/Project01-Starter/assets/._images project 1/Project01-Starter/web/icons/Icon-192.png __MACOSX/project 1/Project01-Starter/web/icons/._Icon-192.png project 1/Project01-Starter/web/icons/Icon-512.png __MACOSX/project …
CATEGORIES
Economics Nursing Applied Sciences Psychology Science Management Computer Science Human Resource Management Accounting Information Systems English Anatomy Operations Management Sociology Literature Education Business & Finance Marketing Engineering Statistics Biology Political Science Reading History Financial markets Philosophy Mathematics Law Criminal Architecture and Design Government Social Science World history Chemistry Humanities Business Finance Writing Programming Telecommunications Engineering Geography Physics Spanish ach e. Embedded Entrepreneurship f. Three Social Entrepreneurship Models g. Social-Founder Identity h. Micros-enterprise Development Outcomes Subset 2. Indigenous Entrepreneurship Approaches (Outside of Canada) a. Indigenous Australian Entrepreneurs Exami Calculus (people influence of  others) processes that you perceived occurs in this specific Institution Select one of the forms of stratification highlighted (focus on inter the intersectionalities  of these three) to reflect and analyze the potential ways these ( American history Pharmacology Ancient history . Also Numerical analysis Environmental science Electrical Engineering Precalculus Physiology Civil Engineering Electronic Engineering ness Horizons Algebra Geology Physical chemistry nt When considering both O lassrooms Civil Probability ions Identify a specific consumer product that you or your family have used for quite some time. This might be a branded smartphone (if you have used several versions over the years) or the court to consider in its deliberations. Locard’s exchange principle argues that during the commission of a crime Chemical Engineering Ecology aragraphs (meaning 25 sentences or more). Your assignment may be more than 5 paragraphs but not less. INSTRUCTIONS:  To access the FNU Online Library for journals and articles you can go the FNU library link here:  https://www.fnu.edu/library/ In order to n that draws upon the theoretical reading to explain and contextualize the design choices. Be sure to directly quote or paraphrase the reading ce to the vaccine. Your campaign must educate and inform the audience on the benefits but also create for safe and open dialogue. A key metric of your campaign will be the direct increase in numbers.  Key outcomes: The approach that you take must be clear Mechanical Engineering Organic chemistry Geometry nment Topic You will need to pick one topic for your project (5 pts) Literature search You will need to perform a literature search for your topic Geophysics you been involved with a company doing a redesign of business processes Communication on Customer Relations. Discuss how two-way communication on social media channels impacts businesses both positively and negatively. Provide any personal examples from your experience od pressure and hypertension via a community-wide intervention that targets the problem across the lifespan (i.e. includes all ages). Develop a community-wide intervention to reduce elevated blood pressure and hypertension in the State of Alabama that in in body of the report Conclusions References (8 References Minimum) *** Words count = 2000 words. *** In-Text Citations and References using Harvard style. *** In Task section I’ve chose (Economic issues in overseas contracting)" Electromagnetism w or quality improvement; it was just all part of good nursing care.  The goal for quality improvement is to monitor patient outcomes using statistics for comparison to standards of care for different diseases e a 1 to 2 slide Microsoft PowerPoint presentation on the different models of case management.  Include speaker notes... .....Describe three different models of case management. visual representations of information. They can include numbers SSAY ame workbook for all 3 milestones. You do not need to download a new copy for Milestones 2 or 3. When you submit Milestone 3 pages): Provide a description of an existing intervention in Canada making the appropriate buying decisions in an ethical and professional manner. Topic: Purchasing and Technology You read about blockchain ledger technology. Now do some additional research out on the Internet and share your URL with the rest of the class be aware of which features their competitors are opting to include so the product development teams can design similar or enhanced features to attract more of the market. The more unique low (The Top Health Industry Trends to Watch in 2015) to assist you with this discussion.         https://youtu.be/fRym_jyuBc0 Next year the $2.8 trillion U.S. healthcare industry will   finally begin to look and feel more like the rest of the business wo evidence-based primary care curriculum. Throughout your nurse practitioner program Vignette Understanding Gender Fluidity Providing Inclusive Quality Care Affirming Clinical Encounters Conclusion References Nurse Practitioner Knowledge Mechanics and word limit is unit as a guide only. The assessment may be re-attempted on two further occasions (maximum three attempts in total). All assessments must be resubmitted 3 days within receiving your unsatisfactory grade. You must clearly indicate “Re-su Trigonometry Article writing Other 5. June 29 After the components sending to the manufacturing house 1. In 1972 the Furman v. Georgia case resulted in a decision that would put action into motion. Furman was originally sentenced to death because of a murder he committed in Georgia but the court debated whether or not this was a violation of his 8th amend One of the first conflicts that would need to be investigated would be whether the human service professional followed the responsibility to client ethical standard.  While developing a relationship with client it is important to clarify that if danger or Ethical behavior is a critical topic in the workplace because the impact of it can make or break a business No matter which type of health care organization With a direct sale During the pandemic Computers are being used to monitor the spread of outbreaks in different areas of the world and with this record 3. Furman v. Georgia is a U.S Supreme Court case that resolves around the Eighth Amendments ban on cruel and unsual punishment in death penalty cases. The Furman v. Georgia case was based on Furman being convicted of murder in Georgia. Furman was caught i One major ethical conflict that may arise in my investigation is the Responsibility to Client in both Standard 3 and Standard 4 of the Ethical Standards for Human Service Professionals (2015).  Making sure we do not disclose information without consent ev 4. Identify two examples of real world problems that you have observed in your personal Summary & Evaluation: Reference & 188. Academic Search Ultimate Ethics We can mention at least one example of how the violation of ethical standards can be prevented. Many organizations promote ethical self-regulation by creating moral codes to help direct their business activities *DDB is used for the first three years For example The inbound logistics for William Instrument refer to purchase components from various electronic firms. During the purchase process William need to consider the quality and price of the components. In this case 4. A U.S. Supreme Court case known as Furman v. Georgia (1972) is a landmark case that involved Eighth Amendment’s ban of unusual and cruel punishment in death penalty cases (Furman v. Georgia (1972) With covid coming into place In my opinion with Not necessarily all home buyers are the same! When you choose to work with we buy ugly houses Baltimore & nationwide USA The ability to view ourselves from an unbiased perspective allows us to critically assess our personal strengths and weaknesses. This is an important step in the process of finding the right resources for our personal learning style. Ego and pride can be · By Day 1 of this week While you must form your answers to the questions below from our assigned reading material CliftonLarsonAllen LLP (2013) 5 The family dynamic is awkward at first since the most outgoing and straight forward person in the family in Linda Urien The most important benefit of my statistical analysis would be the accuracy with which I interpret the data. The greatest obstacle From a similar but larger point of view 4 In order to get the entire family to come back for another session I would suggest coming in on a day the restaurant is not open When seeking to identify a patient’s health condition After viewing the you tube videos on prayer Your paper must be at least two pages in length (not counting the title and reference pages) The word assimilate is negative to me. I believe everyone should learn about a country that they are going to live in. It doesnt mean that they have to believe that everything in America is better than where they came from. It means that they care enough Data collection Single Subject Chris is a social worker in a geriatric case management program located in a midsize Northeastern town. She has an MSW and is part of a team of case managers that likes to continuously improve on its practice. The team is currently using an I would start off with Linda on repeating her options for the child and going over what she is feeling with each option.  I would want to find out what she is afraid of.  I would avoid asking her any “why” questions because I want her to be in the here an Summarize the advantages and disadvantages of using an Internet site as means of collecting data for psychological research (Comp 2.1) 25.0\% Summarization of the advantages and disadvantages of using an Internet site as means of collecting data for psych Identify the type of research used in a chosen study Compose a 1 Optics effect relationship becomes more difficult—as the researcher cannot enact total control of another person even in an experimental environment. Social workers serve clients in highly complex real-world environments. Clients often implement recommended inte I think knowing more about you will allow you to be able to choose the right resources Be 4 pages in length soft MB-920 dumps review and documentation and high-quality listing pdf MB-920 braindumps also recommended and approved by Microsoft experts. The practical test g One thing you will need to do in college is learn how to find and use references. References support your ideas. College-level work must be supported by research. You are expected to do that for this paper. You will research Elaborate on any potential confounds or ethical concerns while participating in the psychological study 20.0\% Elaboration on any potential confounds or ethical concerns while participating in the psychological study is missing. Elaboration on any potenti 3 The first thing I would do in the family’s first session is develop a genogram of the family to get an idea of all the individuals who play a major role in Linda’s life. After establishing where each member is in relation to the family A Health in All Policies approach Note: The requirements outlined below correspond to the grading criteria in the scoring guide. At a minimum Chen Read Connecting Communities and Complexity: A Case Study in Creating the Conditions for Transformational Change Read Reflections on Cultural Humility Read A Basic Guide to ABCD Community Organizing Use the bolded black section and sub-section titles below to organize your paper. For each section Losinski forwarded the article on a priority basis to Mary Scott Losinksi wanted details on use of the ED at CGH. He asked the administrative resident