1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00
Commit Graph

876 Commits

Author SHA1 Message Date
Brett Morgan
4366e1015a Simplistic Calculator (#1030)
* Simplistic Calculator, initial commit

* Add Linux runner

* Add macOS runner, update `main.dart` for iOS

* Add a test
2022-02-27 09:09:31 -08:00
Miguel Beltran
f9b9511d01 Update provider_counter Android files (#1024) 2022-02-20 20:18:55 +10:00
Miguel Beltran
6819111886 Update platform_design Android files (#1023) 2022-02-20 20:17:41 +10:00
Miguel Beltran
d8d58fa0a7 Update Kotlin plugin version in testing_app (#1025) 2022-02-20 20:16:30 +10:00
Miguel Beltran
2714e8ccba Update Android files in navigation_and_routing (bookstore) (#1019) 2022-02-20 19:36:53 +10:00
Miguel Beltran
210029024d Update null_safety Android files (#1020) 2022-02-20 19:36:14 +10:00
Miguel Beltran
5c7afb10cf Update place_tracker Android files (#1021) 2022-02-20 19:35:20 +10:00
Miguel Beltran
7e7ed30295 Update platform_channels Android files (#1022) 2022-02-20 19:31:02 +10:00
Miguel Beltran
2e8a2c9e6d Updated Android files (#1013) 2022-02-18 13:54:32 +10:00
Miguel Beltran
5f0b6f3055 Update Android files in infinite_list (#1014) 2022-02-18 11:22:11 +10:00
Miguel Beltran
b83102d382 Update Android files in animations (#1015) 2022-02-18 11:21:39 +10:00
Miguel Beltran
24dcdb6ac0 Update Android files in form_ap (#1016) 2022-02-18 11:20:43 +10:00
Miguel Beltran
515cdc1d5d Update Android files in isolate_example (#1017) 2022-02-18 11:20:00 +10:00
Miguel Beltran
a89f1e0b5c Update Android files in jsonexample (#1018) 2022-02-18 11:19:28 +10:00
Chris Bracken
8c48dcdd49 Photo search: minor menu item text cleanup (#997) 2022-02-15 12:54:21 +10:00
Craig Labenz
9720e2698b Working slide_puzzle (#1012)
* updates slide puzzle to latest

* Bump slide_puzzle to working version

* switch to slide_puzzle release

* Bump slide_puzzle to working version
2022-02-14 13:41:11 -08:00
Craig Labenz
d070028135 updates slide puzzle to latest (#1011) 2022-02-11 12:49:26 -08:00
Craig Labenz
7ec65b7236 restored GA to samples index (#1010) 2022-02-09 09:05:41 -08:00
Brett Morgan
ae50cc192e Update slide_puzzle (#1007) 2022-02-04 14:56:26 -08:00
Brett Morgan
9c02a0fa09 Migrate desktop_photo_search to top level (#1002) 2022-02-04 08:33:53 +10:00
Andrew Brogdon
93bf3263c5 Lands beta changes. (#1006) 2022-02-03 12:43:20 -08:00
Michael Goderbauer
5f4d30740c Fix multiple_flutters_android (#1005) 2022-02-02 12:59:08 -08:00
eggfly
0024df9dad Add the leak_vm meta-data in add-to-app sample. (#996) 2022-01-22 11:26:19 +08:00
Brett Morgan
e20b4a1f28 testing_app: Rebuild runners (#995) 2022-01-19 09:45:03 -08:00
John Ryan
ff405c894c update slide_puzzle to latest commit (#993) 2022-01-18 17:41:31 -08:00
Chris Bracken
0687245ebf Photo search: Wrap tree node in Semantics widget (#988)
The results tree view nodes are each a Row widget containing an
IconButton (which in this case is blank) and an InkWell. In order to
expose this as a tappable widget in screen readers, we wrap the tree
nodes in a Semantics widget that performs the same function as the
InkWell would when tapped.
2022-01-14 18:32:14 -08:00
Chris Bracken
de9afb40e0 Photo search: update Linux window title (#991) 2022-01-15 12:56:30 +11:00
Chris Bracken
6f78a89a61 Photo search: Add image, download button semantics (#989)
Adds the Unsplash photo description, if available, as the image
semantics label in the photo detail view.

Adds a 'download' tooltip to the download IconButton, which also sets
the semantics label for screen readers.
2022-01-14 12:25:10 +10:00
Chris Bracken
8da15e2059 Photo search: Set window title on Windows (#987)
Updates the window title to "Desktop Photo Search" in the Windows
build of desktop_photo_search.
2022-01-14 12:24:57 +10:00
Abdullah Deshmukh
e0fe2830cb Update README.md (#986) 2022-01-11 16:27:52 +10:00
Brett Morgan
a5203b071c linting_tool: Fix warnings and update dependencies (#981) 2022-01-06 15:16:23 +10:00
John Ryan
0cb331f7a7 Update slide puzzle description (#980) 2022-01-05 16:00:26 -08:00
John Ryan
ef464b83b9 Update slide_puzzle screenshot (#979) 2022-01-05 15:46:11 -08:00
Brett Morgan
affbe89cee experimental/web_dashboard: Drop Android and iOS runners (#978) 2022-01-06 08:32:26 +10:00
Brett Morgan
5c063d2a9e Analyze with fatal infos on both stable and beta (#962) 2022-01-05 16:45:06 +10:00
Brett Morgan
9102cb4653 Update federated_plugin runners (#972) 2022-01-05 11:35:50 +10:00
Brett Morgan
26d88f1799 Update pubspec.yaml files (#971) 2022-01-05 10:43:14 +10:00
Ahmed Ashour
50d5dd968b Remove unnecessary types (#946) 2022-01-05 10:39:45 +10:00
John Ryan
7b5f1e52b4 Update slide puzzle (#977)
* remove kevmoo/slide_puzzle

* Add VGVentures/slide_puzzle
2022-01-04 15:27:11 -08:00
Hao
7171e92c1f fix the issue of generating more than [catalogLength] items when [catalogLength] is not divisible by [itemsPerPage] (#952)
It only checks if [startingIndex] is greater than [catalogLength] in the existing implementation. It doesn't check the index of an item in a page. So it may generate more items than the number specified by [catalogLength]. i.e if [catalogLength] is 113, the existing implementation will still generate 120 items. This PR solves the issue by adding the check for the indices of items in a page.
2022-01-05 07:16:01 +10:00
ColdPaleLight
296fbac814 Ensure that the engine is destroyed when 'EngineBindings.detach' in the multiple_flutters example on Android (#969) 2022-01-05 07:13:42 +10:00
Brett Morgan
5b0a6be873 Drop DEVELOPMENT_TEAM (#975) 2022-01-05 06:29:30 +11:00
Brett Morgan
c9c351f671 Resolving CI failures in web (#973) 2022-01-04 10:00:02 -08:00
Miguel Beltran
ea624af0f9 testing_app code review and improvements (#960) 2021-12-11 16:39:07 +10:00
Andrew Brogdon
664b63c03c Updates for 2.8! (#961) 2021-12-09 13:15:57 +10:00
Brett Morgan
be34b0bf43 Centralize analysis options (#957) 2021-12-01 16:49:51 +10:00
Brett Morgan
bdf7ad36da [CI]: dart analyze --fatal-infos (#954) 2021-12-01 12:10:44 +10:00
Brett Morgan
b229c5236f [CI]: Drop dev channel (#955) 2021-12-01 09:34:24 +10:00
Brett Morgan
84e7057abe Update pubspec.yaml files (#958) 2021-12-01 09:33:28 +10:00
Brett Morgan
53c531879e Update slide_puzzle (#956) 2021-12-01 09:33:07 +10:00