Update screenshots

This commit is contained in:
Vishesh Handa
2019-11-03 02:01:15 +01:00
parent 877b68dbbd
commit b67af9d7a5
7 changed files with 4 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 150 KiB

After

Width:  |  Height:  |  Size: 147 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 110 KiB

After

Width:  |  Height:  |  Size: 103 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 140 KiB

After

Width:  |  Height:  |  Size: 140 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 88 KiB

After

Width:  |  Height:  |  Size: 93 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 83 KiB

After

Width:  |  Height:  |  Size: 82 KiB

View File

@ -43,13 +43,13 @@ void main() {
await driver.tap(nextButton); await driver.tap(nextButton);
// Page 3 // Page 3
await _takeScreenshot(); // await _takeScreenshot();
await driver.tap(find.byValueKey("GetStarted")); await driver.tap(find.byValueKey("GetStarted"));
// Main Screen // Main Screen
final loadedFinder = find.text('Why not add your first\n Journal Entry?'); final loadedFinder = find.text('Why not add your first\n Journal Entry?');
await driver.waitFor(loadedFinder, timeout: const Duration(seconds: 5)); await driver.waitFor(loadedFinder, timeout: const Duration(seconds: 5));
await _takeScreenshot(); // await _takeScreenshot();
// Create a new note // Create a new note
var fab = find.byValueKey("FAB"); var fab = find.byValueKey("FAB");
@ -57,11 +57,11 @@ void main() {
await driver.tap(fab); await driver.tap(fab);
await driver.waitFor(find.text('Write here'), await driver.waitFor(find.text('Write here'),
timeout: const Duration(seconds: 2)); timeout: const Duration(seconds: 2));
await _takeScreenshot(); //await _takeScreenshot();
await driver.enterText( await driver.enterText(
"Your notes will be saved in Markdown with a YAML header for the metadata.\n\nThe writing experience is clean and distraction free"); "Your notes will be saved in Markdown with a YAML header for the metadata.\n\nThe writing experience is clean and distraction free");
await _takeScreenshot(); // await _takeScreenshot();
await driver.tap(find.byValueKey("NewEntry")); await driver.tap(find.byValueKey("NewEntry"));
// Create another note // Create another note