{"id": "780aabbc9676-0", "text": "Adopt a Widget\n\nContributions\n\nHow to contribute\n\nDiscord\n\nGuidelines\n\nWays to contribute\n\nAdding code\n\nSnippets\nSample\nDartPad sample\n\n\nAdding References\nAdding more explanation to the documentation\n\nQuickstart\n\nGet the code\nOpen the code in your IDE\nMake the change\nAnalyzing and Generating API Docs\nCommit the change\nMake a pull request\n\nResources\n\nNote:\n The Adopt a Widget program ran during the month of\n November 2020. Thanks so much for your participation!\n We may do something similar in the future.", "source": "https://docs.flutter.dev/adoptawidget/index.html"} {"id": "780aabbc9676-1", "text": "Flutter is an open source project hosted on GitHub\nand the API docs (generated from the source code) are\nhosted on api.flutter.dev.\nAdopting a widget and improving its documentation helps everyone!\nSo, for the month of November, we\u2019re extending a special\ninvitation to contribute to the Flutter project by choosing\na Widget and improving its API documentation.\n\nContributions\n\n(Updated Feb 14, 2021)\n\nChinmay-KB contributed to the\nWillPopScope docs\n(pull request)\n\nchihempat contributed to the\nSliverWithKeepAliveWidget docs\n(pull request)\n\nobitodarky contributed to the\nStepper docs\n(pull request)\n\nSameerkash found an issue with the StatusTransitionWidget docs (issue)\n\ntadaspetra contributed to the\nMaterialBanner docs\n(pull request)", "source": "https://docs.flutter.dev/adoptawidget/index.html"} {"id": "780aabbc9676-2", "text": "tadaspetra contributed to the\nMaterialBanner docs\n(pull request)\n\nIsmailAbdirahman contributed to the\nNotificationListener docs\n(pull request)\n\nAneesh Rao contributed to the\nCircularProgressIndicator docs\n(pull request)\n\nAbhishek Ghaskata contributed to the\nHero docs\n(pull request)\n\nsinghsuryanshu contributed to the\nFittedBox docs\n(pull request)\n\nparzuko contributed to the\nDraggable docs\n(pull request)\n\nOscar Robles contributed to the\nActionListener docs\n(pull request)\n\narps18 contributed to the\nShortcuts docs\n(pull request)\n\nSanjoli Goyal contributed to the\nReorderableListView docs\n(pull request)\n\nAmitpatil215 contributed to the\nAspectRatio docs\n(pull request)\n\nCaptainIRS contributed to the\nAbsorbPointer docs\n(pull request)", "source": "https://docs.flutter.dev/adoptawidget/index.html"} {"id": "780aabbc9676-3", "text": "CaptainIRS contributed to the\nAbsorbPointer docs\n(pull request)\n\nYazeed AlKhalaf contributed to the\nIgnorePointer docs\n(pull request)\n\nabd99 contributed to the\nDismissible docs\n(pull request)\n\nMitesh Singh contributed to the\nPageView docs\n(pull request)\n\nredsolver contributed to the\nTable docs\n(pull request)\n\ntsvillain contributed to the\nTooltip docs\n(pull request)\n\nThesmader contributed to the\nSnackBar docs\n(pull request)\n\nMuskan Jain contributed to the\nColorFiltered docs\n(pull request)\n\nSergio Eric contributed to the\nPreferredSizeWidget docs\n(pull request)\n\nHow to contribute\n\nGo to this list of issues and choose one.\nYou can only be assigned one Adopt A Widget issue at a\ntime, so choose your favorite!", "source": "https://docs.flutter.dev/adoptawidget/index.html"} {"id": "780aabbc9676-4", "text": "Leave a comment on the issue, asking to be assigned.\nThe first person to respond will be assigned. For example:\n\nOnce you are assigned, set up your environment, make the change,\nand submit the pull request. If you\u2019re not sure how to do this,\nsee the Quickstart guide below.\n\nThe CONTRIBUTING\ndoc has details on contributing to Flutter.\n\nDiscord\n\nJoin the #AdoptAWidget channel on the Flutter Discord server\nto ask questions and get help.\n\nGuidelines\n\nWait to be assigned\n\nIf you aren\u2019t assigned to the issue, let the assignee fix it.\nDon\u2019t submit a pull request for someone else\u2019s issue.\n\nRespond within three days after being assigned\n\nIf we don\u2019t hear back from you,\nwe might need to assign it to someone else.\n\nOne issue at a time", "source": "https://docs.flutter.dev/adoptawidget/index.html"} {"id": "780aabbc9676-5", "text": "One issue at a time\n\nIf you\u2019re already working on an issue,\nwait until it\u2019s closed before requesting another.\n\nDon\u2019t create \u201cAdopt A Widget\u201d issues\n\nWe are limiting AdoptAWidget to this list of issues.\n\nDon\u2019t worry if you don\u2019t get assigned\n\nThere are plenty of other issues that can be fixed.\nYou can also take a look for\nissues with the \u201cd: api docs\u201d label\nthat need attention.\n\nBe original\n\nDon\u2019t copy code snippets or text from other sources like StackOverflow.\n\nWays to contribute\n\nEach issue specifies what type of contribution we are looking for:\n\nAdding code (either a snippet, sample, or DartPad)\n\nAdding references (for example, under \u201cSee also\u201d)\n\nAdding more explanation to the documentation\n\nAdding code", "source": "https://docs.flutter.dev/adoptawidget/index.html"} {"id": "780aabbc9676-6", "text": "Adding more explanation to the documentation\n\nAdding code\n\nThere are three ways to contribute code: a snippet,\na dartpad, or a sample.\nFor more details, see the Dartdoc Generation README.\n\nPlease be cognizant that writing sample code has a different goal\n(and some additional constraints) compared to writing production code.\nMozilla has a good overview (the article is about the web,\nbut 95% of it applies to any platform).\n\nSnippets\n\nSnippets can be added using the following syntax:\n\n/// {@tool snippet}\n\n///\n\n/// This is a comment explaining the snippet below:\n\n///\n\n/// ```dart\n\n/// MyWidget(\n\n/// color: Colors.green,\n\n/// )\n\n/// ```\n\n/// {@end-tool}\n\nSample", "source": "https://docs.flutter.dev/adoptawidget/index.html"} {"id": "780aabbc9676-7", "text": "/// ```\n\n/// {@end-tool}\n\nSample\n\nSamples are snippets of code that are wrapped with a template,\nso you don\u2019t have to write boilerplate code.\nThe --template can be any of the templates found in\nthe snippet tool\u2019s templates directory.\n\n/// {@tool sample --template=stateless_widget_scaffold_center}\n\n///\n\n/// This is a comment explaining the snippet below:\n\n///\n\n/// ```dart\n\n/// Widget build(BuildContext context) {\n\n/// return MyWidget(\n\n/// color: Colors.green,\n\n/// );\n\n/// }\n\n/// ```\n\n/// {@end-tool}\n\nDartPad sample", "source": "https://docs.flutter.dev/adoptawidget/index.html"} {"id": "780aabbc9676-8", "text": "/// {@end-tool}\n\nDartPad sample\n\nTo add a sample that runs in DartPad,\nuse {@tool dartpad} and provide the same\ntemplates found in the templates directory:\n\n/// {@tool dartpad --template=stateless_widget_material}\n\n///\n\n/// This is a comment explaining the snippet below:\n\n///\n\n/// ```dart\n\n/// Widget build(BuildContext context) {\n\n/// return MyWidget(\n\n/// color: Colors.green,\n\n/// );\n\n/// }\n\n/// ```\n\n/// {@end-tool}\n\nAdding References\n\nIf a Widget needs references,\nadd a See also: section to the end of a widget\u2019s\ndocumentation comment:\n\n/// Creates a route for the given route settings.\n\n///", "source": "https://docs.flutter.dev/adoptawidget/index.html"} {"id": "780aabbc9676-9", "text": "/// Creates a route for the given route settings.\n\n///\n\n/// Used by [Navigator.onGenerateRoute].\n\n///\n\n/// See also:\n\n///\n\n/// * [Navigator], which is where all the [Route]s end up.\n\nAdding more explanation to the documentation\n\nIf a widget doesn\u2019t provide enough explanation,\nyou can add more! You can explain:\n\nWhat it is\n\nWhat it enables you to do\n\nHow to use it\n\nThe behavior of the widget in certain situations\n\nOther important information about the widget\n\nSee the documentation section of the Flutter Style Guide\nand Effective Dart - Documentation\nfor details on how to write great documentation.\n\nQuickstart\n\nUse the following instructions to get started.\n\nGet the code", "source": "https://docs.flutter.dev/adoptawidget/index.html"} {"id": "780aabbc9676-10", "text": "Use the following instructions to get started.\n\nGet the code\n\nTo get started,\nfork the SDK and use git to fetch a local copy:\n\nInstall dependencies listed in\nSetting up the Framework development environment.\n\nFork the Flutter repo. For more information,\nsee GitHub\u2019s official instructions.\n\nClone your fork:\n `git clone https://github.com//flutter.git`\n\nChange directory into the repo: cd flutter\n\nAdd an upstream remote:\n `git remote add upstream git@github.com:flutter/flutter.git`\n\nRun flutter update-packages to fetch all the Dart packages that\nFlutter uses.\n\nOpen the code in your IDE\n\nIn IntelliJ or VSCode, open packages/flutter,\nwhere most of the Flutter framework code lives.\n\nMake the change", "source": "https://docs.flutter.dev/adoptawidget/index.html"} {"id": "780aabbc9676-11", "text": "Make the change\n\nOpen the file listed in the issue and update the documentation.\nSee \u201cWays to contribute\u201d for examples.\n\nAnalyzing and Generating API Docs\n\nRunning this command from the root directory analyzes\nand generates the documentation. This command can\ntake up to 20 minutes to complete, so double\ncheck your changes first. If you want, you can also\nanalyze snippets directly.\n\nTo view the generated docs, open dev/docs/doc/api/index.html.\n\nNote:\n Flutter API docs cannot be generated on Windows.\n If you are using Windows, you may need to download\n the Linux version of the SDK and use the\n Windows Subsystem for Linux.\n\nFor more information, see the Dartdoc Generation README.\n\nCommit the change\n\nModify the documentation and commit the change:\n\nb update-builder-widget\ngit add\n\nA\ngit commit\n\nm", "source": "https://docs.flutter.dev/adoptawidget/index.html"} {"id": "780aabbc9676-12", "text": "A\ngit commit\n\nm\n\n\"Update Builder API Docs\"\ngit push origin update-builder-widget\n\nMake a pull request\n\nMake a pull request with\nAdoptAWidget: WidgetName in the title,\nand fill out this template:\n\n\n\n\nThis pull request is:\n\n[x] A code sample\n\n[ ] More references\n\n[ ] More explanation\n\n\ncloses #1234\n\nNote:\n If you are a first-time contributor to this repo,\n you will be asked to sign Google\u2019s\n Contributor License Agreement.\n\nResources\n\nSetting up the Framework development environment\n\nCONTRIBUTING\n\nDartdoc Generation README", "source": "https://docs.flutter.dev/adoptawidget/index.html"} {"id": "780aabbc9676-13", "text": "CONTRIBUTING\n\nDartdoc Generation README\n\nFlutter Style Guide - Documentation\n\nEffective Dart - Documentation", "source": "https://docs.flutter.dev/adoptawidget/index.html"} {"id": "7ef9fa334f60-0", "text": "Fall 2021 Flutter Apprentice event\n\nThe Flutter Apprentice event has ended.\n Thanks to all who participated!\n If you missed the event, you can purchase\n the Flutter Apprentice book from\n raywenderlich.com, and watch the free\n book club replay videos.\n\nBook club replay videos\n\nYou can find replays of the book club videos on YouTube.\n\nChapters covered\n\nTopic\n\nVideo replay\n\n1, 2\n\nGetting started\n\nweek 1 replay\n\n3, 4\n\nWidgets\n\nweek 2 replay\n\n5, 6\n\nMore widgets\n\nweek 3 replay\n\n7, 8\n\nNavigation\n\nweek 4 replay\n\n9, 15", "source": "https://docs.flutter.dev/apprentice-giveaway/index.html"} {"id": "7ef9fa334f60-1", "text": "week 4 replay\n\n9, 15\n\nData persistence\n\nweek 5 replay\n\n10, 11\n\nNetworking & serialization\n\nweek 6 replay\n\n12, 14\n\nChopper & streams\n\nweek 7 replay\n\n13\n\nState management\n\nweek 8 replay\n\n19\n\nFirebase\n\nweek 9 replay\n\n16, 17, 18\n\nDeployment\n\nweek 10 replay", "source": "https://docs.flutter.dev/apprentice-giveaway/index.html"} {"id": "d01d7ce9d703-0", "text": "Flutter Brand Guidelines\n\nGeneral Rules That Govern the Use of the Flutter Trademarks\n\nSpecific Rules for Proper Usage of the Flutter Trademarks\n\nCommunity Use Exceptions\n\nThe \u201cFlutter\u201d name and logo are trademarks owned by Google.\nThese Brand Guidelines describe the appropriate uses of the Flutter\ntrademarks by members of the developer community who have obtained our\nconsent to use the trademarks pursuant to the Flutter Terms of Service.\nThese guidelines will ensure that the Flutter trademarks are used in a\nmanner that promotes Google\u2019s mission to provide a free and open source\nSDK for crafting high-quality native interfaces on iOS and\nAndroid in record time, and are not associated with objectionable material,\nas determined by Google.\n\nUse of the Flutter trademarks that is not expressly permitted by these\nguidelines is prohibited absent written permission from Google.", "source": "https://docs.flutter.dev/brand/index.html"} {"id": "d01d7ce9d703-1", "text": "The official Flutter assets and further guidelines on representing the brand\ncan be found at Representing the Flutter Brand.\n\nGeneral Rules That Govern the Use of the Flutter Trademarks\n\nYou are free to use the Flutter trademarks: (i) in connection with your\ndownload and use of the Flutter SDK to build and develop\napps, (ii) in training materials (e.g., video tutorials, online publications,\netc.) that provide instructions or tips regarding how to use the Flutter\nSDK to build and develop apps, and (iii) to show your support for\nthe use of the Flutter SDK by members of the developer community.\n\nThese guidelines do not restrict your right to use the \u201cFlutter\u201d name\nin connection with descriptions of the Flutter SDK that would be\nconsidered \u201cfair use.\u201d For example, you may use the \u201cFlutter\u201d\nname to make truthful factual statements (e.g., \u201cbuilt with the Flutter\nSDK\u201d) or to accurately describe a feature of the Flutter SDK.", "source": "https://docs.flutter.dev/brand/index.html"} {"id": "d01d7ce9d703-2", "text": "You may use the Flutter trademarks on your personal website, personal\nblog, or social media account to show your support for the Flutter SDK,\nprovided you do not use the Flutter trademarks in a way that\ncould confuse people into thinking that your site is an official Google\nsite or that Google has sponsored or endorsed your site. In the case of\nwebsites or personal blogs, this means you should not use the Flutter\ntrademarks as the primary element on the webpage (e.g., in the masthead\nof the webpage or the title of the blog). In the case of social media\naccounts, this means you should not use the Flutter trademarks in the\nbackground, in your profile image or in your social media username.\n\nSpecific Rules for Proper Usage of the Flutter Trademarks\n\nIn addition to the general rules discussed above, below are specific\nrules governing the proper use of the Flutter trademarks.\n\nDO:", "source": "https://docs.flutter.dev/brand/index.html"} {"id": "d01d7ce9d703-3", "text": "DO:\n\nUse the \u201cFlutter\u201d name as an adjective, never as a noun or verb,\nand never in the plural or possessive form.\n\nUse a generic term following the \u201cFlutter\u201d name, for example,\n\u201cthe Flutter SDK\u201d or \u201cthe Flutter UI toolkit.\u201d\n\nDistinguish the \u201cFlutter\u201d name from the surrounding text in some way.\nCapitalize the first letter, capitalize or italicize the entire mark,\nplace the mark in quotes, use a different type style or font for the mark.\n\nUse the trademark symbol TM for the first or most prominent\ntime the \u201cFlutter\u201d name appears in text on your website or blog.\nMake sure to always use the TM symbol,\nnot the \u00ae symbol.\n\nInclude the following text near the first or most prominent use of the\nFlutter marks on your website or blog: \u201cFlutter and the related logo are\ntrademarks of Google LLC. We are not endorsed by or affiliated with\nGoogle LLC.\u201d", "source": "https://docs.flutter.dev/brand/index.html"} {"id": "d01d7ce9d703-4", "text": "Keep some distance between the Flutter trademarks and any other trademarks,\nlogos, or icons that are displayed on the webpage.\n\nDON\u2019T:\n\nDon\u2019t alter, distort, or modify the Flutter trademarks in any way.\nThis includes varying the spelling of the \u201cFlutter\u201d name, or displaying\nthe Flutter logo with color variations or unapproved visual elements.\n\nDon\u2019t combine the Google name with the \u201cFlutter\u201d name to form a unitary\nbrand (e.g., don\u2019t use the phrases \u201cGoogle Flutter\u201d or \u201cGoogle\u2019s Flutter\u201d).\nYou may use the Google name in full text to accurately describe the\nFlutter SDK (e.g., \u201cThe Flutter SDK by Google\u201d).\n\nDon\u2019t register the Flutter trademarks or any trademarks, logos,\nor domain names that are confusingly similar to them.", "source": "https://docs.flutter.dev/brand/index.html"} {"id": "d01d7ce9d703-5", "text": "Don\u2019t incorporate the Flutter trademarks into your own product names,\nservice names, trademarks, logos, or company names.\n\nDon\u2019t display the Flutter trademarks in a manner that is misleading,\nunfair, defamatory, infringing, libelous, disparaging, obscene or\notherwise objectionable to Google.\n\nDon\u2019t use the Flutter trademarks on or in connection with the sale of\nany non-software goods or services (e.g., merchandise such as clothing,\npens, and stickers).\n\nCommunity Use Exceptions\n\nTo allow for the use of the Flutter trademarks by the Flutter community,\nbelow are specific exceptions to the rules described above:", "source": "https://docs.flutter.dev/brand/index.html"} {"id": "d01d7ce9d703-6", "text": "Local Flutter user groups may: (i) use the \u201cFlutter\u201d name\nas part of their social media username in the following format:\n\u201cFlutter + [name of country/city]\u201d (e.g., \u201cFlutter France\u201d); and (ii)\nuse the Flutter logo in the national colors of the country where the\nuser group is based (e.g., for a user group based in France,\nthe colors blue, white and red), provided the Flutter logo is otherwise\nunaltered. Such social media accounts should include a disclaimer that\nclarifies that it is not an official Google account.", "source": "https://docs.flutter.dev/brand/index.html"} {"id": "d01d7ce9d703-7", "text": "You may use the Flutter trademarks as part of the name of a newsletter\nor related community content (e.g., Flutter training courses,\nFlutter community forums) whose purpose is to promote the use of the\nFlutter SDK by members of the developer community.\nWhere the Flutter trademarks are displayed on a website as part of a\ncommunity site name, you should use the trademark symbol TM\nafter the most prominent appearance of the \u201cFlutter\u201d name and include\nthe following text: \u201cFlutter and the related logo are trademarks of\nGoogle LLC. We are not endorsed by or affiliated with Google LLC.\u201d\nWhere the Flutter trademarks are displayed on a social media account\nas part of a community site name, you should include a disclaimer that\nclarifies that it is not an official Google account.", "source": "https://docs.flutter.dev/brand/index.html"} {"id": "d01d7ce9d703-8", "text": "[Unofficial Flutter Events] You may use the Flutter trademarks as part of the name\nof a community event (e.g. conference), but please make sure to include the following disclaimer\non the event website in a prominent and easy-to-see spot: \u201cFlutter and the related logo are trademarks of Google LLC.\n[Title of event] is not affiliated with or otherwise sponsored by Google LLC.\u201d", "source": "https://docs.flutter.dev/brand/index.html"} {"id": "fbbe27f7bffb-0", "text": "Looking for inspiration?\n \n See examples of what developers built with Flutter!\n\nFlutter Clock Challenge\n\nShare #FlutterClock with friends\n\nWatch video\n \n \n Results\n\nCreate a beautiful clock face UI\n\nBuild a beautiful clock face UI with Flutter for the Lenovo Smart Clock for a chance to win an iMac Pro,\n Lenovo Smart Display, or Lenovo Smart Clock.\n\nSubmissions period has ended on January 20, 2020. Please scroll down to see the results.\n\nFlutter Clock Highlight Reel\n\nFlutter Clock contest is brought to you in partnership with Google Assistant and Lenovo.\n\nAll Winners\n Check out\n\nthis article to read more about this year's results.\n\nGrand Prize Winner\n\nParticle Clock by Mickel Andersson\n\nCategory Winners", "source": "https://docs.flutter.dev/clock/index.html"} {"id": "fbbe27f7bffb-1", "text": "Particle Clock by Mickel Andersson\n\nCategory Winners\n\nVisual Beauty\n\nCloom Clock\n by Filipe Barroso and Francisco Frutuoso\n\nCode Quality\n\nCreative Creator Or Maybe Not Clock\n by Hubert Henkemeier\n\nOverall Execution\n\nHumanbeans Clock\n by Boris Brestnichki\n\nNovelty\n\nSunset Reflections Clock by Victor Morilla\n\nHonorable Mentions\n\nAgent Clock by Thomas Krueger\n\nAnimal Clock by Sei Lee\n\nAnts Clock by Pau Picas Sans\n\nBarBar Clock by Aleksandr Troshkov\n\nBoating Clock by Yi He\n\nCircle Clock by Max Bowser\n\nDJ Clock by Bao Hui Huang", "source": "https://docs.flutter.dev/clock/index.html"} {"id": "fbbe27f7bffb-2", "text": "DJ Clock by Bao Hui Huang\n\nDots Clock by Tran Duy Khanh Steffen\n\nFlutter Clock by Dezso Meszaros\n\nFlutter Clock by Dominik Roszkowski\n\nFlutter Clock by Helge Wieding\n\nFlutter Clock by Masayuki Ono\n\nFlutter Clock by Vyacheslav Ryabinin\n\nFreehand Clock by Tyler Hayes\n\nGenerative Clock by Fabian Stein\n\nInfinity Clock by Akash Divya\n\nIso Clock by Scott Cook\n\nLofi Clock by Michael Wilson\n\nMatches Clock by Miko\u0142aj Lenart\n\nPaper Clock by Ryan Taylor\n\nScenery Clock by Valerii Kuznietsov\n\nSnake Clock by Gilles Devillers", "source": "https://docs.flutter.dev/clock/index.html"} {"id": "fbbe27f7bffb-3", "text": "Snake Clock by Gilles Devillers\n\nStar Clock by Philipp Bauer\n\nSteampunk Clock by Roman Cinis\n\nTetris Time Clock by Michael Jentsch", "source": "https://docs.flutter.dev/clock/index.html"} {"id": "508c079ecf33-0", "text": "Explicit animations\n\nWhat are explicit animations?\n\nAnimation concepts\n\nWhat is animation?\nExample: bouncing ball (starter code 1)\nFrame rate\nExample: bouncing ball (starter code 2)\nInterpolation\nExample: bouncing ball (starter code 3)\n\nAnimationController\n\nWhat is an AnimationController?\nCreate your first explicit animation with AnimationController\n\n1. Use a TickerProvider mixin\n2. Instantiate and dispose of AnimationController in lifecycle methods\n3. Pass AnimationController parameters\n4. Add listener(s)\n5. Trigger the animation\n\n\nAnimationController concepts\n\nThe Animation object\nAnimationController interpolates frame values\nAnimationController doesn\u2019t know anything about the UI\n\nCurves\n\nTweens\n\nAnimatedBuilder\n\nAnimatedWidget", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-1", "text": "Tweens\n\nAnimatedBuilder\n\nAnimatedWidget\n\nWelcome to the explicit animations codelab,\nwhere you learn how to create animations\nwith more complex and custom features\nthan can be achieved using implicit animations.\n\nNote:\n This codelab is not yet complete.\n\nNote:\n This codelab uses embedded DartPads to display examples and exercises.\n If you see empty boxes instead of DartPads, check out\n Troubleshooting DartPad.\n\nTo get the most out of this codelab,\nyou should have basic knowledge of the following:\n\nHow to make a Flutter app.\n\nHow to use stateful widgets.\n\nThis codelab covers the following material:\n\nAnimation concepts\n\nUsing AnimationController to implement explicit animations\n\nChoosing between implicit and explicit animations\n\nWhat are explicit animations?", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-2", "text": "Choosing between implicit and explicit animations\n\nWhat are explicit animations?\n\nExplicit animations are a set of controls for\ntelling Flutter how to rapidly rebuild the widget tree\nwhile changing widget properties to create animation effects.\nThis approach enables you to create effects that you can\u2019t achieve\nusing implicit animations.\n\nAnimation concepts\n\nLearning to create explicit animations can be daunting\nif you are new to animation in general.\nThe following section equips you with animation concepts\nthat help you better grasp how explicit\nanimations work in Flutter.\nThe subsequent sections relate these concepts\nto the corresponding tools and methods of explicit animations.\nIf you are already experienced with animation, you can skip this\nsection and move on to the AnimationController section.\n\nWhat is animation?", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-3", "text": "What is animation?\n\nThink about how animations work\nin a flip-book, or cartoons on TV, or a movie reel.\nWhat do these animation technologies have in common?\nThey create the illusion of motion by rapidly transitioning\na single frame that you are viewing to other frames\nwithin a pre-defined sequence.\n\nSuppose you want to create your own Flutter animation\nwithout using the animations library.\nStart with the simplest case possible:\nYour goal is to animate a ball\nso that it repeatedly bounces up and down.\nThe following example demonstrates a first attempt\nusing a naive approach.\nCan you spot the lines of code that create the effect?\n\nExample: bouncing ball (starter code 1)", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-4", "text": "Example: bouncing ball (starter code 1)\n\nThe preceding example uses the container\u2019s margin property\nto alternate the position of the ball on the screen,\nand a periodic timer to control\nhow frequently the ball changes its position (once every second).\nAs a viewer, this approach leaves a lot to be desired.\nThe ball only has two positions,\nso the animation looks pretty choppy\u2014you could\neasily mistake the animation for a glitch.\nTo describe this problem in animation terms,\nyou would say that the animation alternates\nbetween only two frames:\n\nNote:\n In this example, you are creating an animation effect\n that only looks like it is running at two frames per second.\n In reality, Flutter is running this example at ~60 frames per second.\n\nframe #\n\nposition\n\nmovement direction\n\ntop margin: 0\n\ntop margin: 100\n\ndown\n\ntop margin: 0\n\nup", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-5", "text": "down\n\ntop margin: 0\n\nup\n\nMost importantly, this example demonstrates at a basic\nlevel how frames are used to create animations:\nA frame is a single still image that can be used\nwithin a sequence of other still images\nto create the illusion of motion.\nIn this case, the first frame consists of a\nball centered on the screen,\nand the second frame consists of the same ball\nplaced further down on the screen using\nthe top margin property.\n\nPENDING: # image: a frame in Flutter", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-6", "text": "PENDING: # image: a frame in Flutter\n\nEven this though example doesn\u2019t use Flutter\u2019s\nanimation library, it creates an animation\nin fundamentally the same way:\nby telling Flutter to rebuild its widget tree\nso as to rapidly move between frames\nover a specified period of time.\nThis is an important takeaway to keep in mind\nwhile creating explicit animations.\nAt a fundamental level,\nexplicit animations provide you with controls\nfor telling Flutter how to quickly rebuild a widget tree\nto create the illusion of motion. You\u2019ll learn more\nabout these controls later in this codelab.\n\nGiven what you\u2019ve learned so far,\ncan you think of a way to improve the bouncing ball effect\nin the preceding example?\nTry to come up with an answer before diving into the next section.\n\nQuick review:\n\nA frame is a single still image that can be used\nwithin a sequence of other still images\nto create the illusion of motion.", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-7", "text": "In Flutter, you can think of a single frame as\na static configuration of a widget tree.\n\nAn animation is a sequence of frames that,\nwhen rapidly displayed over time,\ncreates the illusion of motion.\n\nIn Flutter, an animation changes a widget property value\nbetween frames to create the illusion of motion.\nYou can create an animation by telling Flutter\nto rapidly rebuild a widget tree while gradually\nchanging a widget property on each iteration\nof the widget tree.\n\nThe first example uses a timer to trigger\na change in the top margin of the bouncing ball\nonce every second.\n\nFrame rate", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-8", "text": "Frame rate\n\nThe previous example represents a naive approach\nto animating a bouncing ball:\nit alternates the position of the ball\nbetween only two frames,\nswitching frames once every second.\nOne way to improve this animation is to use more frames,\nwhich smoothes out the animation\nand provides a more convincing illusion of movement.\nConsider what changes you need to make to the example\nso that, instead of having just two positions,\nthe ball has five:\n\nframe #\n\nposition\n\nmovement direction\n\ntop margin: 0\n\ntop margin: 25\n\ndown\n\ntop margin: 50\n\ndown\n\ntop margin: 75\n\ndown\n\ntop margin: 100\n\ndown\n\ntop margin: 75\n\nup\n\ntop margin: 50\n\nup", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-9", "text": "up\n\ntop margin: 50\n\nup\n\ntop margin: 25\n\nup\n\ntop margin: 0\n\nup\n\nNow that you are using more frames,\nin order to keep the ball bouncing at the same rate\n(one bounce per second)\nyou need to increase the frame rate.\nThe frame rate is the rate of frames per second (fps).\nIn this case, you are increasing the frame rate\nfrom 2 frames per second to 4 fps.\nEven though you are using five total frames,\nthe first frame gets re-used for the downward and upward\nmotion of the ball,\nso you only need to count it once\nfor the purpose of determining the frame rate.", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-10", "text": "Now that you have increased the frame rate\nfor this animation,\nyou can also calculate the new value that\nthe margin should change in each frame.\nAs the preceding chart makes clear,\nnow that there are 5 frames instead of 2,\nand since the top margin value remains\nbetween 0 and 100 throughout the animation,\neach frame either increases or decreases\nthe ball\u2019s top margin value by 25.\n\nChange in margin value between each\n frame = total change in margin / # of frames\n\nIn this case, the top margin changes by 100\nover 4 frames, so each frame\nchanges the top margin value by 25.\n(Even though there are 5 total frames,\nin this example you are reusing one frame for both\nthe downward and upward motion of the ball, so you\nonly need to count 4 frames for the margin change.)", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-11", "text": "That\u2019s it! With the updated frame rate\nand the top margin values needed for each frame,\nyou now have enough information\nto update the preceding example\nby doubling the frame rate that the animation uses.\nBefore diving into the following example,\nthink about how you might refactor the preceding example\nusing these updated parameters.\nYou can use the DartPad editor in the preceding example\nto try out your solution.\nWhen you\u2019re ready, run the next example to\nview the updated animation:\n\nExample: bouncing ball (starter code 2)\n\nQuick Review:\n\nFrame rate is measured as the number of frames per second (fps).\n\nFlutter aims to provide 60 fps performance,\nor 120 fps performance on devices capable of 120Hz updates.\nFor 60fps, frames need to render approximately every 16ms.\nSee performance profiling page for more information.\n\nInterpolation", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-12", "text": "Interpolation\n\nHave you ever wondered how computer graphics animators\ndraw each and every frame of your favorite CGI movies?\nWell, they don\u2019t! Instead, animators set an initial\nposition and a final position for the object they are animating.\nNext, they rely on software to compute all of the\npositions for the object between the initial and the\nfinal position that they defined.\nThe process of computing animation values between\na starting and ending position is called interpolation.\n\nAs a developer, interpolation vastly simplifies\nhow you reason about and create your animations.\nInstead of thinking of an animation\nin terms of hundreds (or thousands) of frames,\nyou can think of an animation\nas a starting value and an ending value,\nand allow interpolation to take care of the rest!", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-13", "text": "The preceding example uses an imperative approach for\ncalculating the values for each frame\nin the animation:\nyou explicitly provide\nvalues for the frame rate as well as\nthe value needed to increment\nthe top margin property for each frame.\nCan you think of a way to refactor this example\nso that you only need to provide a starting and ending\nvalue for top margin, and leave the rest to an\ninterpolation function the generates the values\nfor the frames in between?\n\nHere\u2019s a few hints:\n\nDon\u2019t worry about animating the ball\nup and down. Just focus on the first downward motion\nof the ball (from a top margin of 0 to top margin of 100).\n\nTry using 60 fps for the frame rate.\n\nFor any starting or ending position of the ball,\nyou can express the amount to increment top margin\nbetween each frame as the difference between the margin\u2019s\nstarting and ending values divided by the total number of frames.", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-14", "text": "The following example contains one way to implement these updates\nto the bouncing ball example. Run the example to the see the difference\nthat these updates make to your animation:\n\nExample: bouncing ball (starter code 3)\n\nAt 60 fps, this updated version of the bouncing ball animation\nlooks smoother than in all prior examples!\n\nThis example only creates half of the animation\u2014the\nball moves down, but not back up again.\nWouldn\u2019t it be nice to have a declarative interface\nfor controlling the direction that the animation proceeds\nacross the sequence of frames, and the conditions for\nstarting and stopping it? This way, you could easily\nrepresent when to start the animation, pause it,\nplay forward, play backward, end it, or repeat it indefinitely.\nIn the next section, you\u2019ll learn how Flutter\u2019s animation library\nprovides an interface for doing all of these things.\n\nQuick review:", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-15", "text": "Quick review:\n\nInterpolation is the process of computing all animation values\nbetween a starting and ending value.\n\nInstead of thinking about an animation in terms of hundreds (or thousands)\nof frames, interpolation allows you to reason about and define an animation\nin terms of its starting and ending value.\n\nBonus questions!\n\nIn the prior example, the rate of change for the\nbouncing ball\u2019s top margin value is linear\n(the margin changes by the same amount between each frame).\nHow would you change this example to make it possible to\ninterpolate values between 0 and 100 at a changing rate?\n\nThe prior example only animates a single downward motion\nof the bouncing ball. Can you think of a way to:\n\n \n Continue the animation so that the ball bounces back up again?\n Repeat the animation indefinitely?\n\nAnimationController", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-16", "text": "AnimationController\n\nThe AnimationController is a special Animation\nobject that generates a new value whenever the hardware\nis ready for a new frame. All explicit\nanimations require an AnimationController.\n\nWhat is an AnimationController?\n\nWhether the animation should progress forward or backward\nthrough the range of values once triggered.\n\nThe amount(s) that an animation\u2019s value changes between each frame.\n\nThe following sections demonstrate how to use\nAnimationController by providing step-by-step instructions for\ncreating your first explicit animation with\nAnimationController[] and by covering the\nunderlying concepts of AnimationController.\n\nCreate your first explicit animation with AnimationController\n\nThe following example begins with no animation code\u2014it\nconsists of a Material app home screen containing a green ball shape.\n\nPENDING: Insert DartPad here", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-17", "text": "PENDING: Insert DartPad here\n\nThis section provides guided steps for building\nthe same bouncing ball animation\ncreated in the Animation concepts section\u2014\nthe difference is that this example uses an explicit animation,\nwhereas the animation concepts section\nuses a naive approach in order to introduce\nfundamental animation concepts.\n\nPENDING : bouncing ball example\n\nUse the following instructions to create an explicit animation\nof a bouncing ball:\n\n1. Use a TickerProvider mixin\n\n{explicit1 \u2192 explicit2}/lib/main.dart\n\n@@ -9,7 +9,8 @@\n\n9\n9\n\nState createState() => _BouncingBallDemoState();\n\n10\n10\n\n11\n\nclass _BouncingBallDemoState extends State {\n\n11", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-18", "text": "11\n\n+\n class _BouncingBallDemoState extends State\n\n12\n\n+\n with SingleTickerProviderStateMixin {\n\n12\n13\n\n@override\n\n13\n14\n\nvoid initState() {\n\n14\n15\n\nsuper.initState();\n\nThis step uses the SingleTickerProviderStateMixin\nwith _BouncingBallDemoState,\nbut you can also use TickerProviderStateMixin to make your widget\navailable as a TickerProvider for AnimationController.\nHere are some considerations for deciding between the two:\n\nIf you are only creating a single AnimationController\nfrom a State object (as in this example)\nyou can use the SingleTickerProviderStateMixin.", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-19", "text": "If you need to create more than one AnimationController\nover the lifetime of a State object,\nuse the TickerProviderStateMixin instead.\n\nThe SingleTickerProviderStateMixin is slightly more efficient\nthan TickerProviderStateMixin in the case of the class\nonly ever needing one Ticker.\n\n2. Instantiate and dispose of AnimationController in lifecycle methods\n\nInstantiate AnimationController in a widget lifecycle method,\nand call the AnimationController.dispose() within the\nState.dispose() lifecycle method:\n\n{explicit2 \u2192 explicit3}/lib/main.dart\n\n@@ -1,3 +1,5 @@\n\n+\n // ignore_for_file: missing_required_argument\n\n1\n3\n\nimport 'dart:async';\n\n2\n4\n\nimport 'package:flutter/material.dart';", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-20", "text": "2\n4\n\nimport 'package:flutter/material.dart';\n\n@@ -11,9 +13,12 @@\n\n11\n13\n\nclass _BouncingBallDemoState extends State\n\n12\n14\n\nwith SingleTickerProviderStateMixin {\n\n15\n\n+\n late AnimationController controller;\n\n16\n\n13\n17\n\n@override\n\n14\n18\n\nvoid initState() {\n\n15\n19\n\nsuper.initState();\n\n20\n\n+\n controller = AnimationController();\n\n16\n21\n\n17\n22\n\n@override", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-21", "text": "17\n22\n\n@override\n\n@@ -30,6 +35,12 @@\n\n30\n35\n\n),\n\n31\n36\n\n);\n\n32\n37\n\n38\n\n39\n\n+\n @override\n\n40\n\n+\n void dispose() {\n\n41\n\n+\n controller.dispose();\n\n42\n\n+\n super.dispose();\n\n43\n\n+\n }\n\n33\n44\n\n34\n45\n\nclass MyApp extends StatelessWidget {\n\nThis code is not yet valid because it passes no arguments\nto AnimationController\u2019s constructor.", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-22", "text": "Remember the following observations whenever performing\nthis step with AnimationController:\n\nYou can instantiate AnimationController in several\ndifferent lifecycle methods,\nbut it is most common to use initState().\n\nYou should dispose of an AnimationController\nwhen it is no longer needed\u2014this reduces\nthe likelihood of memory leaks.\n\nAlways dispose of AnimationController\nwithin the dispose() lifecycle method.\n\n3. Pass AnimationController parameters\n\nPass arguments for vsync, duration, lowerBound,\nand upperBound to the AnimationController constructor:\n\n{explicit3 \u2192 explicit4}/lib/main.dart\n\n@@ -1,5 +1,3 @@\n\n// ignore_for_file: missing_required_argument\n\n3\n1\n\nimport 'dart:async';\n\n4\n2\n\nimport 'package:flutter/material.dart';", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-23", "text": "4\n2\n\nimport 'package:flutter/material.dart';\n\n@@ -18,7 +16,12 @@\n\n18\n16\n\n@override\n\n19\n17\n\nvoid initState() {\n\n20\n18\n\nsuper.initState();\n\n21\n\ncontroller = AnimationController();\n\n19\n\n+\n controller = AnimationController(\n\n20\n\n+\n vsync: this, // the SingleTickerProviderStateMixin\n\n21\n\n+\n duration: const Duration(seconds: 1),\n\n22\n\n+\n lowerBound: 0,\n\n23\n\n+\n upperBound: 100,", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-24", "text": "+\n upperBound: 100,\n\n24\n\n+\n );\n\n22\n25\n\n23\n26\n\n@override\n\nThe vsync parameter makes use of the\nSingleTickerProviderStateMixin you added in step 1:\n\nvsync:\nRemember from step 1 that vsync is a required parameter\nthat takes a TickerProvider.\nBy passing this for the vsync parameter,\nyou are passing _BouncingBallDemoState\nas the TickerProvider object to the AnimationController constructor.\n_BouncingBallDemoState implements the TickerProvider interface\nbecause step 1 adds the SingleTickerProviderStateMixin\nwith _BouncingBallDemoState.\n\nThe duration, upperBound, and lowerBound parameters\ndefine the following parts of your animation:\n\nduration: The duration of the animation is 1 second.", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-25", "text": "duration: The duration of the animation is 1 second.\n\nupperBound and lowerBound:\nSince the bouncing ball animation moves the ball\nby transitioning its top-margin value from 0 to 100,\nthis step passes 0 as the lowerBound and 100 as the upperBound.\n\n4. Add listener(s)\n\n{explicit4 \u2192 explicit5}/lib/main.dart\n\n@@ -22,12 +22,16 @@\n\n22\n22\n\nlowerBound: 0,\n\n23\n23\n\nupperBound: 100,\n\n24\n24\n\n);\n\n25\n\n26\n\n+\n controller.addListener(() {\n\n27\n\n+\n setState(() {});\n\n28", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-26", "text": "+\n setState(() {});\n\n28\n\n+\n });\n\n25\n29\n\n26\n30\n\n@override\n\n27\n31\n\nWidget build(BuildContext context) {\n\n28\n32\n\nreturn Container(\n\n29\n\nmargin: const EdgeInsets.only(top: 0),\n\n33\n\n+\n margin: EdgeInsets.only(top: controller.value),\n\n30\n34\n\nchild: Container(\n\n31\n35\n\ndecoration: const BoxDecoration(\n\n32\n36\n\nshape: BoxShape.circle,\n\n5. Trigger the animation", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-27", "text": "shape: BoxShape.circle,\n\n5. Trigger the animation\n\nTo start the bouncing ball animation so that\nit repeats indefinitely, call AnimationController.repeat():\n\n{explicit5 \u2192 explicit6}/lib/main.dart\n\n@@ -26,6 +26,8 @@\n\n26\n26\n\ncontroller.addListener(() {\n\n27\n27\n\nsetState(() {});\n\n28\n28\n\n});\n\n29\n\n30\n\n+\n controller.repeat(reverse: true);\n\n29\n31\n\n30\n32\n\n@override\n\nThis step calls repeat() within initState() because\nthe bouncing ball animation can begin immediately\nwhen this view is", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-28", "text": "AnimationController provides several methods for \u201cdriving\u201d an animation:\n\nrepeat()\n\nforward()\n\nreverse()\n\nstop()\n\nreset()\n\nRun the following example to see this explicit animation in action!\n\nAnimationController concepts\n\nAs the name suggests, the AnimationController controls the\nanimation.\n\nThe Animation object\n\nLifecycle of an animation (completed, dismissed)\n\nAn Animation has a status and a value.\n\nThe value depends on what the user wants,\nand can be of any type, such as or .\n\nThe controller\u2019s status has four possible\nvalues: dismissed, forward, reverse, and completed.\n\nAnimationController is the central class that you use\nto create explicit animations; its capabilities\nfall into four categories:\ndefining animations, generating animation values,\nregistering listeners, and play or sequence controls:", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-29", "text": "AnimationController makes it easy to access\nthe current value of the animation\u2014just\nuse the value property.\n\nTo \u201cplay\u201d an animation,\nyou can use one of several methods that\ninitiate the sequence of changes to value.\nFor example, to \u201cplay\u201d an animation\nfrom its starting value to its ending value,\nsimply call forward().\n\nUse .addListener() to register a callback invoked whenever\nAnimationController changes its value property.\nMost commonly, you register setState() with AnimationController.\nThis tells Flutter to rebuild the widget tree\nwhenever AnimationController\u2019s value changes.\n\nAnimationController needs a TickerProvider to\nsynchronize the animation\u2019s behavior to the device\u2019s display.\n\nAnimationController interpolates frame values\n\nPENDING: Image of values in AnimationController\n\nIn this example,\nthe AnimationController constructor takes the\noptional parameters lowerBound, upperBound,\nand duration:\n\nInstantiate AnimationController:\n\ncontroller", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-30", "text": "Instantiate AnimationController:\n\ncontroller\n\nAnimationController\n\nlowerBound:\n\nupperBound:\n\n100\n\nduration:\n\nconst\n\nDuration\n\nseconds:\n\n),\n\nvsync:\n\nthis\n\n// Don't worry about vsync for now.\n\n);\n\nWhen you instantiate AnimationController,\nyou define an animation in terms of its starting value\n(lowerBound), its ending value (upperBound),\nand the amount of time it takes to change\nfrom one to the other (duration).\n\nThe default values for lowerBound and upperBound\nare 0 and 1, respectively; duration doesn\u2019t have a default value.\n\nAnimation concepts section uses an", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-31", "text": "Animation concepts section uses an\n\nAnimationController\n abstracts away the work of interpolation,\n allowing you to reason about and create an animation\n in terms of its duration, and the starting and ending\n values of the property that you are animating:\n\nAnimationController doesn\u2019t know anything about the UI\n\nAccess animation values with controller.value\n\nAnimationController provides a value property.\nYou can access this property directly\u2014there\nis no getter method for value:\n\nprint\n\ncontroller\n\nvalue\n\n);\n\nCurves\n\nUse CurvedAnimation\n\nyou can use presets, or create your own\n\nTweens\n\nTo use a Tween call animate() passing in the controller. (example)\n\nAnimatedBuilder\n\nAnimatedWidget\n\nTODO:\n\nExplain that setState listener boilerplate isn\u2019t normal.", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "508c079ecf33-32", "text": "Explain that setState listener boilerplate isn\u2019t normal.\n\nAdd section that uses AnimatedBuilder/AnimatedWidget\n\nRefactor all DartPad samples to use non-working defaults,\n& offer solution\n\nUpdate vanilla bouncing ball final example to use both\nupward and downward motion\n\n\u201cWhy TickerProvider?\u201d in animationController concepts section\n\nHow to choose between AnimatedBuilder and AnimatedWidget.\n\nAnswer question: when to use a Tween,\nif you can just use upper and lower bound args for\nAnimationController?\n \n when we need something other than a double?\n\nAdd margin-bottom to DartPads\n\nAdd diffs between each solution in the introduction section", "source": "https://docs.flutter.dev/codelabs/explicit-animations/index.html"} {"id": "0593b336d361-0", "text": "Implicit animations\n\nWhat are implicit animations?\n\nExample: Fade-in text effect\n\nFade-in (starter code)\nAnimate opacity with AnimatedOpacity widget\n\n1. Pick a widget property to animate\n2. Initialize a state variable for the animated property\n3. Set the duration of the animation\n4. Set up a trigger for the animation, and choose an end value\n\n\nFade-in (complete)\nPutting it all together\n\nExample: Shape-shifting effect\n\nShape-shifting (starter code)\nAnimate color, borderRadius, and margin with AnimatedContainer\n\n1. Add an implicit animation\n2. Set starting values for animated properties\n3. Set up a trigger for the animation\n4. Set duration\n\n\nShape-shifting (complete)\nUsing animation curves\nPutting it all together\n\nWhat\u2019s next?", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-1", "text": "What\u2019s next?\n\nWelcome to the implicit animations codelab, where you learn how to use Flutter\nwidgets that make it easy to create animations for a specific set of properties.\n\nNote:\n This codelab uses embedded DartPads to display examples and exercises.\n If you see empty boxes instead of DartPads, check out\n Troubleshooting DartPad.\n\nTo get the most out of this codelab, you should have basic knowledge about:\n\nHow to make a Flutter app.\n\nHow to use stateful widgets.\n\nThis codelab covers the following material:\n\nUsing AnimatedOpacity to create a fade-in effect.\n\nUsing AnimatedContainer to animate transitions in size, color, and margin.\n\nOverview of implicit animations and techniques for using them.\n\nEstimated time to complete this codelab: 15-30 minutes.", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-2", "text": "Estimated time to complete this codelab: 15-30 minutes.\n\nWhat are implicit animations?\n\nWith Flutter\u2019s animation library,\nyou can add motion and create visual effects\nfor the widgets in your UI.\nOne widget set in the library manages animations for you.\nThese widgets are collectively referred to as implicit animations,\nor implicitly animated widgets, deriving their name from the\nImplicitlyAnimatedWidget class that they implement.\nWith implicit animations,\nyou can animate a widget property by setting a target value;\nwhenever that target value changes,\nthe widget animates the property from the old value to the new one.\nIn this way, implicit animations trade control for convenience\u2014they\nmanage animation effects so that you don\u2019t have to.\n\nExample: Fade-in text effect", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-3", "text": "Example: Fade-in text effect\n\nThe following example shows how to add a fade-in effect to existing UI\nusing an implicitly animated widget called AnimatedOpacity.\nThe example begins with no animation code\u2014it\nconsists of a Material App home screen containing:\n\nA photograph of an owl.\n\nOne Show details button that does nothing when clicked.\n\nDescription text of the owl in the photograph.\n\nFade-in (starter code)\n\nClick the Run button to run the example:\n\nAnimate opacity with AnimatedOpacity widget\n\nThis section contains a list of steps you can use to add an\n implicit animation to the\n fade-in starter code. After the steps, you can also run the\n fade-in complete code with the changes already made.\n The steps outline how to use the AnimatedOpacity\n widget to add the following animation feature:\n\nThe owl\u2019s description text remains hidden until the user clicks the\nShow details button.", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-4", "text": "The owl\u2019s description text remains hidden until the user clicks the\nShow details button.\n\nWhen the user clicks the Show details button,\nthe owl\u2019s description text fades in.\n\n1. Pick a widget property to animate\n\nTo create a fade-in effect, you can animate the opacity property using the\nAnimatedOpacity widget. Change the Column widget to an\nAnimatedOpacity widget:\n\n{opacity1 \u2192 opacity2}/lib/main.dart\n\n@@ -2,6 +2,8 @@\n\n2\n2\n\n// Use of this source code is governed by a BSD-style license\n\n3\n3\n\n// that can be found in the LICENSE file.\n\n+\n // ignore_for_file: missing_required_argument\n\n4\n6\n\nimport 'package:flutter/material.dart';\n\n5\n7", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-5", "text": "import 'package:flutter/material.dart';\n\n5\n7\n\nconst owlUrl =\n\n@@ -25,12 +27,14 @@\n\n25\n27\n\nstyle: TextStyle(color: Colors.blueAccent),\n\n26\n28\n\n),\n\n27\n29\n\nonPressed: () => {}),\n\n28\n\nColumn(\n\n29\n\nchildren: const [\n\n30\n\nText('Type: Owl'),\n\n31\n\nText('Age: 39'),\n\n32\n\nText('Employment: None'),\n\n33\n\n],\n\n30\n\n+\n AnimatedOpacity(", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-6", "text": "30\n\n+\n AnimatedOpacity(\n\n31\n\n+\n child: Column(\n\n32\n\n+\n children: const [\n\n33\n\n+\n Text('Type: Owl'),\n\n34\n\n+\n Text('Age: 39'),\n\n35\n\n+\n Text('Employment: None'),\n\n36\n\n+\n ],\n\n37\n\n+\n ),\n\n34\n38\n\n35\n39\n\n]);\n\n36\n40\n\nYou can reference the line numbers in the example code to help track\n where to make these changes.", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-7", "text": "2. Initialize a state variable for the animated property\n\nTo hide the text before the user clicks Show details, set\nthe starting value for opacity to zero:\n\n{opacity2 \u2192 opacity3}/lib/main.dart\n\n@@ -2,8 +2,6 @@\n\n2\n2\n\n// Use of this source code is governed by a BSD-style license\n\n3\n3\n\n// that can be found in the LICENSE file.\n\n// ignore_for_file: missing_required_argument\n\n6\n4\n\nimport 'package:flutter/material.dart';\n\n7\n5\n\nconst owlUrl =\n\n@@ -17,6 +15,8 @@\n\n17\n15\n\n18\n16", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-8", "text": "17\n15\n\n18\n16\n\nclass _FadeInDemoState extends State {\n\n17\n\n+\n double opacity = 0.0;\n\n18\n\n19\n19\n\n@override\n\n20\n20\n\nWidget build(BuildContext context) {\n\n21\n21\n\nreturn Column(children: [\n\n@@ -28,6 +28,8 @@\n\n28\n28\n\n),\n\n29\n29\n\nonPressed: () => {}),\n\n30\n30\n\nAnimatedOpacity(\n\n31\n\n+\n duration: const Duration(seconds: 3),", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-9", "text": "+\n duration: const Duration(seconds: 3),\n\n32\n\n+\n opacity: opacity,\n\n31\n33\n\nchild: Column(\n\n32\n34\n\nchildren: const [\n\n33\n35\n\nText('Type: Owl'),\n\n3. Set the duration of the animation\n\nIn addition to an opacity parameter, AnimatedOpacity requires a\nduration to use for its animation. For this example,\nyou can start with 2 seconds:\n\n{opacity3 \u2192 opacity4}/lib/main.dart\n\n@@ -28,7 +28,7 @@\n\n28\n28\n\n),\n\n29\n29\n\nonPressed: () => {}),\n\n30\n30", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-10", "text": "onPressed: () => {}),\n\n30\n30\n\nAnimatedOpacity(\n\n31\n\nduration: const Duration(seconds: 3),\n\n31\n\n+\n duration: const Duration(seconds: 2),\n\n32\n32\n\nopacity: opacity,\n\n33\n33\n\nchild: Column(\n\n34\n34\n\nchildren: const [\n\n4. Set up a trigger for the animation, and choose an end value\n\n{opacity4 \u2192 opacity5}/lib/main.dart\n\n@@ -22,11 +22,14 @@\n\n22\n22\n\nreturn Column(children: [\n\n23\n23\n\nImage.network(owlUrl),", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-11", "text": "23\n23\n\nImage.network(owlUrl),\n\n24\n24\n\nTextButton(\n\n25\n\nchild: const Text(\n\n26\n\n'Show Details',\n\n27\n\nstyle: TextStyle(color: Colors.blueAccent),\n\n28\n\n),\n\n29\n\nonPressed: () => {}),\n\n25\n\n+\n child: const Text(\n\n26\n\n+\n 'Show Details',\n\n27\n\n+\n style: TextStyle(color: Colors.blueAccent),\n\n28\n\n+\n ),\n\n29", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-12", "text": "+\n ),\n\n29\n\n+\n onPressed: () => setState(() {\n\n30\n\n+\n opacity = 1;\n\n31\n\n+\n }),\n\n32\n\n+\n ),\n\n30\n33\n\nAnimatedOpacity(\n\n31\n34\n\nduration: const Duration(seconds: 2),\n\n32\n35\n\nopacity: opacity,\n\nNotice that you only need to set the start and end values of opacity.\n The AnimatedOpacity widget manages everything in between.\n\nFade-in (complete)\n\nHere\u2019s the example with the completed changes you\u2019ve made\u2014run this\nexample and click the Show details button to trigger the animation.\n\nPutting it all together", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-13", "text": "Putting it all together\n\nThe Fade-in text effect example demonstrates the following features\nof AnimatedOpacity:\n\nAnimatedOpacity listens for state changes in its opacity property.\n\nWhenever opacity changes, AnimatedOpacity automatically animates the\nwidget\u2019s transition to the new value for opacity.\n\nAnimatedOpacity requires a duration parameter to define the time it takes\nto animate the transition between an old opacity value and a new one.\n\nNote that Implicit animations can only animate properties of a parent\n StatefulWidget, so this example begins with the FadeInDemo widget that\n extends StatefulWidget.\n\nNotice also that AnimatedOpacity animates a single property: opacity.\n Some implicitly animated widgets can animate many properties, as the following\n example illustrates.\n\nExample: Shape-shifting effect\n\nAnimatedContainer widget to\nanimate multiple properties (\n\nMaterial App home screen that contains:", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-14", "text": "Material App home screen that contains:\n\nA Container with borderRadius, margin, and color properties that are\ndifferent each time you run the example.\n\nA Change button that does nothing when clicked.\n\nShape-shifting (starter code)\n\nClick the Run button to run the example:\n\nAnimate color, borderRadius, and margin with AnimatedContainer\n\nThis section contains a list of steps you can use to add an\n implicit animation to the shape-shifting starter code.\n After the steps, you can also run the\n shape-shifting complete example with the changes already made.\n\nshape-shifting starter code,\neach property in the\n\nGenerate new values for color, borderRadius,\nand margin whenever the user clicks the Change button.\n\nAnimate the transition to the new values for color,\nborderRadius, and margin whenever they are set.\n\n1. Add an implicit animation", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-15", "text": "1. Add an implicit animation\n\nChange the Container widget to an AnimatedContainer widget:\n\n{container1 \u2192 container2}/lib/main.dart\n\n@@ -2,6 +2,8 @@\n\n2\n2\n\n// Use of this source code is governed by a BSD-style license\n\n3\n3\n\n// that can be found in the LICENSE file.\n\n+\n // ignore_for_file: missing_required_argument\n\n4\n6\n\nimport 'dart:math';\n\n5\n7\n\nimport 'package:flutter/material.dart';\n\n@@ -47,7 +49,7 @@\n\n47\n49\n\nSizedBox(\n\n48\n50\n\nwidth: 128,", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-16", "text": "48\n50\n\nwidth: 128,\n\n49\n51\n\nheight: 128,\n\n50\n\nchild: Container(\n\n52\n\n+\n child: AnimatedContainer(\n\n51\n53\n\nmargin: EdgeInsets.all(margin),\n\n52\n54\n\ndecoration: BoxDecoration(\n\n53\n55\n\ncolor: color,\n\nYou can reference the line numbers in the example code to help track where to\n make these changes in shape-shifting starter code\n\n2. Set starting values for animated properties\n\n{container2 \u2192 container3}/lib/main.dart\n\n@@ -40,6 +40,14 @@\n\n40\n40", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-17", "text": "40\n40\n\nmargin = randomMargin();\n\n41\n41\n\n42\n\n+\n void change() {\n\n43\n\n+\n setState(() {\n\n44\n\n+\n color = randomColor();\n\n45\n\n+\n borderRadius = randomBorderRadius();\n\n46\n\n+\n margin = randomMargin();\n\n47\n\n+\n });\n\n48\n\n+\n }\n\n49\n\n42\n50\n\n@override\n\n43\n51\n\nWidget build(BuildContext context) {\n\n44\n52\n\nreturn Scaffold(", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-18", "text": "44\n52\n\nreturn Scaffold(\n\n3. Set up a trigger for the animation\n\nTo set the animation to trigger whenever the user presses the Change button,\ninvoke the change() method in the onPressed() handler:\n\n{container3 \u2192 container4}/lib/main.dart\n\n@@ -67,7 +67,7 @@\n\n67\n67\n\n),\n\n68\n68\n\nElevatedButton(\n\n69\n69\n\nchild: const Text('change'),\n\n70\n\nonPressed: () => {},\n\n70\n\n+\n onPressed: () => change(),\n\n71\n71\n\n),\n\n72\n72\n\n],", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-19", "text": "),\n\n72\n72\n\n],\n\n73\n73\n\n),\n\n4. Set duration\n\nFinally, set the duration of the animation that powers the transition\nbetween the old and new values:\n\n{container4 \u2192 container5}/lib/main.dart\n\n@@ -2,12 +2,12 @@\n\n2\n2\n\n// Use of this source code is governed by a BSD-style license\n\n3\n3\n\n// that can be found in the LICENSE file.\n\n// ignore_for_file: missing_required_argument\n\n6\n4\n\nimport 'dart:math';\n\n7\n5\n\nimport 'package:flutter/material.dart';\n\n+\n const _duration = Duration(milliseconds: 400);", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-20", "text": "+\n const _duration = Duration(milliseconds: 400);\n\n8\n8\n\ndouble randomBorderRadius() {\n\n9\n9\n\nreturn Random().nextDouble() * 64;\n\n10\n10\n\n@@ -63,6 +63,7 @@\n\n63\n63\n\ncolor: color,\n\n64\n64\n\nborderRadius: BorderRadius.circular(borderRadius),\n\n65\n65\n\n),\n\n66\n\n+\n duration: _duration,\n\n66\n67\n\n),\n\n67\n68\n\n),\n\n68\n69\n\nElevatedButton(\n\nShape-shifting (complete)", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-21", "text": "ElevatedButton(\n\nShape-shifting (complete)\n\nHere\u2019s the example with the completed changes you\u2019ve made\u2014run the code\nand click the Change button to trigger the animation. Notice that each time\nyou click the Change button, the shape animates to its new values\nfor margin, borderRadius, and color.\n\nUsing animation curves\n\nThe preceding examples show how implicit animations allow you to animate\nchanges in values for specific widget properties, and how the\nduration parameter allows you to set the amount of time an\nanimation takes to complete. Implicit animations also allow you to\ncontrol changes to the rate of an animation within the duration.\nThe parameter you use to define this change in rate is curve.\n\nlinear animation curve by default.\nAdd a\n\nshape-shifting complete\nand watch how the animation changes when you pass the\n\neaseInOutBack constant for\n\n{container5 \u2192 container6}/lib/main.dart", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-22", "text": "{container5 \u2192 container6}/lib/main.dart\n\n@@ -64,6 +64,7 @@\n\n64\n64\n\nborderRadius: BorderRadius.circular(borderRadius),\n\n65\n65\n\n),\n\n66\n66\n\nduration: _duration,\n\n67\n\n+\n curve: Curves.easeInOutBack,\n\n67\n68\n\n),\n\n68\n69\n\n),\n\n69\n70\n\nElevatedButton(\n\nThe easeInOutBack constant is only one of many that you can\n pass for the curve parameter. Explore the\n list of curve constants to discover more ways\n to use curve to modify the look and feel of your animations.\n\nPutting it all together", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-23", "text": "Putting it all together\n\nshape-shifting complete example animates transitions between values for\n\nshape-shifting complete example builds upon\n\nfade-in complete by showing\nadditional capabilities of implicit animations:\n\nSome implicit animations (for example,\nAnimatedOpacity) only animate a single\nproperty, while others (like AnimatedContainer)\ncan animate many properties.\n\nImplicit animations automatically animate between the old and\nnew values of properties when they change using the provided\ncurve and duration.\n\nIf you do not specify a curve,\nimplicit animations default to a linear curve.\n\nWhat\u2019s next?\n\nCongratulations, you\u2019ve finished the codelab! If you\u2019d like to learn more,\nhere are some suggestions for where to go next:\n\nTry the animations tutorial.\n\nLearn about hero animations and staggered animations.\n\nCheckout the animation library.", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "0593b336d361-24", "text": "Checkout the animation library.\n\nTry another codelab.", "source": "https://docs.flutter.dev/codelabs/implicit-animations/index.html"} {"id": "03e56c9b600e-0", "text": "Codelabs & workshops\n\nGood for beginners\n\nNext steps\n\nDesigning a Flutter UI\n\nUsing Flutter with\u2026\n\nMonetizing Flutter\nFlutter and Firebase\nFlutter and TensorFlow\nFlutter and other technologies\n\nTesting\n\nWriting platform-specific code\n\nOther resources\n\nThe Flutter codelabs provide a guided,\nhands-on coding experience. Some codelabs\nrun in DartPad\u2014no downloads required!\n\nFlutter workshops are similar to the codelabs,\nbut are instructor led and always use DartPad.\nThe provided workshop link takes you to the relevant YouTube video,\nwhich tells you where to find the associated DartPad link.\n\nYou might want to check out the workshops\n created by our Google Developer Experts (GDEs).\n You can find them on the Flutter community blog.\n\nGood for beginners", "source": "https://docs.flutter.dev/codelabs/index.html"} {"id": "03e56c9b600e-1", "text": "Good for beginners\n\nIf you\u2019re new to Flutter, we recommend starting with\none of the following codelabs:\n\nYour first Flutter app\nCreate a simple app that automatically generates cool-sounding names,\nsuch as \u201cnewstay\u201d, \u201clightstream\u201d, \u201cmainbrake\u201d, or \u201cgraypine\u201d.\nThis app is responsive and runs on mobile, desktop, and web.\n(This also replaces the previous \u201cwrite your first Flutter app\u201d\nfor mobile, part 1 and part 2 codelabs.)\n\nWrite your first Flutter app on the web\nImplement a simple web app in DartPad (no downloads\nrequired!) that displays a sign-in screen\ncontaining three text fields. As the user fills out the\nfields, a progress bar animates along the top of the\nsign-in area. This codelab is written specifically for\nthe web, but if you have downloaded and configured\nAndroid and iOS tooling, the completed app\nworks on Android and iOS devices, as well.\n\nNext steps", "source": "https://docs.flutter.dev/codelabs/index.html"} {"id": "03e56c9b600e-2", "text": "Next steps\n\nBuilding scrolling experiences in Flutter (workshop)\nStart with an app that performs simple, straightforward scrolling\nand enhance it to create fancy and custom scrolling effects\nby using slivers.\n\nDart null safety in Action (workshop)\nAn instructor-led workshop based on the Null safety codelab\non the dart.dev site.\n\nHow to manage application states using inherited widgets (workshop)\nLearn how to manage the state of your app\u2019s data by\nusing the InheritedWidget class, one of the\nlow-level state management classes provided\nby Flutter.\n\nDesigning a Flutter UI\n\nLearn about Material Design and basic Flutter concepts,\nlike layout and animations:\n\nBasic Flutter layout concepts\nUse DartPad in a browser (no downloads required!)\nto learn the basics of creating a Flutter layout.", "source": "https://docs.flutter.dev/codelabs/index.html"} {"id": "03e56c9b600e-3", "text": "How to debug layout issues with the Flutter Inspector\nNot an official codelab, but step-by-step instructions on\nhow to debug common layout problems using the Flutter \nInspector and Layout Explorer.\n\nImplicit animations\nUse DartPad (no downloads required!) to learn how to use\nimplicit animations to add motion and create\nvisual effects for the widgets in your UI.\n\nBuilding Beautiful Transitions with Material Motion for Flutter\nLearn how to use the Material animations package to\nadd pre-built transitions to a Material app called Reply.\n\nTake your Flutter app from boring to beautiful\nLearn how to use some of the features in Material 3\nto make your app more beautiful and more responsive.", "source": "https://docs.flutter.dev/codelabs/index.html"} {"id": "03e56c9b600e-4", "text": "MDC-101 Flutter: Material Components (MDC) Basics\nLearn the basics of using Material Components by building\na simple app with core components. The four MDC codelabs\nguide you through building an e-commerce app called Shrine.\nYou\u2019ll start by building a login page using several of MDC\nFlutter\u2019s components.\n\nMDC-102 Flutter: Material Structure and Layout\nLearn how to use Material for structure and layout in Flutter.\nContinue building the e-commerce app, introduced in MDC-101,\nby adding navigation, structure, and data.\n\nMDC-103 Flutter: Material Theming with Color, Shape, Elevation, and Type\nDiscover how Material Components for Flutter make it\neasy to differentiate your product, and express your\nbrand through design. Continue building your e-commerce\napp by adding a home screen that displays products.", "source": "https://docs.flutter.dev/codelabs/index.html"} {"id": "03e56c9b600e-5", "text": "MDC-104 Flutter: Material Advanced Components\nImprove your design and learn to use our advanced\ncomponent backdrop menu. Finish your e-commerce app\nby adding a backdrop with a menu that filters\nproducts by the selected category.\n\nAdaptive Apps in Flutter\nLearn how to build a Flutter app that adapts to the \nplatform that it\u2019s running on, be that Android, iOS, \nthe web, Windows, macOS, or Linux.\n\nUsing Flutter with\u2026\n\nLearn how to use Flutter with other technologies.\n\nMonetizing Flutter\n\nAdding AdMob Ads to a Flutter app\nLearn how to add an AdMob banner, an interstitial ad,\nand a rewarded ad to an app called Awesome Drawing Quiz,\na game that lets players guess the name of the drawing.", "source": "https://docs.flutter.dev/codelabs/index.html"} {"id": "03e56c9b600e-6", "text": "Adding an AdMob banner and native inline ads to a Flutter app\nLearn how to implement inline banner and native ads\nto a travel booking app that lists possible\nflight destinations.\n\nAdding in-app purchases to your Flutter app\nExtend a simple gaming app that uses the Dash mascot as\ncurrency to offer three types of in-app purchases:\nconsumable, non-consumable, and subscription.\n\nFlutter and Firebase\n\nAdd a user authentication flow to a Flutter app using FirebaseUI\nLearn how to add Firebase authentication to a Flutter app\nwith only a few lines of code.\n\nGet to know Firebase for Flutter (workshop)\nAn instructor-led version of our popular\n\u201cGet to know Firebase for Flutter\u201d codelab\n(listed below).\n\nGet to know Firebase for Flutter\nBuild an event RSVP and guestbook chat app on both Android\nand iOS using Flutter, authenticating users with Firebase\nAuthentication, and sync data using Cloud Firestore.", "source": "https://docs.flutter.dev/codelabs/index.html"} {"id": "03e56c9b600e-7", "text": "Local development for your Flutter apps using the Firebase Emulator Suite\nLearn how to use the Firebase Emulator Suite when\ndeveloping with Flutter. You will also learn to use\nthe Auth and Firestore emulators.\n\nFlutter and TensorFlow\n\nCreate a custom text-classification model with TensorFlow Lite Model Maker\n\nCreate a Flutter app to classify texts with TensorFlow\nLearn how to run a text-classification inference from a Flutter\napp with TensorFlow Serving through REST and gRPC.\n\nTrain a comment-spam detection model with TensorFlow Lite Model Maker\nLearn how to install the TensorFlow Lite Model Maker with Colab,\nHow to use a data loader, and how to build a model.\n\nFlutter and other technologies\n\nAdding Google Maps to a Flutter app\nDisplay a Google map in an app, retrieve data from a\nweb service, and display the data as markers on the map.", "source": "https://docs.flutter.dev/codelabs/index.html"} {"id": "03e56c9b600e-8", "text": "Adding WebView to your Flutter app\nWith the WebView Flutter plugin you can add a WebView \nwidget to your Android or iOS Flutter app.\n\nBuild voice bots for mobile with Dialogflow and Flutter (workshop)\nAn instructor-led version of the Dialogflow\nand Flutter codelab (listed below).\n\nBuild voice bots for Android with Dialogflow and Flutter\nLearn how to build a mobile FAQ bot that can answer most\ncommon questions about the tool Dialogflow. End users\ncan interact with the text interface or stream a voice\ninteraction via the built-in microphone of a mobile device.\n\nBuilding a game with Flutter and Flame NEW\nLearn how to create a platform game (featuring\nDash or Sparky), using the Flame package.\n\nUsing FFI in a Flutter plugin NEW\nLearn how to use Dart\u2019s FFI (foreign function interface)\nlibrary, ffigen, allowing you to leverage\nexisting native libraries that provide a\nC interface.", "source": "https://docs.flutter.dev/codelabs/index.html"} {"id": "03e56c9b600e-9", "text": "Testing\n\nLearn how to test your Flutter application.\n\nHow to test a Flutter app\nStart with a simple app that manages state with the Provider package.\nUnit test the provider package. Write widget tests for two of the\nwidgets. Use Flutter Driver to create an integration test.\n\nWriting platform-specific code\n\nLearn how to write code that\u2019s targeted for specific platforms,\nlike iOS, Android, desktop, or the web.\n\nBuilding a Cupertino app with Flutter\nBuild a version of the Shrine shopping app\n(used in the Material Design codelabs) using the\nCupertino package to create an iOS style look and feel.\nCreate multiple tabs and navigate between them.\nUse the provider package to manage state between screens.\n\nHow to write a Flutter plugin\nLearn how to write a plugin by creating a music plugin\nfor iOS and Android that processes audio on the host platform.\nThen make an example app that uses your plugin to make a music keyboard.", "source": "https://docs.flutter.dev/codelabs/index.html"} {"id": "03e56c9b600e-10", "text": "Using a plugin with a Flutter web app\nFinish an app that reports the number of stars on a GitHub repository.\nuse Dart DevTools to do some simple debugging, and\nHost your app on Firebase and, finally, use a Flutter plugin to\nlaunch the app and open the hosted privacy policy.\n\nWrite a Flutter desktop application\nBuild a Flutter desktop app (Windows, Linux, or macOS)\nthat accesses GitHub APIs to retrieve your repositories,\nassigned issues, and pull requests. As part of this task,\ncreate and use plugins to interact with native APIs and desktop applications,\nand use code generation to build type-safe client libraries for GitHub\u2019s APIs.\n\nOther resources\n\nFor Dart-specific codelabs, see the\ncodelabs page on the Dart site.\n\nWe also recommend the following online class:\n\nThe Complete Flutter Development Bootcamp Using Dart", "source": "https://docs.flutter.dev/codelabs/index.html"} {"id": "03e56c9b600e-11", "text": "The Complete Flutter Development Bootcamp Using Dart\n\nNote:\n If you have trouble viewing any of the codelabs\n on codelabs.developers.google.com, try \n this mirror of the Flutter codelabs.", "source": "https://docs.flutter.dev/codelabs/index.html"} {"id": "770dd48484f7-0", "text": "Basic Flutter layout concepts\n\nRow and Column classes\n\nAxis size and alignment\n\nmainAxisSize property\nmainAxisAlignment property\ncrossAxisAlignment property\n\nFlexible widget\n\nExpanded widget\n\nSizedBox widget\n\nSpacer widget\n\nText widget\n\nIcon widget\n\nImage widget\n\nPutting it all together\n\nWhat\u2019s next?\n\nWelcome to the Flutter layout codelab,\nwhere you learn how to build a Flutter UI without\ndownloading and installing Flutter or Dart!\n\nNote:\n This codelab uses embedded DartPads to display examples and exercises.\n If you see empty boxes instead of DartPads, check out\n Troubleshooting DartPad.", "source": "https://docs.flutter.dev/codelabs/layout-basics/index.html"} {"id": "770dd48484f7-1", "text": "Flutter is different from other frameworks because its UI\nis built in code, not (for example) in an XML file or similar.\nWidgets are the basic building blocks of a Flutter UI.\nAs you progress through this codelab,\nyou\u2019ll learn that almost everything in Flutter is a widget.\nA widget is an immutable object that describes a specific part of a UI.\nYou\u2019ll also learn that Flutter widgets are composable, meaning\nthat you can combine existing widgets to make more sophisticated widgets.\nAt the end of this codelab,\nyou\u2019ll get to apply what you\u2019ve learned\ninto building a Flutter UI that displays a business card.\n\nEstimated time to complete this codelab: 45-60 minutes.\n\nRow and Column classes\n\nExample: Creating a Column\n\nThe following example displays the differences between\n a Row and Column.\n\n1. Click the Run button.", "source": "https://docs.flutter.dev/codelabs/layout-basics/index.html"} {"id": "770dd48484f7-2", "text": "1. Click the Run button.\n\n2. In the code, change the Row to a Column, and run again.\n\nAxis size and alignment\n\nSo far, the BlueBox widgets have been squished together\n(either to the left or at the top of the UI Output).\nYou can change how the BlueBox widgets are spaced\nout using the axis size and alignment properties.\n\nmainAxisSize property\n\nRow and Column occupy all of the space on their main axes.\nIf the combined width of their children is\nless than the total space on their main axes,\ntheir children are laid out with extra space.\n\nRow and Column only occupy enough space on their main axes\nfor their children. Their children are laid out without extra space\nand at the middle of their main axes.", "source": "https://docs.flutter.dev/codelabs/layout-basics/index.html"} {"id": "770dd48484f7-3", "text": "Tip:\n MainAxisSize.max is the mainAxisSize property\u2019s default value.\n If you don\u2019t specify another value,\n the default value is used,\n as shown in the previous example.\n\nExample: Modifying axis size\n\nThe following example explicitly sets mainAxisSize\n to its default value, MainAxisSize.max.\n\n1. Click the Run button.\n\n2. Change MainAxisSize.max to MainAxisSize.min,\n and run again.\n\nmainAxisAlignment property\n\nPositions children near the beginning of the main axis.\n(Left for Row, top for Column)\n\nPositions children near the end of the main axis.\n(Right for Row, bottom for Column)\n\nPositions children at the middle of the main axis.\n\nDivides the extra space evenly between children.\n\nDivides the extra space evenly between children\nand before and after the children.", "source": "https://docs.flutter.dev/codelabs/layout-basics/index.html"} {"id": "770dd48484f7-4", "text": "Divides the extra space evenly between children\nand before and after the children.\n\nSimilar to MainAxisAlignment.spaceEvenly,\nbut reduces half of the space before the first\nchild and after the last child\nto half of the width between the children.\n\nExample: Modifying main axis alignment\n\nThe following example explicitly sets\n mainAxisAlignment to its default value,\n MainAxisAlignment.start.\n\n1. Click the Run button.\n\n2. Change MainAxisAlignment.start to\n MainAxisAlignment.end, and run again.\n\nTip:\n Before moving to the next section,\n change MainAxisAlignment.end to another value.\n\ncrossAxisAlignment property\n\nPositions children near the start of the cross axis. (Top for Row, Left for Column)\n\nPositions children near the end of the cross axis. (Bottom for Row, Right for Column)", "source": "https://docs.flutter.dev/codelabs/layout-basics/index.html"} {"id": "770dd48484f7-5", "text": "Positions children at the middle of the cross axis. (Middle for Row, Center for Column)\n\nStretches children across the cross axis.\n(Top-to-bottom for Row, left-to-right for Column)\n\nAligns children by their character baselines.\n(Text class only, and requires that the\ntextBaseline property is set to\nTextBaseline.alphabetic. See the\nText widget section for an example.)\n\nExample: Modifying cross axis alignment\n\nThe following example explicitly sets crossAxisAlignment\n to its default value, CrossAxisAlignment.center.\n\nTo demonstrate cross axis alignment,\n mainAxisAlignment is set to\n MainAxisAlignment.spaceAround,\n and Row now contains a BiggerBlueBox widget\n that is taller than the BlueBox widgets.\n\n1. Click the Run button.\n\n2. Change CrossAxisAlignment.center to\n CrossAxisAlignment.start, and run again.", "source": "https://docs.flutter.dev/codelabs/layout-basics/index.html"} {"id": "770dd48484f7-6", "text": "Tip:\n Before moving to the next section,\n change CrossAxisAlignment.start to another value.\n\nFlexible widget\n\nCompares itself against other flex\nproperties before determining what fraction of the\ntotal remaining space each Flexible widget receives.\n\nDetermines whether a Flexible widget\nfills all of its extra space.\n\nExample: Changing fit properties\n\nThe following example demonstrates the fit property,\n which can have one of two values:\n\nThe widget\u2019s preferred size is used. (Default)\n\nForces the widget to fill all of its extra space.\n\nIn this example, change the fit properties to\n make the Flexible widgets fill the extra space.\n\n1. Click the Run button.\n\n2. Change both fit values to FlexFit.tight,\n and run again.\n\nExample: Testing flex values", "source": "https://docs.flutter.dev/codelabs/layout-basics/index.html"} {"id": "770dd48484f7-7", "text": "Example: Testing flex values\n\nWhen flex properties are compared against one another,\n the ratio between their flex values determines\n what fraction of the total remaining space each\n Flexible widget receives.\n\nremainingSpace\n\nflex\n\ntotalOfAllFlexValues\n\nIn this example, the sum of the flex values (2),\n determines that both Flexible widgets receive\n half of the total remaining space.\n The BlueBox widget (or fixed-size widget)\n remains the same size.\n\nTip:\n Before moving to the next example,\n try changing the flex properties to other values,\n such as 2 and 1.\n\nExpanded widget\n\nSimilar to Flexible, the Expanded widget can\nwrap a widget and force the widget to fill extra space.\n\nExample: Filling extra space\n\nThe following example demonstrates how the\n Expanded widget forces its child widget to\n fill extra space.", "source": "https://docs.flutter.dev/codelabs/layout-basics/index.html"} {"id": "770dd48484f7-8", "text": "1. Click the Run button.\n\n2. Wrap the second BlueBox widget in an Expanded widget.\n\nFor example:\n\nExpanded\n\nchild:\n\nBlueBox\n\n(),),\n\n3. Select the Format button to properly format the code,\n and run again.\n\nSizedBox widget\n\nExample: Resizing a widget\n\nThe following example wraps the middle BlueBox widget inside of a\n SizedBox widget and sets the BlueBox\u2019s width to 100 logical pixels.\n\n1. Click the Run button.\n\n2. Add a height property equal to 100 logical pixels\n inside the SizedBox widget, and run again.\n\nExample: Creating space", "source": "https://docs.flutter.dev/codelabs/layout-basics/index.html"} {"id": "770dd48484f7-9", "text": "Example: Creating space\n\nThe following example contains three BlueBox widgets\n and one SizedBox widget that separates the first\n and second BlueBox widgets. The SizedBox widget\n contains a width property equal to 50 logical pixels.\n\n1. Click the Run button.\n\n2. Create more space by adding another\n SizedBox widget (25 logical pixels wide)\n between the second and third BlueBox widgets,\n and run again.\n\nSpacer widget\n\nSimilar to SizedBox, the Spacer widget also\ncan create space between widgets.\n\nExample: Creating more space\n\nThe following example separates the first two\n BlueBox widgets using a Spacer widget with\n a flex value of 1.\n\n1. Click the Run button.\n\n2. Add another Spacer widget (also with a flex value of 1)\n between the second and third BlueBox widgets.", "source": "https://docs.flutter.dev/codelabs/layout-basics/index.html"} {"id": "770dd48484f7-10", "text": "Text widget\n\nThe Text widget displays text and can be configured\nfor different fonts, sizes, and colors.\n\nExample: Aligning text\n\nThe following example displays \u201cHey!\u201d three times,\n but at different font sizes and in different colors.\n Row specifies the crossAxisAlignment\n and textBaseline properties.\n\n1. Click the Run button.\n\n2. Change CrossAxisAlignment.center to\n CrossAxisAlignment.baseline, and run again.\n\nIcon widget\n\nThe Icon widget displays a graphical symbol\nthat represents an aspect of the UI.\nFlutter is preloaded with icon packages for\nMaterial and Cupertino applications.\n\nExample: Creating an Icon\n\nThe following example displays the widget Icons.widget\n from the Material Icon library in red and blue.\n\n1. Click the Run button.\n\n2. Add another Icon from the\n Material Icon library\n with a size of 50.", "source": "https://docs.flutter.dev/codelabs/layout-basics/index.html"} {"id": "770dd48484f7-11", "text": "3. Give the Icon a color of Colors.amber from the\n Material Color palette, and run again.\n\nImage widget\n\nThe Image widget displays an image.\nYou either can reference images using a URL,\nor you can include images inside your app package.\nSince DartPad can\u2019t package an image,\nthe following example uses an image from the network.\n\nExample: Displaying an image\n\nThe following example displays an image that\u2019s\n stored remotely on GitHub.\n The Image.network method takes a string\n parameter that contains an image\u2019s URL.\n\nIn this example, Image.network contains a non-working URL.\n\n1. Click the Run button.\n\n2. Change the non-working URL to the actual URL:\n\nhttps://raw.githubusercontent.com/flutter/website/main/examples/layout/sizing/images/pic1.jpg", "source": "https://docs.flutter.dev/codelabs/layout-basics/index.html"} {"id": "770dd48484f7-12", "text": "3. Then change pic1.jpg to pic2.jpg or pic3.jpg,\n and run again.\n\nPutting it all together\n\nYou\u2019re almost at the end of this codelab.\nIf you\u2019d like to test your knowledge of the\ntechniques that you\u2019ve learned, why not apply\nthose skills into building a Flutter UI that\ndisplays a business card!\n\nYou\u2019ll break down Flutter\u2019s layout into parts,\nwhich is how you\u2019d create a Flutter UI in the real world.\n\nIn Part 1,\nyou\u2019ll implement a Column that contains the name and title.\nThen you\u2019ll wrap the Column in a Row that contains the icon,\nwhich is positioned to the left of the name and title.\n\nPart 2, you\u2019ll wrap the\n\nIn Part 3, you\u2019ll finish building\nthe business card display by adding four more icons,\nwhich are positioned below the contact information.\n\nPart 1", "source": "https://docs.flutter.dev/codelabs/layout-basics/index.html"} {"id": "770dd48484f7-13", "text": "Part 1\n\nExercise: Create the name and title\n\nImplement a Column that contains two text widgets:\n\nThe first Text widget has the name Flutter McFlutter and\n the style property set to Theme.of(context).textTheme.headlineSmall.\n\nThe second Text widget contains the title Experienced App Developer.\n\nFor the Column,\n set mainAxisSize to MainAxisSize.min\n and crossAxisAlignment to CrossAxisAlignment.start.\n\nExercise: Wrap the Column in a Row\n\nWrap the Column you implemented in a\n Row that contains the following widgets:\n\nAn Icon widget set to Icons.account_circle\n and with a size of 50 pixels.\n\nA Padding widget that creates a space of 8\n pixels around the Icon widget.\n\n To do this, you can specify const EdgeInsets.all(8.0)\n for the padding property.", "source": "https://docs.flutter.dev/codelabs/layout-basics/index.html"} {"id": "770dd48484f7-14", "text": "The Row should look like this:\n\nRow\n\nchildren:\n\nPadding\n\npadding:\n\nconst\n\nEdgeInsets\n\nall\n\n8.0\n\n),\n\nchild:\n\nIcon\n\nIcons\n\naccount_circle\n\nsize:\n\n50\n\n),\n\n),\n\nColumn\n\n...\n\n),\n\n// <--- The Column you first implemented\n\n],\n\n);\n\nPart 2\n\nExercise: Tweak the layout\n\nA SizedBox widget with a height of 8.\n\nAn empty Row where you\u2019ll add the contact information in\na later step.\n\nA second SizedBox widget with a height of 16.", "source": "https://docs.flutter.dev/codelabs/layout-basics/index.html"} {"id": "770dd48484f7-15", "text": "A second SizedBox widget with a height of 16.\n\nA second empty Row where you\u2019ll add\nfour icons (Part 3).\n\nThe Column\u2019s list of widgets should be formatted as follows,\n so the contact information and icons are displayed below the\n name and title:\n\n],\n\n),\n\n// <--- Closing parenthesis for the Row\n\nSizedBox\n\n(),\n\nRow\n\n(),\n\n// First empty Row\n\nSizedBox\n\n(),\n\nRow\n\n(),\n\n// Second empty Row\n\n],\n\n);\n\n// <--- Closing parenthesis for the Column that wraps the Row\n\nExercise: Enter contact information\n\nEnter two Text widgets inside the first empty Row :", "source": "https://docs.flutter.dev/codelabs/layout-basics/index.html"} {"id": "770dd48484f7-16", "text": "Enter two Text widgets inside the first empty Row :\n\nThe first Text widget contains the address 123 Main Street.\n\nThe second Text widget contains the phone number (415) 555-0198.\n\nFor the first empty Row,\n set the mainAxisAlignment property to\n MainAxisAlignment.spaceBetween.\n\nPart 3\n\nExercise: Add four icons\n\nEnter the following Icon widgets inside the second empty Row:\n\nIcons.accessibility\n\nIcons.timer\n\nIcons.phone_android\n\nIcons.phone_iphone\n\nFor the second empty Row,\n set the mainAxisAlignment property to\n MainAxisAlignment.spaceAround.\n\nWhat\u2019s next?", "source": "https://docs.flutter.dev/codelabs/layout-basics/index.html"} {"id": "770dd48484f7-17", "text": "What\u2019s next?\n\nCongratulations, you\u2019ve finished this codelab!\nIf you\u2019d like to know more about Flutter,\nhere are a few suggestions for resources worth exploring:\n\nLearn more about layouts in Flutter by\nvisiting the Building layouts page.\n\nCheck out the sample apps.\n\nVisit Flutter\u2019s YouTube channel,\nwhere you can watch a variety videos from\nvideos that focus on individual widgets\nto videos of developers building apps.\n\nYou can download Flutter from the install page.", "source": "https://docs.flutter.dev/codelabs/layout-basics/index.html"} {"id": "e3783a92f014-0", "text": "Using Flutter in China\n\nConfiguring Flutter to use a mirror site\n\nCommunity-run mirror sites\n\nThe Flutter community has made a Simplified Chinese version of the\nFlutter website available at\nhttps://flutter.cn.\n\nIf you\u2019d like to install Flutter using an \ninstallation bundle,\nyou can replace the domain of the original URL with a trusted mirror\nto speed it up. For example:\n\nOriginal URL:\nhttps://storage.googleapis.com/flutter_infra_release/releases/stable/windows/flutter_windows_3.3.0-stable.zip\n\nMirrored URL:\nhttps://storage.flutter-io.cn/flutter_infra_release/releases/stable/windows/flutter_windows_3.3.0-stable.zip\n\nYou must also set two environment variables to upgrade Flutter and use the pub\npackage repository in China. Instructions are below.", "source": "https://docs.flutter.dev/community/china/index.html"} {"id": "e3783a92f014-1", "text": "Important:\n Use mirror sites only if you trust the provider.\n The Flutter team cannot verify their reliability or security.\n\nConfiguring Flutter to use a mirror site\n\nIf you\u2019re installing or using Flutter in China, it may be helpful to use\na trustworthy local mirror site that hosts Flutter\u2019s dependencies.\nTo instruct the Flutter tool to use an alternate storage location,\nyou need to set two environment variables, PUB_HOSTED_URL and\nFLUTTER_STORAGE_BASE_URL, before running the flutter command.\n\nTaking macOS or Linux as an example, here are the first few steps in\nthe setup process for using a mirror site. Run the following in a Bash\nshell from the directory where you wish to store your local Flutter clone:\n\nexport\n\nPUB_HOSTED_URL\n\n=https://pub.flutter-io.cn\n\nexport\n\nFLUTTER_STORAGE_BASE_URL", "source": "https://docs.flutter.dev/community/china/index.html"} {"id": "e3783a92f014-2", "text": "export\n\nFLUTTER_STORAGE_BASE_URL\n\n=https://storage.flutter-io.cn\n\ngit clone\n\nb dev https://github.com/flutter/flutter.git\n\nexport\n\nPATH\n\n$PWD\n\n/flutter/bin:\n\n$PATH\n\ncd ./flutter\n\nflutter doctor\n\nAfter these steps, you should be able to continue\nsetting up Flutter normally.\nFrom here on, packages fetched by flutter pub get are\ndownloaded from flutter-io.cn in any shell where PUB_HOSTED_URL\nand FLUTTER_STORAGE_BASE_URL are set.", "source": "https://docs.flutter.dev/community/china/index.html"} {"id": "e3783a92f014-3", "text": "The flutter-io.cn server is a provisional mirror for Flutter\ndependencies and packages maintained by GDG China.\nThe Flutter team cannot guarantee long-term availability of this service.\nYou\u2019re free to use other mirrors if they become available. If you\u2019re\ninterested in setting up your own mirror in China, contact\nflutter-dev@googlegroups.com\nfor assistance.\n\nCommunity-run mirror sites\n\nShanghai Jiao Tong University Linux User Group\n \n \nFLUTTER_STORAGE_BASE_URL: https://mirror.sjtu.edu.cn/\n\n \nPUB_HOSTED_URL: https://mirror.sjtu.edu.cn/dart-pub/", "source": "https://docs.flutter.dev/community/china/index.html"} {"id": "59721f97162f-0", "text": "Animate a widget using a physics simulation\n\nFade a widget in and out\n\nAnimate the properties of a container\n\nCookbook\n\nAnimation\n\nAnimate the properties of a container\n\n1. Create a StatefulWidget with default properties\n\n2. Build an AnimatedContainer using the properties\n\n3. Start the animation by rebuilding with new properties\n\nInteractive example\n\nThe Container class provides a convenient way\nto create a widget with specific properties:\nwidth, height, background color, padding, borders, and more.\n\nSimple animations often involve changing these properties over time.\nFor example,\nyou might want to animate the background color from grey to green to\nindicate that an item has been selected by the user.", "source": "https://docs.flutter.dev/cookbook/animation/animated-container/index.html"} {"id": "59721f97162f-1", "text": "To animate these properties,\nFlutter provides the AnimatedContainer widget.\nLike the Container widget, AnimatedContainer allows you to define\nthe width, height, background colors, and more. However, when the\nAnimatedContainer is rebuilt with new properties, it automatically\nanimates between the old and new values. In Flutter, these types of\nanimations are known as \u201cimplicit animations.\u201d\n\nThis recipe describes how to use an AnimatedContainer to animate the size,\nbackground color, and border radius when the user taps a button\nusing the following steps:\n\nCreate a StatefulWidget with default properties.\n\nBuild an AnimatedContainer using the properties.\n\nStart the animation by rebuilding with new properties.\n\n1. Create a StatefulWidget with default properties\n\nTo start, create StatefulWidget and State classes.\nUse the custom State class to define the properties that change over\ntime. In this example, that includes the width, height, color, and border\nradius. You can also define the default value of each property.", "source": "https://docs.flutter.dev/cookbook/animation/animated-container/index.html"} {"id": "59721f97162f-2", "text": "These properties belong to a custom State class so they\ncan be updated when the user taps a button.\n\n2. Build an AnimatedContainer using the properties\n\nNext, build the AnimatedContainer using the properties defined in the\nprevious step. Furthermore, provide a duration that defines how long\nthe animation should run.\n\n3. Start the animation by rebuilding with new properties\n\nFinally, start the animation by rebuilding the\nAnimatedContainer with the new properties.\nHow to trigger a rebuild?\nUse the setState() method.\n\nAdd a button to the app. When the user taps the button, update\nthe properties with a new width, height, background color and border radius\ninside a call to setState().\n\nA real app typically transitions between fixed values (for example,\nfrom a grey to a green background). For this app,\ngenerate new values each time the user taps the button.\n\nInteractive example\n\nAnimate a widget using a physics simulation", "source": "https://docs.flutter.dev/cookbook/animation/animated-container/index.html"} {"id": "59721f97162f-3", "text": "Interactive example\n\nAnimate a widget using a physics simulation\n\nFade a widget in and out", "source": "https://docs.flutter.dev/cookbook/animation/animated-container/index.html"} {"id": "1295cc44d657-0", "text": "Animation\n\nCookbook\n\nAnimation\n\nAnimate a page route transition\n\nAnimate a widget using a physics simulation\n\nAnimate the properties of a container\n\nFade a widget in and out", "source": "https://docs.flutter.dev/cookbook/animation/index.html"} {"id": "5d3b34bf6dd4-0", "text": "Animate the properties of a container\n\nAdd a drawer to a screen\n\nFade a widget in and out\n\nCookbook\n\nAnimation\n\nFade a widget in and out\n\n1. Create a box to fade in and out\n\n2. Define a StatefulWidget\n\n3. Display a button that toggles the visibility\n\n4. Fade the box in and out\n\nInteractive example\n\nUI developers often need to show and hide elements on screen.\nHowever, quickly popping elements on and off the screen can\nfeel jarring to end users. Instead,\nfade elements in and out with an opacity animation to create\na smooth experience.\n\nThe AnimatedOpacity widget makes it easy to perform opacity\nanimations. This recipe uses the following steps:\n\nCreate a box to fade in and out.\n\nDefine a StatefulWidget.", "source": "https://docs.flutter.dev/cookbook/animation/opacity-animation/index.html"} {"id": "5d3b34bf6dd4-1", "text": "Define a StatefulWidget.\n\nDisplay a button that toggles the visibility.\n\nFade the box in and out.\n\n1. Create a box to fade in and out\n\nFirst, create something to fade in and out. For this example,\ndraw a green box on screen.\n\n2. Define a StatefulWidget\n\nNow that you have a green box to animate,\nyou need a way to know whether the box should be visible.\nTo accomplish this, use a StatefulWidget.\n\nA StatefulWidget is a class that creates a State object.\nThe State object holds some data about the app and provides a way to\nupdate that data. When updating the data,\nyou can also ask Flutter to rebuild the UI with those changes.\n\nIn this case, you have one piece of data:\na boolean representing whether the button is visible.", "source": "https://docs.flutter.dev/cookbook/animation/opacity-animation/index.html"} {"id": "5d3b34bf6dd4-2", "text": "To construct a StatefulWidget, create two classes: A\nStatefulWidget and a corresponding State class.\nPro tip: The Flutter plugins for Android Studio and VSCode include\nthe stful snippet to quickly generate this code.\n\n3. Display a button that toggles the visibility\n\nNow that you have some data to determine whether the green box\nshould be visible, you need a way to update that data.\nIn this example, if the box is visible, hide it.\nIf the box is hidden, show it.\n\nTo handle this, display a button. When a user presses the button,\nflip the boolean from true to false, or false to true.\nMake this change using setState(),\nwhich is a method on the State class.\nThis tells Flutter to rebuild the widget.\n\nFor more information on working with user input,\nsee the Gestures section of the cookbook.\n\n4. Fade the box in and out", "source": "https://docs.flutter.dev/cookbook/animation/opacity-animation/index.html"} {"id": "5d3b34bf6dd4-3", "text": "4. Fade the box in and out\n\nYou have a green box on screen and a button to toggle the visibility\nto true or false. How to fade the box in and out? With an\nAnimatedOpacity widget.\n\nThe AnimatedOpacity widget requires three arguments:\n\nopacity: A value from 0.0 (invisible) to 1.0 (fully visible).\n\nduration: How long the animation should take to complete.\n\nchild: The widget to animate. In this case, the green box.\n\nInteractive example\n\nAnimate the properties of a container\n\nAdd a drawer to a screen", "source": "https://docs.flutter.dev/cookbook/animation/opacity-animation/index.html"} {"id": "edd81e24fde3-0", "text": "Animate a widget using a physics simulation\n\nAnimate a page route transition\n\nCookbook\n\nAnimation\n\nAnimate a page route transition\n\n1. Set up a PageRouteBuilder\n\n2. Create a Tween\n\n3. Use an AnimatedWidget\n\n4. Use a CurveTween\n\n5. Combine the two Tweens\n\nInteractive example\n\nA design language, such as Material, defines standard behaviors when\ntransitioning between routes (or screens). Sometimes, though, a custom\ntransition between screens can make an app more unique. To help,\nPageRouteBuilder provides an Animation object.\nThis Animation can be used with Tween and\nCurve objects to customize the transition animation.\nThis recipe shows how to transition between\nroutes by animating the new route into view from\nthe bottom of the screen.\n\nTo create a custom page route transition, this recipe uses the following steps:", "source": "https://docs.flutter.dev/cookbook/animation/page-route-animation/index.html"} {"id": "edd81e24fde3-1", "text": "To create a custom page route transition, this recipe uses the following steps:\n\nSet up a PageRouteBuilder\n\nCreate a Tween\n\nAdd an AnimatedWidget\n\nUse a CurveTween\n\nCombine the two Tweens\n\n1. Set up a PageRouteBuilder\n\nTo start, use a PageRouteBuilder to create a Route.\nPageRouteBuilder has two callbacks, one to build the content of the route\n(pageBuilder), and one to build the route\u2019s transition (transitionsBuilder).\n\nNote:\n The child parameter in transitionsBuilder is the widget returned from\n pageBuilder. The pageBuilder function is only called the first time the\n route is built. The framework can avoid extra work because child stays the\n same throughout the transition.\n\nThe following example creates two routes: a home route with a \u201cGo!\u201d button, and\na second route titled \u201cPage 2\u201d.\n\n2. Create a Tween", "source": "https://docs.flutter.dev/cookbook/animation/page-route-animation/index.html"} {"id": "edd81e24fde3-2", "text": "2. Create a Tween\n\nTo make the new page animate in from the bottom, it should animate from\nOffset(0,1) to Offset(0, 0) (usually defined using the Offset.zero\nconstructor). In this case, the Offset is a 2D vector for the\n\u2018FractionalTranslation\u2019 widget.\nSetting the dy argument to 1 represents a vertical translation one\nfull height of the page.\n\nThe transitionsBuilder callback has an animation parameter. It\u2019s an\nAnimation that produces values between 0 and 1. Convert the\nAnimation into an Animation using a Tween:\n\n3. Use an AnimatedWidget\n\nFlutter has a set of widgets extending AnimatedWidget\nthat rebuild themselves when the value of the animation changes. For instance,\nSlideTransition takes an Animation and translates its child (using a\nFractionalTranslation widget) whenever the value of the animation changes.", "source": "https://docs.flutter.dev/cookbook/animation/page-route-animation/index.html"} {"id": "edd81e24fde3-3", "text": "AnimatedWidget Return a SlideTransition\nwith the Animation and the child widget:\n\n4. Use a CurveTween\n\nFlutter provides a selection of easing curves that\nadjust the rate of the animation over time.\nThe Curves class\nprovides a predefined set of commonly used curves.\nFor example, Curves.easeOut\nmakes the animation start quickly and end slowly.\n\nTo use a Curve, create a new CurveTween\nand pass it a Curve:\n\nThis new Tween still produces values from 0 to 1. In the next step, it will be\ncombined the Tween from step 2.\n\n5. Combine the two Tweens\n\nTo combine the tweens,\nuse chain():\n\nThen use this tween by passing it to animation.drive(). This creates a new\nAnimation that can be given to the SlideTransition widget:", "source": "https://docs.flutter.dev/cookbook/animation/page-route-animation/index.html"} {"id": "edd81e24fde3-4", "text": "This new Tween (or Animatable) produces Offset values by first evaluating the\nCurveTween, then evaluating the Tween. When the animation runs, the\nvalues are computed in this order:\n\nThe animation (provided to the transitionsBuilder callback) produces values\nfrom 0 to 1.\n\nThe CurveTween maps those values to new values between 0 and 1 based on its\ncurve.\n\nThe Tween maps the double values to Offset values.\n\nAnother way to create an Animation with an easing curve is to use a\nCurvedAnimation:\n\nInteractive example\n\nAnimate a widget using a physics simulation", "source": "https://docs.flutter.dev/cookbook/animation/page-route-animation/index.html"} {"id": "d50b441773ec-0", "text": "Animate a page route transition\n\nAnimate the properties of a container\n\nAnimate a widget using a physics simulation\n\nCookbook\n\nAnimation\n\nAnimate a widget using a physics simulation\n\nStep 1: Set up an animation controller\n\nStep 2: Move the widget using gestures\n\nStep 3: Animate the widget\n\nStep 4: Calculate the velocity to simulate a springing motion\n\nInteractive Example\n\nPhysics simulations can make app interactions feel realistic and interactive.\nFor example, you might want to animate a widget to act as if it were attached to\na spring or falling with gravity.\n\nThis recipe demonstrates how to move a widget from a dragged point back to the\ncenter using a spring simulation.\n\nThis recipe uses these steps:\n\nSet up an animation controller\n\nMove the widget using gestures\n\nAnimate the widget", "source": "https://docs.flutter.dev/cookbook/animation/physics-simulation/index.html"} {"id": "d50b441773ec-1", "text": "Move the widget using gestures\n\nAnimate the widget\n\nCalculate the velocity to simulate a springing motion\n\nStep 1: Set up an animation controller\n\nStart with a stateful widget called DraggableCard:\n\nSingleTickerProviderStateMixin.\nThen construct an\n\nAnimationController in\n\nTickerProvider.\n\nlib/{starter.dart \u2192 step1.dart}\n\n@@ -29,14 +29,20 @@\n\n29\n29\n\nState createState() => _DraggableCardState();\n\n30\n30\n\n31\n\nclass _DraggableCardState extends State {\n\n31\n\n+\n class _DraggableCardState extends State\n\n32", "source": "https://docs.flutter.dev/cookbook/animation/physics-simulation/index.html"} {"id": "d50b441773ec-2", "text": "32\n\n+\n with SingleTickerProviderStateMixin {\n\n33\n\n+\n late AnimationController _controller;\n\n34\n\n32\n35\n\n@override\n\n33\n36\n\nvoid initState() {\n\n34\n37\n\nsuper.initState();\n\n38\n\n+\n _controller =\n\n39\n\n+\n AnimationController(vsync: this, duration: const Duration(seconds: 1));\n\n35\n40\n\n36\n41\n\n@override\n\n37\n42\n\nvoid dispose() {\n\n43\n\n+\n _controller.dispose();", "source": "https://docs.flutter.dev/cookbook/animation/physics-simulation/index.html"} {"id": "d50b441773ec-3", "text": "43\n\n+\n _controller.dispose();\n\n38\n44\n\nsuper.dispose();\n\n39\n45\n\nStep 2: Move the widget using gestures\n\nMake the widget move when it\u2019s dragged, and add an Alignment field to the\n_DraggableCardState class:\n\nlib/{step1.dart (alignment) \u2192 step2.dart (alignment)}\n\n@@ -1,3 +1,4 @@\n\n1\n1\n\nclass _DraggableCardState extends State\n\n2\n2\n\nwith SingleTickerProviderStateMixin {\n\n3\n3\n\nlate AnimationController _controller;\n\n+\n Alignment _dragAlignment = Alignment.center;\n\nGestureDetector that handles the", "source": "https://docs.flutter.dev/cookbook/animation/physics-simulation/index.html"} {"id": "d50b441773ec-4", "text": "GestureDetector that handles the\n\nMediaQuery to get the\nsize of the widget, and divide by 2. (This converts units of \u201cpixels dragged\u201d to\ncoordinates that\n\nAlign uses.) Then, set the\n\nlib/{step1.dart (build) \u2192 step2.dart (build)}\n\n@@ -1,8 +1,22 @@\n\n1\n1\n\n@override\n\n2\n2\n\nWidget build(BuildContext context) {\n\nreturn Align(\n\nchild: Card(\n\nchild: widget.child,\n\n+\n var size = MediaQuery.of(context).size;\n\n+\n return GestureDetector(\n\n+\n onPanDown: (details) {},\n\n+\n onPanUpdate: (details) {\n\n+\n setState(() {", "source": "https://docs.flutter.dev/cookbook/animation/physics-simulation/index.html"} {"id": "d50b441773ec-5", "text": "+\n setState(() {\n\n+\n _dragAlignment += Alignment(\n\n+\n details.delta.dx / (size.width / 2),\n\n10\n\n+\n details.delta.dy / (size.height / 2),\n\n11\n\n+\n );\n\n12\n\n+\n });\n\n13\n\n+\n },\n\n14\n\n+\n onPanEnd: (details) {},\n\n15\n\n+\n child: Align(\n\n16\n\n+\n alignment: _dragAlignment,\n\n17\n\n+\n child: Card(\n\n18\n\n+\n child: widget.child,", "source": "https://docs.flutter.dev/cookbook/animation/physics-simulation/index.html"} {"id": "d50b441773ec-6", "text": "18\n\n+\n child: widget.child,\n\n19\n\n+\n ),\n\n6\n20\n\n),\n\n7\n21\n\n);\n\n8\n22\n\nStep 3: Animate the widget\n\nWhen the widget is released, it should spring back to the center.\n\nAdd an Animation field and an _runAnimation method. This\nmethod defines a Tween that interpolates between the point the widget was\ndragged to, to the point in the center.\n\nlib/{step2.dart (animation) \u2192 step3.dart (animation)}\n\n@@ -1,4 +1,5 @@\n\n1\n1\n\nclass _DraggableCardState extends State\n\n2\n2\n\nwith SingleTickerProviderStateMixin {", "source": "https://docs.flutter.dev/cookbook/animation/physics-simulation/index.html"} {"id": "d50b441773ec-7", "text": "2\n2\n\nwith SingleTickerProviderStateMixin {\n\n3\n3\n\nlate AnimationController _controller;\n\n+\n late Animation _animation;\n\n4\n5\n\nAlignment _dragAlignment = Alignment.center;\n\nNext, update _dragAlignment when the AnimationController produces a\nvalue:\n\nlib/{step2.dart (initState) \u2192 step3.dart (initState)}\n\n@@ -3,4 +3,9 @@\n\n3\n3\n\nsuper.initState();\n\n4\n4\n\n_controller =\n\n5\n5\n\nAnimationController(vsync: this, duration: const Duration(seconds: 1));\n\n+\n _controller.addListener(() {\n\n+\n setState(() {", "source": "https://docs.flutter.dev/cookbook/animation/physics-simulation/index.html"} {"id": "d50b441773ec-8", "text": "+\n setState(() {\n\n+\n _dragAlignment = _animation.value;\n\n+\n });\n\n10\n\n+\n });\n\n6\n11\n\nNext, make the Align widget use the _dragAlignment field:\n\nFinally, update the GestureDetector to manage the animation controller:\n\nlib/{step2.dart (gesture) \u2192 step3.dart (gesture)}\n\n@@ -1,5 +1,7 @@\n\n1\n1\n\nreturn GestureDetector(\n\nonPanDown: (details) {},\n\n+\n onPanDown: (details) {\n\n+\n _controller.stop();\n\n+\n },\n\n3\n5\n\nonPanUpdate: (details) {\n\n4\n6", "source": "https://docs.flutter.dev/cookbook/animation/physics-simulation/index.html"} {"id": "d50b441773ec-9", "text": "onPanUpdate: (details) {\n\n4\n6\n\nsetState(() {\n\n5\n7\n\n_dragAlignment += Alignment(\n\n@@ -8,7 +10,9 @@\n\n8\n10\n\n);\n\n9\n11\n\n});\n\n10\n12\n\n},\n\n11\n\nonPanEnd: (details) {},\n\n13\n\n+\n onPanEnd: (details) {\n\n14\n\n+\n _runAnimation();\n\n15\n\n+\n },\n\n12\n16\n\nchild: Align(\n\n13\n17\n\nalignment: _dragAlignment,", "source": "https://docs.flutter.dev/cookbook/animation/physics-simulation/index.html"} {"id": "d50b441773ec-10", "text": "13\n17\n\nalignment: _dragAlignment,\n\n14\n18\n\nchild: Card(\n\nStep 4: Calculate the velocity to simulate a springing motion\n\nThe last step is to do a little math, to calculate the velocity of the widget\nafter it\u2019s finished being dragged. This is so that the widget realistically\ncontinues at that speed before being snapped back. (The _runAnimation method\nalready sets the direction by setting the animation\u2019s start and end alignment.)\n\nFirst, import the physics package:", "source": "https://docs.flutter.dev/cookbook/animation/physics-simulation/index.html"} {"id": "d50b441773ec-11", "text": "First, import the physics package:\n\nThe onPanEnd callback provides a DragEndDetails object. This object\nprovides the velocity of the pointer when it stopped contacting the screen. The\nvelocity is in pixels per second, but the Align widget doesn\u2019t use pixels. It\nuses coordinate values between [-1.0, -1.0] and [1.0, 1.0], where [0.0, 0.0]\nrepresents the center. The size calculated in step 2 is used to convert pixels\nto coordinate values in this range.\n\nFinally, AnimationController has an animateWith() method that can be given a\nSpringSimulation:\n\nDon\u2019t forget to call _runAnimation() with the velocity and size:\n\nNote:\n Now that the animation controller uses a simulation it\u2019s duration argument\n is no longer required.\n\nInteractive Example\n\nAnimate a page route transition\n\nAnimate the properties of a container", "source": "https://docs.flutter.dev/cookbook/animation/physics-simulation/index.html"} {"id": "3dd6cf292a00-0", "text": "Fade a widget in and out\n\nDisplay a snackbar\n\nAdd a drawer to a screen\n\nCookbook\n\nDesign\n\nAdd a drawer to a screen\n\n1. Create a Scaffold\n\n2. Add a drawer\n\n3. Populate the drawer with items\n\n4. Close the drawer programmatically\n\nInteractive example\n\nIn apps that use Material Design,\nthere are two primary options for navigation: tabs and drawers.\nWhen there is insufficient space to support tabs,\ndrawers provide a handy alternative.\n\nIn Flutter, use the Drawer widget in combination with a\nScaffold to create a layout with a Material Design drawer.\nThis recipe uses the following steps:\n\nCreate a Scaffold.\n\nAdd a drawer.\n\nPopulate the drawer with items.", "source": "https://docs.flutter.dev/cookbook/design/drawer/index.html"} {"id": "3dd6cf292a00-1", "text": "Add a drawer.\n\nPopulate the drawer with items.\n\nClose the drawer programmatically.\n\n1. Create a Scaffold\n\nTo add a drawer to the app, wrap it in a Scaffold widget.\nThe Scaffold widget provides a consistent visual structure to apps that\nfollow the Material Design Guidelines.\nIt also supports special Material Design\ncomponents, such as Drawers, AppBars, and SnackBars.\n\nIn this example, create a Scaffold with a drawer:\n\n2. Add a drawer\n\nNow add a drawer to the Scaffold. A drawer can be any widget,\nbut it\u2019s often best to use the Drawer widget from the\nmaterial library,\nwhich adheres to the Material Design spec.\n\n3. Populate the drawer with items", "source": "https://docs.flutter.dev/cookbook/design/drawer/index.html"} {"id": "3dd6cf292a00-2", "text": "3. Populate the drawer with items\n\nNow that you have a Drawer in place, add content to it.\nFor this example, use a ListView.\nWhile you could use a Column widget,\nListView is handy because it allows users to scroll\nthrough the drawer if the\ncontent takes more space than the screen supports.\n\nPopulate the ListView with a DrawerHeader\nand two ListTile widgets.\nFor more information on working with Lists,\nsee the list recipes.\n\n4. Close the drawer programmatically\n\nAfter a user taps an item, you might want to close the drawer.\nYou can do this by using the Navigator.\n\nWhen a user opens the drawer, Flutter adds the drawer to the navigation\nstack. Therefore, to close the drawer, call Navigator.pop(context).\n\nInteractive example\n\nFade a widget in and out\n\nDisplay a snackbar", "source": "https://docs.flutter.dev/cookbook/design/drawer/index.html"} {"id": "b0995cd6c3a2-0", "text": "Update the UI based on orientation\n\nUse themes to share colors and font styles\n\nUse a custom font\n\nCookbook\n\nDesign\n\nUse a custom font\n\n1. Import the font files\n\nSupported font formats\n\n2. Declare the font in the pubspec\n\npubspec.yaml option definitions\n\n3. Set a font as the default\n\n4. Use the font in a specific widget\n\nTextStyle\n\nComplete example\n\nFonts\npubspec.yaml\nmain.dart\n\nAlthough Android and iOS offer high quality system fonts,\none of the most common requests from designers is for custom fonts.\nFor example, you might have a custom-built font from a designer,\nor perhaps you downloaded a font from Google Fonts.", "source": "https://docs.flutter.dev/cookbook/design/fonts/index.html"} {"id": "b0995cd6c3a2-1", "text": "Note:\n Check out the google_fonts package for direct access\n to over 1,000 open-sourced font families.\n\nNote:\n For another approach to using custom fonts, \n especially if you want to re-use one font over multiple projects, \n see Export fonts from a package.\n\nFlutter works with custom fonts and you can apply a custom\nfont across an entire app or to individual widgets.\nThis recipe creates an app that uses custom fonts with\nthe following steps:\n\nImport the font files.\n\nDeclare the font in the pubspec.\n\nSet a font as the default.\n\nUse a font in a specific widget.\n\n1. Import the font files\n\nTo work with a font, import the font files into the project.\nIt\u2019s common practice to put font files in a fonts or assets\nfolder at the root of a Flutter project.", "source": "https://docs.flutter.dev/cookbook/design/fonts/index.html"} {"id": "b0995cd6c3a2-2", "text": "For example, to import the Raleway and Roboto Mono font\nfiles into a project, the folder structure might look like this:\n\nSupported font formats\n\nFlutter supports the following font formats:\n\n.ttc\n\n.ttf\n\n.otf\n\nFlutter does not support .woff and .woff2 fonts for all platforms.\n\n2. Declare the font in the pubspec\n\nOnce you\u2019ve identified a font, tell Flutter where to find it.\nYou can do this by including a font definition in the pubspec.yaml file.\n\nflutter\n\nfonts\n\nfamily\n\nRaleway\n\nfonts\n\nasset\n\nfonts/Raleway-Regular.ttf\n\nasset\n\nfonts/Raleway-Italic.ttf\n\nstyle\n\nitalic\n\nfamily", "source": "https://docs.flutter.dev/cookbook/design/fonts/index.html"} {"id": "b0995cd6c3a2-3", "text": "style\n\nitalic\n\nfamily\n\nRobotoMono\n\nfonts\n\nasset\n\nfonts/RobotoMono-Regular.ttf\n\nasset\n\nfonts/RobotoMono-Bold.ttf\n\nweight\n\n700\n\npubspec.yaml option definitions\n\nThe family determines the name of the font, which you use in the\nfontFamily property of a TextStyle object.\n\nThe asset is a path to the font file,\nrelative to the pubspec.yaml file.\nThese files contain the outlines for the glyphs in the font.\nWhen building the app,\nthese files are included in the app\u2019s asset bundle.\n\nA single font can reference many different files with different\noutline weights and styles:", "source": "https://docs.flutter.dev/cookbook/design/fonts/index.html"} {"id": "b0995cd6c3a2-4", "text": "A single font can reference many different files with different\noutline weights and styles:\n\nThe weight property specifies the weight of the outlines in\nthe file as an integer multiple of 100, between 100 and 900.\nThese values correspond to the FontWeight and can be used in the\nfontWeight property of a TextStyle object. \nFor example, if you want to use the RobotoMono-Bold font defined above, \nyou would set fontWeight to FontWeight.w700 in your TextStyle.\n\n Note that defining the weight property does not\noverride the actual weight of the font. You would not be able to\naccess RobotoMono-Bold with FontWeight.w100, even if its weight\nwas set to 100.", "source": "https://docs.flutter.dev/cookbook/design/fonts/index.html"} {"id": "b0995cd6c3a2-5", "text": "The style property specifies whether the outlines in the file are\nitalic or normal. \nThese values correspond to the FontStyle and can be used in the\nfontStyle property of a TextStyle object. \nFor example, if you want to use the Raleway-Italic font defined above, \nyou would set fontStyle to FontStyle.italic in your TextStyle.\n\n Note that defining the style property does not\noverride the actual style of the font; You would not be able to\naccess Raleway-Italic with FontStyle.normal, even if its style\nwas set to normal.\n\n3. Set a font as the default\n\nYou have two options for how to apply fonts to text: as the default font\nor only within specific widgets.\n\nTo use a font as the default, set the fontFamily property\nas part of the app\u2019s theme. The value provided to\nfontFamily must match the family\nname declared in the pubspec.yaml.", "source": "https://docs.flutter.dev/cookbook/design/fonts/index.html"} {"id": "b0995cd6c3a2-6", "text": "For more information on themes,\nsee the Using Themes to share colors and font styles recipe.\n\n4. Use the font in a specific widget\n\nIf you want to apply the font to a specific widget,\nsuch as a Text widget,\nprovide a TextStyle to the widget.\n\nIn this example, apply the RobotoMono font to a single Text widget.\nOnce again, the fontFamily must match the family name declared in the\npubspec.yaml.\n\nTextStyle\n\nIf a TextStyle object specifies a weight\nor style for which there is no exact font file,\nthe engine uses one of the more generic files\nfor the font and attempts to extrapolate outlines\nfor the requested weight and style.\n\nComplete example\n\nFonts\n\nThe Raleway and RobotoMono fonts were downloaded from\nGoogle Fonts.\n\npubspec.yaml\n\nname\n\ncustom_fonts\n\ndescription", "source": "https://docs.flutter.dev/cookbook/design/fonts/index.html"} {"id": "b0995cd6c3a2-7", "text": "name\n\ncustom_fonts\n\ndescription\n\nAn example of how to use custom fonts with Flutter\n\ndependencies\n\nflutter\n\nsdk\n\nflutter\n\ndev_dependencies\n\nflutter_test\n\nsdk\n\nflutter\n\nflutter\n\nfonts\n\nfamily\n\nRaleway\n\nfonts\n\nasset\n\nfonts/Raleway-Regular.ttf\n\nasset\n\nfonts/Raleway-Italic.ttf\n\nstyle\n\nitalic\n\nfamily\n\nRobotoMono\n\nfonts\n\nasset\n\nfonts/RobotoMono-Regular.ttf\n\nasset\n\nfonts/RobotoMono-Bold.ttf\n\nweight", "source": "https://docs.flutter.dev/cookbook/design/fonts/index.html"} {"id": "b0995cd6c3a2-8", "text": "fonts/RobotoMono-Bold.ttf\n\nweight\n\n700\n\nuses-material-design\n\ntrue\n\nmain.dart\n\nUpdate the UI based on orientation\n\nUse themes to share colors and font styles", "source": "https://docs.flutter.dev/cookbook/design/fonts/index.html"} {"id": "e160c5218499-0", "text": "Design\n\nCookbook\n\nDesign\n\nAdd a drawer to a screen\n\nDisplay a snackbar\n\nExport fonts from a package\n\nUpdate the UI based on orientation\n\nUse a custom font\n\nUse themes to share colors and font styles\n\nWork with tabs", "source": "https://docs.flutter.dev/cookbook/design/index.html"} {"id": "e20ae02519c9-0", "text": "Export fonts from a package\n\nUse a custom font\n\nUpdate the UI based on orientation\n\nCookbook\n\nDesign\n\nUpdate the UI based on orientation\n\n1. Build a GridView with two columns\n\n2. Use an OrientationBuilder to change the number of columns\n\nInteractive example\n\nIn some situations,\nyou want to update the display of an app when the user\nrotates the screen from portrait mode to landscape mode. For example,\nthe app might show one item after the next in portrait mode,\nyet put those same items side-by-side in landscape mode.\n\nIn Flutter, you can build different layouts depending\non a given Orientation.\nIn this example, build a list that displays two columns in\nportrait mode and three columns in landscape mode using the\nfollowing steps:\n\nBuild a GridView with two columns.\n\nUse an OrientationBuilder to change the number of columns.", "source": "https://docs.flutter.dev/cookbook/design/orientation/index.html"} {"id": "e20ae02519c9-1", "text": "Use an OrientationBuilder to change the number of columns.\n\n1. Build a GridView with two columns\n\nFirst, create a list of items to work with.\nRather than using a normal list,\ncreate a list that displays items in a grid.\nFor now, create a grid with two columns.\n\nTo learn more about working with GridViews,\nsee the Creating a grid list recipe.\n\n2. Use an OrientationBuilder to change the number of columns\n\nTo determine the app\u2019s current Orientation, use the\nOrientationBuilder widget.\nThe OrientationBuilder calculates the current Orientation by\ncomparing the width and height available to the parent widget,\nand rebuilds when the size of the parent changes.\n\nUsing the Orientation, build a list that displays two columns in portrait\nmode, or three columns in landscape mode.", "source": "https://docs.flutter.dev/cookbook/design/orientation/index.html"} {"id": "e20ae02519c9-2", "text": "Note:\n If you\u2019re interested in the orientation of the screen,\n rather than the amount of space available to the parent,\n use MediaQuery.of(context).orientation instead of an\n OrientationBuilder widget.\n\nInteractive example\n\nExport fonts from a package\n\nUse a custom font", "source": "https://docs.flutter.dev/cookbook/design/orientation/index.html"} {"id": "1b44b7ec3972-0", "text": "Display a snackbar\n\nUpdate the UI based on orientation\n\nExport fonts from a package\n\nCookbook\n\nDesign\n\nExport fonts from a package\n\n1. Add a font to a package\n\n2. Add the package and fonts to the app\n\nAdd the package to the app\nDeclare the font assets\n\n3. Use the font\n\nComplete example\n\nFonts\npubspec.yaml\nmain.dart\n\nRather than declaring a font as part of an app,\nyou can declare a font as part of a separate package.\nThis is a convenient way to share the same font across\nseveral different projects,\nor for coders publishing their packages to pub.dev.\nThis recipe uses the following steps:\n\nAdd a font to a package.\n\nAdd the package and font to the app.\n\nUse the font.", "source": "https://docs.flutter.dev/cookbook/design/package-fonts/index.html"} {"id": "1b44b7ec3972-1", "text": "Add the package and font to the app.\n\nUse the font.\n\nNote:\n Check out the google_fonts package for direct access\n to almost 1000 open-sourced font families.\n\n1. Add a font to a package\n\nTo export a font from a package, you need to import the font files into the\nlib folder of the package project. You can place font files directly in the\nlib folder or in a subdirectory, such as lib/fonts.\n\nIn this example, assume you\u2019ve got a Flutter library called\nawesome_package with fonts living in a lib/fonts folder.\n\n2. Add the package and fonts to the app\n\nNow you can use the fonts in the package by\nupdating the pubspec.yaml in the app\u2019s root directory.\n\nAdd the package to the app\n\ndependencies\n\nawesome_package\n\n\n\nDeclare the font assets", "source": "https://docs.flutter.dev/cookbook/design/package-fonts/index.html"} {"id": "1b44b7ec3972-2", "text": "\n\nDeclare the font assets\n\nNow that you\u2019ve imported the package, tell Flutter where to\nfind the fonts from the awesome_package.\n\nTo declare package fonts, prefix the path to the font with\npackages/awesome_package.\nThis tells Flutter to look in the lib folder\nof the package for the font.\n\nflutter\n\nfonts\n\nfamily\n\nRaleway\n\nfonts\n\nasset\n\npackages/awesome_package/fonts/Raleway-Regular.ttf\n\nasset\n\npackages/awesome_package/fonts/Raleway-Italic.ttf\n\nstyle\n\nitalic\n\n3. Use the font\n\nUse a TextStyle to change the appearance of text.\nTo use package fonts, declare which font you\u2019d like to use and\nwhich package the font belongs to.\n\nComplete example", "source": "https://docs.flutter.dev/cookbook/design/package-fonts/index.html"} {"id": "1b44b7ec3972-3", "text": "Complete example\n\nFonts\n\nThe Raleway and RobotoMono fonts were downloaded from\nGoogle Fonts.\n\npubspec.yaml\n\nname\n\npackage_fonts\n\ndescription\n\nAn example of how to use package fonts with Flutter\n\ndependencies\n\nawesome_package\n\nflutter\n\nsdk\n\nflutter\n\ndev_dependencies\n\nflutter_test\n\nsdk\n\nflutter\n\nflutter\n\nfonts\n\nfamily\n\nRaleway\n\nfonts\n\nasset\n\npackages/awesome_package/fonts/Raleway-Regular.ttf\n\nasset\n\npackages/awesome_package/fonts/Raleway-Italic.ttf\n\nstyle\n\nitalic", "source": "https://docs.flutter.dev/cookbook/design/package-fonts/index.html"} {"id": "1b44b7ec3972-4", "text": "style\n\nitalic\n\nuses-material-design\n\ntrue\n\nmain.dart\n\nDisplay a snackbar\n\nUpdate the UI based on orientation", "source": "https://docs.flutter.dev/cookbook/design/package-fonts/index.html"} {"id": "aa5b1b9aeab9-0", "text": "Add a drawer to a screen\n\nExport fonts from a package\n\nDisplay a snackbar\n\nCookbook\n\nDesign\n\nDisplay a snackbar\n\n1. Create a Scaffold\n\n2. Display a SnackBar\n\n3. Provide an optional action\n\nInteractive example\n\nIt can be useful to briefly inform your users when certain actions\ntake place. For example, when a user swipes away a message in a list,\nyou might want to inform them that the message has been deleted.\nYou might even want to give them an option to undo the action.\n\nIn Material Design, this is the job of a SnackBar.\nThis recipe implements a snackbar using the following steps:\n\nCreate a Scaffold.\n\nDisplay a SnackBar.\n\nProvide an optional action.\n\n1. Create a Scaffold", "source": "https://docs.flutter.dev/cookbook/design/snackbars/index.html"} {"id": "aa5b1b9aeab9-1", "text": "1. Create a Scaffold\n\nWhen creating apps that follow the Material Design guidelines,\ngive your apps a consistent visual structure.\nIn this example, display the SnackBar at the bottom of the screen,\nwithout overlapping other important\nwidgets, such as the FloatingActionButton.\n\nThe Scaffold widget, from the material library,\ncreates this visual structure and ensures that important\nwidgets don\u2019t overlap.\n\n2. Display a SnackBar\n\nWith the Scaffold in place, display a SnackBar.\nFirst, create a SnackBar, then display it using ScaffoldMessenger.\n\nNote:\n To learn more, watch this short Widget of the Week video on the ScaffoldMessenger widget:\n\n3. Provide an optional action", "source": "https://docs.flutter.dev/cookbook/design/snackbars/index.html"} {"id": "aa5b1b9aeab9-2", "text": "3. Provide an optional action\n\nYou might want to provide an action to the user when\nthe SnackBar is displayed.\nFor example, if the user accidentally deletes a message,\nthey might use an optional action in the SnackBar to recover\nthe message.\n\nHere\u2019s an example of providing\nan additional action to the SnackBar widget:\n\nInteractive example\n\nNote:\n In this example, the SnackBar displays when a user taps a button.\n For more information on working with user input,\n see the Gestures section of the cookbook.\n\nAdd a drawer to a screen\n\nExport fonts from a package", "source": "https://docs.flutter.dev/cookbook/design/snackbars/index.html"} {"id": "61deba6fea6d-0", "text": "Use themes to share colors and font styles\n\nCreate a download button\n\nWork with tabs\n\nCookbook\n\nDesign\n\nWork with tabs\n\n1. Create a TabController\n\n2. Create the tabs\n\n3. Create content for each tab\n\nInteractive example\n\nWorking with tabs is a common pattern in apps that follow the\nMaterial Design guidelines.\nFlutter includes a convenient way to create tab layouts as part of\nthe material library.\n\nNote:\n To create tabs in a Cupertino app, see the\n Building a Cupertino app with Flutter codelab.\n\nThis recipe creates a tabbed example using the following steps;\n\nCreate a TabController.\n\nCreate the tabs.\n\nCreate content for each tab.\n\n1. Create a TabController", "source": "https://docs.flutter.dev/cookbook/design/tabs/index.html"} {"id": "61deba6fea6d-1", "text": "Create content for each tab.\n\n1. Create a TabController\n\nFor tabs to work, you need to keep the selected tab and content\nsections in sync.\nThis is the job of the TabController.\n\nEither create a TabController manually,\nor automatically by using a DefaultTabController widget.\n\nUsing DefaultTabController is the simplest option, since it\ncreates a TabController and makes it available to all descendant widgets.\n\n2. Create the tabs\n\nWhen a tab is selected, it needs to display content.\nYou can create tabs using the TabBar widget.\nIn this example, create a TabBar with three\nTab widgets and place it within an AppBar.\n\nBy default, the TabBar looks up the widget tree for the nearest\nDefaultTabController. If you\u2019re manually creating a TabController,\npass it to the TabBar.\n\n3. Create content for each tab", "source": "https://docs.flutter.dev/cookbook/design/tabs/index.html"} {"id": "61deba6fea6d-2", "text": "3. Create content for each tab\n\nNow that you have tabs, display content when a tab is selected.\nFor this purpose, use the TabBarView widget.\n\nNote:\n Order is important and must correspond to the order of the tabs in the\n TabBar.\n\nInteractive example\n\nUse themes to share colors and font styles\n\nCreate a download button", "source": "https://docs.flutter.dev/cookbook/design/tabs/index.html"} {"id": "b0159abcb281-0", "text": "Use a custom font\n\nWork with tabs\n\nUse themes to share colors and font styles\n\nCookbook\n\nDesign\n\nThemes\n\nCreating an app theme\n\nThemes for part of an application\n\nCreating unique ThemeData\nExtending the parent theme\n\nUsing a Theme\n\nInteractive example\n\nTo share colors and font styles throughout an app, use themes.\nYou can either define app-wide themes, or use Theme widgets\nthat define the colors and font styles for a particular part\nof the application. In fact,\napp-wide themes are just Theme widgets created at\nthe root of an app by the MaterialApp.\n\nAfter defining a Theme, use it within your own widgets. Flutter\u2019s\nMaterial widgets also use your Theme to set the background\ncolors and font styles for AppBars, Buttons, Checkboxes, and more.\n\nCreating an app theme", "source": "https://docs.flutter.dev/cookbook/design/themes/index.html"} {"id": "b0159abcb281-1", "text": "Creating an app theme\n\nTo share a Theme across an entire app, provide a\nThemeData to the MaterialApp constructor.\n\nIf no theme is provided, Flutter creates a default theme for you.\n\nSee the ThemeData documentation to see all of\nthe colors and fonts you can define.\n\nThemes for part of an application\n\nTo override the app-wide theme in part of an application,\nwrap a section of the app in a Theme widget.\n\nThere are two ways to approach this: creating a unique ThemeData,\nor extending the parent theme.\n\nNote:\n To learn more, watch this short Widget of the Week video on the Theme widget:\n\nCreating unique ThemeData\n\nIf you don\u2019t want to inherit any application colors or font styles,\ncreate a ThemeData() instance and pass that to the Theme widget.\n\nExtending the parent theme", "source": "https://docs.flutter.dev/cookbook/design/themes/index.html"} {"id": "b0159abcb281-2", "text": "Extending the parent theme\n\nRather than overriding everything, it often makes sense to extend the parent\ntheme. You can handle this by using the copyWith() method.\n\nUsing a Theme\n\nNow that you\u2019ve defined a theme, use it within the widgets\u2019 build()\nmethods by using the Theme.of(context) method.\n\nThe Theme.of(context) method looks up the widget tree and returns\nthe nearest Theme in the tree. If you have a standalone\nTheme defined above your widget, that\u2019s returned.\nIf not, the app\u2019s theme is returned.\n\nIn fact, the FloatingActionButton uses this technique to find the\naccentColor.\n\nInteractive example\n\nUse a custom font\n\nWork with tabs", "source": "https://docs.flutter.dev/cookbook/design/themes/index.html"} {"id": "f957251ff109-0", "text": "Work with tabs\n\nCreate a nested navigation flow\n\nCreate a download button\n\nCookbook\n\nEffects\n\nCreate a download button\n\nDefine a new stateless widget\n\nDefine the button\u2019s possible visual states\n\nDisplay the button shape\n\nDisplay the button text\n\nDisplay a spinner while fetching download\n\nDisplay the progress and a stop button while downloading\n\nAdd button tap callbacks\n\nInteractive example\n\nApps are filled with buttons that execute long-running behaviors.\nFor example, a button might trigger a download,\nwhich starts a download process, receives data over time,\nand then provides access to the downloaded asset. \nIt\u2019s helpful to show the user the progress of a\nlong-running process, and the button itself is a good place\nto provide this feedback. In this recipe,\nyou\u2019ll build a download button that transitions through\nmultiple visual states, based on the status of an app download.", "source": "https://docs.flutter.dev/cookbook/effects/download-button/index.html"} {"id": "f957251ff109-1", "text": "The following animation shows the app\u2019s behavior:\n\nDefine a new stateless widget\n\nYour button widget needs to change its appearance over time.\nTherefore, you need to implement your button with a custom\nstateless widget.\n\nDefine a new stateless widget called DownloadButton.\n\nDefine the button\u2019s possible visual states\n\nThe download button\u2019s visual presentation is based on a\ngiven download status. Define the possible states of\nthe download, and then update DownloadButton to accept\na DownloadStatus and a Duration for how long the button\nshould take to animate from one status to another.\n\nDisplay the button shape\n\nThe download button changes its shape based on the download\nstatus. The button displays a grey, rounded rectangle during\nthe notDownloaded and downloaded states.\nThe button displays a transparent circle during the\nfetchingDownload and downloading states.\n\nBased on the current DownloadStatus,\nbuild an AnimatedContainer with a \nShapeDecoration that displays a rounded\nrectangle or a circle.", "source": "https://docs.flutter.dev/cookbook/effects/download-button/index.html"} {"id": "f957251ff109-2", "text": "documentation\nor in a dedicated video in the Flutter\n\nYouTube channel.\n\nFor now, the AnimatedContainer child is just a SizedBox because we will come back at it in another step.\n\nYou might wonder why you need a ShapeDecoration\nwidget for a transparent circle, given that it\u2019s invisible.\nThe purpose of the invisible circle is to orchestrate\nthe desired animation. The AnimatedContainer begins with a rounded \nrectangle. When the DownloadStatus changes to fetchingDownload,\nthe AnimatedContainer needs to animate from a rounded rectangle\nto a circle, and then fade out as the animation takes place.\nThe only way to implement this animation is to define both\nthe beginning shape of a rounded rectangle and the \nending shape of a circle. But, you don\u2019t want the final\ncircle to be visible, so you make it transparent,\nwhich causes an animated fade-out.\n\nDisplay the button text\n\nThe DownloadButton displays GET during the\nnotDownloaded phase, OPEN during the downloaded\nphase, and no text in between.", "source": "https://docs.flutter.dev/cookbook/effects/download-button/index.html"} {"id": "f957251ff109-3", "text": "Add widgets to display text during each download phase,\nand animate the text\u2019s opacity in between. Add the text\nwidget tree as a child of the AnimatedContainer in the\nbutton wrapper widget.\n\nDisplay a spinner while fetching download\n\nDuring the fetchingDownload phase, the DownloadButton\ndisplays a radial spinner. This spinner fades in from\nthe notDownloaded phase and fades out to \nthe fetchingDownload phase.\n\nImplement a radial spinner that sits on top of the button\nshape and fades in and out at the appropriate times.\n\nWe have removed the ButtonShapeWidget\u2019s constructor to keep the\nfocus on its build method and the Stack widget we\u2019ve added.\n\nDisplay the progress and a stop button while downloading", "source": "https://docs.flutter.dev/cookbook/effects/download-button/index.html"} {"id": "f957251ff109-4", "text": "Display the progress and a stop button while downloading\n\nAfter the fetchingDownload phase is the downloading phase.\nDuring the downloading phase, the DownloadButton\nreplaces the radial progress spinner with a growing\nradial progress bar. The DownloadButton also displays a stop \nbutton icon so that the user can cancel an in-progress download.\n\nAdd a progress property to the DownloadButton widget,\nand then update the progress display to switch to a radial\nprogress bar during the downloading phase.\n\nNext, add a stop button icon at the center of the\nradial progress bar.\n\nAdd button tap callbacks\n\nThe last detail that your DownloadButton needs is the\nbutton behavior. The button must do things when the user taps it.\n\nAdd widget properties for callbacks to start a download,\ncancel a download, and open a download.\n\nFinally, wrap DownloadButton\u2019s existing widget tree\nwith a GestureDetector widget, and forward the\ntap event to the corresponding callback property.", "source": "https://docs.flutter.dev/cookbook/effects/download-button/index.html"} {"id": "f957251ff109-5", "text": "Congratulations! You have a button that changes its display\ndepending on which phase the button is in: not downloaded,\nfetching download, downloading, and downloaded.\nNow, the user can tap to start a download, tap to cancel an \nin-progress download, and tap to open a completed download.\n\nInteractive example\n\nRun the app:\n\nClick the GET button to kick off a\nsimulated download.\n\nThe button changes to a progress indicator\nto simulate an in-progress download.\n\nWhen the simulated download is complete, the\nbutton transitions to OPEN, to indicate\nthat the app is ready for the user\nto open the downloaded asset.\n\nWork with tabs\n\nCreate a nested navigation flow", "source": "https://docs.flutter.dev/cookbook/effects/download-button/index.html"} {"id": "d8b85c53c7c2-0", "text": "Create gradient chat bubbles\n\nBuild a form with validation\n\nDrag a UI element\n\nCookbook\n\nEffects\n\nDrag a UI element\n\nPress and drag\n\nDrop the draggable\n\nAdd a menu item to a cart\n\nInteractive example\n\nDrag and drop is a common mobile app interaction.\nAs the user long presses (sometimes called touch & hold)\non a widget, another widget appears beneath the\nuser\u2019s finger, and the user drags the widget to a\nfinal location and releases it.\nIn this recipe, you\u2019ll build a drag-and-drop interaction\nwhere the user long presses on a choice of food,\nand then drags that food to the picture of the customer who\nis paying for it.\n\nThe following animation shows the app\u2019s behavior:", "source": "https://docs.flutter.dev/cookbook/effects/drag-a-widget/index.html"} {"id": "d8b85c53c7c2-1", "text": "The following animation shows the app\u2019s behavior:\n\nThis recipe begins with a prebuilt list of menu items and\na row of customers.\nThe first step is to recognize a long press\nand display a draggable photo of a menu item.\n\nPress and drag\n\nFlutter provides a widget called LongPressDraggable\nthat provides the exact behavior that you need to begin\na drag-and-drop interaction. A LongPressDraggable\nwidget recognizes when a long press occurs and then \ndisplays a new widget near the user\u2019s finger.\nAs the user drags, the widget follows the user\u2019s finger.\nLongPressDraggable gives you full control over the \nwidget that the user drags.\n\nEach menu list item is displayed with a custom\nMenuListItem widget.\n\nWrap the MenuListItem widget with a LongPressDraggable widget.", "source": "https://docs.flutter.dev/cookbook/effects/drag-a-widget/index.html"} {"id": "d8b85c53c7c2-2", "text": "Wrap the MenuListItem widget with a LongPressDraggable widget.\n\nIn this case, when the user long presses on the\nMenuListItem widget, the LongPressDraggable\nwidget displays a DraggingListItem.\nThis DraggingListItem displays a photo of the\nselected food item, centered beneath \nthe user\u2019s finger.\n\nThe dragAnchorStrategy property is set to\npointerDragAnchorStrategy.\nThis property value instructs LongPressDraggable\nto base the DraggableListItem\u2019s position on the \nuser\u2019s finger. As the user moves a finger,\nthe DraggableListItem moves with it.\n\nDragging and dropping is of little use if no information\nis transmitted when the item is dropped.\nFor this reason, LongPressDraggable takes a data parameter. \nIn this case, the type of data is Item,\nwhich holds information about the \nfood menu item that the user pressed on.", "source": "https://docs.flutter.dev/cookbook/effects/drag-a-widget/index.html"} {"id": "d8b85c53c7c2-3", "text": "The data associated with a LongPressDraggable\nis sent to a special widget called DragTarget,\nwhere the user releases the drag gesture.\nYou\u2019ll implement the drop behavior next.\n\nDrop the draggable\n\nThe user can drop a LongPressDraggable wherever they choose,\nbut dropping the draggable has no effect unless it\u2019s dropped\non top of a DragTarget. When the user drops a draggable on\ntop of a DragTarget widget, the DragTarget widget \ncan either accept or reject the data from the draggable.\n\nIn this recipe, the user should drop a menu item on a\nCustomerCart widget to add the menu item to the user\u2019s cart.\n\nWrap the CustomerCart widget with a DragTarget widget.\n\nThe DragTarget displays your existing widget and\nalso coordinates with LongPressDraggable to recognize\nwhen the user drags a draggable on top of the DragTarget.\nThe DragTarget also recognizes when the user drops\na draggable on top of the DragTarget widget.", "source": "https://docs.flutter.dev/cookbook/effects/drag-a-widget/index.html"} {"id": "d8b85c53c7c2-4", "text": "When the user drops a draggable on the DragTarget widget,\nthe onAccept callback is invoked. This is when you get\nto decide whether or not to accept the data that was dropped.\nIn this case, the item is always accepted and processed. \nYou might choose to inspect the incoming item to make a\ndifferent decision.\n\nNotice that the type of item dropped on DragTarget\nmust match the type of the item dragged from LongPressDraggable.\nIf the types are not compatible, then \nthe onAccept method isn\u2019t invoked.\n\nWith a DragTarget widget configured to accept your\ndesired data, you can now transmit data from one part\nof your UI to another by dragging and dropping.\n\nIn the next step,\nyou update the customer\u2019s cart with the dropped menu item.\n\nAdd a menu item to a cart\n\nEach customer is represented by a Customer object,\nwhich maintains a cart of items and a price total.", "source": "https://docs.flutter.dev/cookbook/effects/drag-a-widget/index.html"} {"id": "d8b85c53c7c2-5", "text": "The CustomerCart widget displays the customer\u2019s photo,\nname, total, and item count based on a Customer instance.\n\nTo update a customer\u2019s cart when a menu item is dropped,\nadd the dropped item to the associated Customer object.\n\nThe _itemDroppedOnCustomerCart method is invoked in\nonAccept() when the user drops a menu item on a\nCustomerCart widget. By adding the dropped item to the \ncustomer object, and invoking setState() to cause a\nlayout update, the UI refreshes with the new customer\u2019s\nprice total and item count.\n\nCongratulations! You have a drag-and-drop interaction\nthat adds food items to a customer\u2019s shopping cart.\n\nInteractive example\n\nRun the app:\n\nScroll through the food items.\n\nPress and hold on one with your\nfinger or click and hold with the\nmouse.\n\nWhile holding, the food item\u2019s image\nwill appear above the list.", "source": "https://docs.flutter.dev/cookbook/effects/drag-a-widget/index.html"} {"id": "d8b85c53c7c2-6", "text": "While holding, the food item\u2019s image\nwill appear above the list.\n\nDrag the image and drop it on one of the\npeople at the bottom of the screen.\nThe text under the image updates to\nreflect the charge for that person.\nYou can continue to add food items\nand watch the charges accumulate.\n\nCreate gradient chat bubbles\n\nBuild a form with validation", "source": "https://docs.flutter.dev/cookbook/effects/drag-a-widget/index.html"} {"id": "a9e96c33aff5-0", "text": "Create a typing indicator\n\nCreate gradient chat bubbles\n\nCreate an expandable FAB\n\nCookbook\n\nEffects\n\nCreate an expandable FAB\n\nCreate an ExpandableFab widget\n\nFAB cross-fade\n\nCreate an ActionButton widget\n\nExpand and collapse the action buttons\n\nInteractive example\n\nA Floating Action Button (FAB) is a round button that\nfloats near the bottom right of a content area.\nThis button represents the primary action for the\ncorresponding content, but sometimes, there is no primary action.\nInstead, there are a few critical actions that the user might take.\nIn this case, you could create an expandable FAB like the one shown\nin the following figure. When pressed, this expandable FAB spawns\nmultiple, other action buttons. Each button corresponds to one of\nthose critical actions.\n\nThe following animation shows the app\u2019s behavior:", "source": "https://docs.flutter.dev/cookbook/effects/expandable-fab/index.html"} {"id": "a9e96c33aff5-1", "text": "The following animation shows the app\u2019s behavior:\n\nCreate an ExpandableFab widget\n\nStart by creating a new stateful widget called ExpandableFab.\nThis widget displays the primary FAB and coordinates the expansion\nand collapse of the other action buttons. The widget takes\nin parameters for whether or not the ExpandedFab begins in\nthe expanded position, what the maximum distance of each action button is,\nand a list of children. You\u2019ll use the list later to provide\nthe other action buttons.\n\nFAB cross-fade\n\nThe ExpandableFab displays a blue edit button when collapsed\nand a white close button when expanded. When expanding and collapsing,\nthese two buttons scale and fade between one another.\n\nImplement the expand and collapse cross-fade between the two different FABs.\n\nThe open button sits on top of the close button within a Stack,\nallowing for the visual appearance of a cross-fade as the top button\nappears and disappears.", "source": "https://docs.flutter.dev/cookbook/effects/expandable-fab/index.html"} {"id": "a9e96c33aff5-2", "text": "To achieve the cross-fade animation, the open button uses an\nAnimatedContainer with a scale transform and an AnimatedOpacity.\nThe open button scales down and fades out when the ExpandableFab\ngoes from collapsed to expanded. Then, the open button scales up\nand fades in when the ExpandableFab goes from expanded to collapsed.\n\nYou\u2019ll notice that the open button is wrapped with an\nIgnorePointer widget. This is because the open button always exists,\neven when it\u2019s transparent. Without the IgnorePointer,\nthe open button always receives the tap event,\neven when the close button is visible.\n\nCreate an ActionButton widget\n\nEach of the buttons that expand from the ExpandableFab\nhave the same design. They\u2019re blue circles with white icons.\nMore precisely, the button background color is the ColorScheme.secondary\ncolor, and the icon color is ColorScheme.onSecondary.\n\nDefine a new stateless widget called ActionButton to display\nthese round buttons.", "source": "https://docs.flutter.dev/cookbook/effects/expandable-fab/index.html"} {"id": "a9e96c33aff5-3", "text": "Define a new stateless widget called ActionButton to display\nthese round buttons.\n\nPass a few instances of this new ActionButton widget into your\nExpandableFab.\n\nExpand and collapse the action buttons\n\nThe child ActionButtons should fly out from under the open\nFAB when expanded. Then, the child ActionButtons should\nfly back under the open FAB when collapsed.\nThis motion requires explicit (x,y) positioning of each\nActionButton and an Animation to choreograph changes to\nthose (x,y) positions over time.\n\nIntroduce an AnimationController and an Animation to\ncontrol the rate at which the various ActionButtons expand and collapse.\n\nNext, introduce a new stateless widget called _ExpandingActionButton,\nand configure this widget to animate and position an individual ActionButton. The ActionButton is provided as a generic Widget called child.\n\nFinally, use the new _ExpandingActionButton widget\nwithin the ExpandableFab to complete the exercise.", "source": "https://docs.flutter.dev/cookbook/effects/expandable-fab/index.html"} {"id": "a9e96c33aff5-4", "text": "Congratulations! You now have an expandable FAB.\n\nInteractive example\n\nRun the app:\n\nClick the FAB in the lower-right corner,\nrepresented with an Edit icon.\nIt fans out to 3 buttons and is itself replaced by\na close button, represented by an X.\n\nClick the close button to see the expanded\nbuttons fly back to the original FAB and\nthe X is replaced by the Edit icon.\n\nExpand the FAB again, and click on any\nof the 3 satellite buttons to see a dialog\nrepresenting that button\u2019s action.\n\nCreate a typing indicator\n\nCreate gradient chat bubbles", "source": "https://docs.flutter.dev/cookbook/effects/expandable-fab/index.html"} {"id": "046373897162-0", "text": "Create an expandable FAB\n\nDrag a UI element\n\nCreate gradient chat bubbles\n\nCookbook\n\nEffects\n\nCreate gradient chat bubbles\n\nUnderstand the challenge\n\nReplace original background widget\n\nCreate a custom painter\n\nProvide access to scrolling information\n\nPaint a full-screen bubble gradient\n\nRecap\n\nTraditional chat apps display messages in chat bubbles\nwith solid color backgrounds. Modern chat apps display\nchat bubbles with gradients that are based \non the bubbles\u2019 position on the screen.\nIn this recipe, you\u2019ll modernize the chat UI by implementing\ngradient backgrounds for the chat bubbles.\n\nThe following animation shows the app\u2019s behavior:\n\nUnderstand the challenge", "source": "https://docs.flutter.dev/cookbook/effects/gradient-bubbles/index.html"} {"id": "046373897162-1", "text": "The following animation shows the app\u2019s behavior:\n\nUnderstand the challenge\n\nThe traditional chat bubble solution probably uses a\nDecoratedBox or a similar widget to paint a rounded\nrectangle behind each chat message. That approach is \ngreat for a solid color or even for a gradient that\nrepeats in every chat bubble. However, modern,\nfull-screen, gradient bubble backgrounds require \na different approach. The full-screen gradient,\ncombined with bubbles scrolling up and down the screen,\nrequires an approach that allows you to make painting \ndecisions based on layout information.", "source": "https://docs.flutter.dev/cookbook/effects/gradient-bubbles/index.html"} {"id": "046373897162-2", "text": "Each bubble\u2019s gradient requires knowledge of the\nbubble\u2019s location on the screen. This means that\nthe painting behavior requires access to layout information.\nSuch painting behavior isn\u2019t possible with typical widgets \nbecause widgets like Container and DecoratedBox\nmake decisions about background colors before layout occurs,\nnot after. In this case, because you require custom painting\nbehavior, but you don\u2019t require custom layout behavior \nor custom hit test behavior, a CustomPainter is\na great choice to get the job done.\n\nNote:\n In cases where you need control over the child layout,\n but you don\u2019t need control over the painting or hit testing,\n consider using a Flow widget.\n\nIn cases where you need control over the layout,\n painting, and hit testing, \n consider defining a custom RenderBox.\n\nReplace original background widget", "source": "https://docs.flutter.dev/cookbook/effects/gradient-bubbles/index.html"} {"id": "046373897162-3", "text": "Replace original background widget\n\nReplace the widget responsible for drawing the\nbackground with a new stateless widget called\nBubbleBackground. Include a colors property to \nrepresent the full-screen gradient that should be\napplied to the bubble.\n\nCreate a custom painter\n\nProvide access to scrolling information\n\nPaint a full-screen bubble gradient\n\nCongratulations! You now have a modern, chat bubble UI.\n\nNote:\n The recipe doesn\u2019t yet work on the web because\n Flutter doesn\u2019t yet support Paint shaders.\n\nInheritedWidget documentation\n for more information about these types of dependencies.\n\nRecap", "source": "https://docs.flutter.dev/cookbook/effects/gradient-bubbles/index.html"} {"id": "046373897162-4", "text": "Recap\n\nThe fundamental challenge when painting based on the\nscroll position, or the screen position in general,\nis that the painting behavior must occur after the\nlayout phase is complete. CustomPaint is a unique\nwidget that allows you to execute custom painting\nbehaviors after the layout phase is complete.\nIf you execute the painting behaviors after the layout phase, \nthen you can base your painting decisions on the layout\ninformation, such as the position of the CustomPaint\nwidget within a Scrollable or within the screen.\n\nNote:\n This recipe doesn\u2019t provide an interactive DartPad because\n Paint shaders have not yet been implemented for the web.\n You can run this recipe on a mobile or desktop device by\n cloning the example code. See the \u201cGradient Bubbles\u201d\n example under the \u201ccookbook\u201d directory.\n\nCreate an expandable FAB\n\nDrag a UI element", "source": "https://docs.flutter.dev/cookbook/effects/gradient-bubbles/index.html"} {"id": "569481dcb67d-0", "text": "Effects\n\nCookbook\n\nEffects\n\nCreate a download button\n\nCreate a nested navigation flow\n\nCreate a photo filter carousel\n\nCreate a scrolling parallax effect\n\nCreate a shimmer loading effect\n\nCreate a staggered menu animation\n\nCreate a typing indicator\n\nCreate an expandable FAB\n\nCreate gradient chat bubbles\n\nDrag a UI element", "source": "https://docs.flutter.dev/cookbook/effects/index.html"} {"id": "5edcbedc41f9-0", "text": "Create a download button\n\nCreate a photo filter carousel\n\nCreate a nested navigation flow\n\nCookbook\n\nEffects\n\nCreate a nested navigation flow\n\nPrepare for navigation\n\nDisplay an app bar for the setup flow\n\nGenerate nested routes\n\nInteractive example\n\nApps accumulate dozens and then hundreds of routes over time.\nSome of your routes make sense as top-level (global) routes.\nFor example, \u201c/\u201d, \u201cprofile\u201d, \u201ccontact\u201d, \u201csocial_feed\u201d are all\npossible top-level routes within your app. \nBut, imagine that you defined every possible route in your\ntop-level Navigator widget. The list would be very long,\nand many of these routes would \nbe better handled nested within another widget.", "source": "https://docs.flutter.dev/cookbook/effects/nested-nav/index.html"} {"id": "5edcbedc41f9-1", "text": "Consider an Internet of Things (IoT) setup flow for a wireless\nlight bulb that you control with your app.\nThis setup flow consists of 4 pages: \nfind nearby bulbs, select the bulb that you want to add,\nadd the bulb, and then complete the setup.\nYou could orchestrate this behavior from your top-level \nNavigator widget. However, it makes more sense to define a second, \nnested Navigator widget within your SetupFlow widget,\nand let the nested Navigator take ownership over the 4 pages\nin the setup flow. This delegation of navigation facilitates\ngreater local control, which is \ngenerally preferable when developing software.\n\nThe following animation shows the app\u2019s behavior:\n\nIn this recipe, you implement a four-page IoT setup\nflow that maintains its own navigation nested beneath\nthe top-level Navigator widget.\n\nPrepare for navigation", "source": "https://docs.flutter.dev/cookbook/effects/nested-nav/index.html"} {"id": "5edcbedc41f9-2", "text": "Prepare for navigation\n\nThis IoT app has two top-level screens,\nalong with the setup flow. Define these \nroute names as constants so that they can\nbe referenced within code.\n\nThe home and settings screens are referenced with\nstatic names. The setup flow pages, however,\nuse two paths to create their route names: \na /setup/ prefix followed by the name of the specific page.\nBy combining the two paths, your Navigator can determine\nthat a route name is intended for the setup flow without\nrecognizing all the individual pages associated with \nthe setup flow.\n\nThe top-level Navigator isn\u2019t responsible for identifying\nindividual setup flow pages. Therefore, your top-level\nNavigator needs to parse the incoming route name to\nidentify the setup flow prefix. Needing to parse the route name \nmeans that you can\u2019t use the routes property of your top-level\nNavigator. Instead, you must provide a function for the\nonGenerateRoute property.", "source": "https://docs.flutter.dev/cookbook/effects/nested-nav/index.html"} {"id": "5edcbedc41f9-3", "text": "Implement onGenerateRoute to return the appropriate widget\nfor each of the three top-level paths.\n\nNotice that the home and settings routes are matched with exact \nroute names. However, the setup flow route condition only\nchecks for a prefix. If the route name contains the setup\nflow prefix, then the rest of the route name is ignored\nand passed on to the SetupFlow widget to process. \nThis splitting of the route name is what allows the top-level\nNavigator to be agnostic toward the various subroutes\nwithin the setup flow.\n\nCreate a stateful widget called SetupFlow that\naccepts a route name.\n\nDisplay an app bar for the setup flow\n\nThe setup flow displays a persistent app bar\nthat appears across all pages.\n\nReturn a Scaffold widget from your SetupFlow\nwidget\u2019s build() method, \nand include the desired AppBar widget.", "source": "https://docs.flutter.dev/cookbook/effects/nested-nav/index.html"} {"id": "5edcbedc41f9-4", "text": "The app bar displays a back arrow and exits the setup\nflow when the back arrow is pressed. However,\nexiting the flow causes the user to lose all progress. \nTherefore, the user is prompted to confirm whether they\nwant to exit the setup flow.\n\nPrompt the user to confirm exiting the setup flow,\nand ensure that the prompt appears when the user\npresses the hardware back button on Android.\n\nWhen the user taps the back arrow in the app bar,\nor presses the back button on Android,\nan alert dialog pops up to confirm that the\nuser wants to leave the setup flow.\nIf the user presses Leave, then the setup flow pops itself \nfrom the top-level navigation stack.\nIf the user presses Stay, then the action is ignored.\n\nYou might notice that the Navigator.pop()\nis invoked by both the Leave and \nStay buttons. To be clear,\nthis pop() action pops the alert dialog off \nthe navigation stack, not the setup flow.", "source": "https://docs.flutter.dev/cookbook/effects/nested-nav/index.html"} {"id": "5edcbedc41f9-5", "text": "Generate nested routes\n\nThe setup flow\u2019s job is to display the appropriate\npage within the flow.\n\nAdd a Navigator widget to SetupFlow,\nand implement the onGenerateRoute property.\n\nThe _onGenerateRoute function works the same as\nfor a top-level Navigator. A RouteSettings\nobject is passed into the function,\nwhich includes the route\u2019s name.\nBased on that route name,\none of four flow pages is returned.\n\nThe finished page provides the user with a Finish\nbutton. When the user taps Finish,\nthe _exitSetup callback is invoked, which pops the entire \nsetup flow off the top-level Navigator stack,\ntaking the user back to the home screen.\n\nCongratulations!\nYou implemented nested navigation with four subroutes.\n\nInteractive example\n\nRun the app:", "source": "https://docs.flutter.dev/cookbook/effects/nested-nav/index.html"} {"id": "5edcbedc41f9-6", "text": "Interactive example\n\nRun the app:\n\nOn the Add your first bulb screen,\nclick the FAB, shown with a plus sign, +.\nThis brings you to the Select a nearby device\nscreen. A single bulb is listed.\n\nClick the listed bulb. A Finished! screen appears.\n\nClick the Finished button to return to the\nfirst screen.\n\nCreate a download button\n\nCreate a photo filter carousel", "source": "https://docs.flutter.dev/cookbook/effects/nested-nav/index.html"} {"id": "77a6d5fd7e8a-0", "text": "Create a photo filter carousel\n\nCreate a shimmer loading effect\n\nCreate a scrolling parallax effect\n\nCookbook\n\nEffects\n\nCreate a scrolling parallax effect\n\nCreate a list to hold the parallax items\n\nDisplay items with text and a static image\n\nImplement the parallax effect\n\nInteractive example\n\nWhen you scroll a list of cards (containing images,\nfor example) in an app, you might notice that those\nimages appear to scroll more slowly than the rest of the \nscreen. It almost looks as if the cards in the list\nare in the foreground, but the images themselves sit\nfar off in the distant background. This effect is \nknown as parallax.\n\nIn this recipe, you create the parallax effect by building\na list of cards (with rounded corners containing some text).\nEach card also contains an image.\nAs the cards slide up the screen,\nthe images within each card slide down.", "source": "https://docs.flutter.dev/cookbook/effects/parallax-scrolling/index.html"} {"id": "77a6d5fd7e8a-1", "text": "The following animation shows the app\u2019s behavior:\n\nCreate a list to hold the parallax items\n\nTo display a list of parallax scrolling images,\nyou must first display a list.\n\nCreate a new stateless widget called ParallaxRecipe.\nWithin ParallaxRecipe, build a widget tree with a\nSingleChildScrollView and a Column, which forms \na list.\n\nDisplay items with text and a static image\n\nEach list item displays a rounded-rectangle background\nimage, exemplifying one of seven locations in the world.\nStacked on top of that background image is the \nname of the location and its country,\npositioned in the lower left. Between the \nbackground image and the text is a dark gradient,\nwhich improves the legibility \nof the text against the background.", "source": "https://docs.flutter.dev/cookbook/effects/parallax-scrolling/index.html"} {"id": "77a6d5fd7e8a-2", "text": "Implement a stateless widget called LocationListItem\nthat consists of the previously mentioned visuals.\nFor now, use a static Image widget for the background.\nLater, you\u2019ll replace that widget with a parallax version.\n\nNext, add the list items to your ParallaxRecipe widget.\n\nYou now have a typical, scrollable list of cards\nthat displays seven unique locations in the world.\nIn the next step, you add a parallax effect to the \nbackground image.\n\nImplement the parallax effect\n\nA parallax scrolling effect is achieved by slightly\npushing the background image in the opposite direction\nof the rest of the list. As the list items slide up \nthe screen, each background image slides slightly downward.\nConversely, as the list items slide down the screen,\neach background image slides slightly upward. \nVisually, this results in parallax.", "source": "https://docs.flutter.dev/cookbook/effects/parallax-scrolling/index.html"} {"id": "77a6d5fd7e8a-3", "text": "The parallax effect depends on the list item\u2019s\ncurrent position within its ancestor Scrollable.\nAs the list item\u2019s scroll position changes, the position\nof the list item\u2019s background image must also change.\nThis is an interesting problem to solve. The position\nof a list item within the Scrollable isn\u2019t \navailable until Flutter\u2019s layout phase is complete.\nThis means that the position of the background image\nmust be determined in the paint phase, which comes after \nthe layout phase. Fortunately, Flutter provides a widget\ncalled Flow, which is specifically designed to give you\ncontrol over the transform of a child widget immediately\nbefore the widget is painted. In other words,\nyou can intercept the painting phase and take control\nto reposition your child widgets however you want.\n\nNote:\n To learn more, watch this short Widget of the Week video on the Flow widget:\n\nNote:\n In cases where you need control over what a child paints,\n rather than where a child is painted,\n consider using a CustomPaint widget.", "source": "https://docs.flutter.dev/cookbook/effects/parallax-scrolling/index.html"} {"id": "77a6d5fd7e8a-4", "text": "In cases where you need control over the layout,\n painting, and hit testing, consider defining a\n custom RenderBox.\n\nWrap your background Image widget with a\nFlow widget.\n\nIntroduce a new FlowDelegate called ParallaxFlowDelegate.\n\nA FlowDelegate controls how its children are sized\nand where those children are painted. In this case,\nyour Flow widget has only one child: the background \nimage. That image must be exactly as wide as the Flow widget.\n\nReturn tight width constraints for your background image child.\n\nYour background images are now sized appropriately.\nBut, you still need to calculate the vertical position\nof each background image based on its scroll \nposition, and then paint it.\n\nThere are three critical pieces of information that\nyou need to compute the desired position of a\nbackground image:\n\nThe bounds of the ancestor Scrollable\n\nThe bounds of the individual list item", "source": "https://docs.flutter.dev/cookbook/effects/parallax-scrolling/index.html"} {"id": "77a6d5fd7e8a-5", "text": "The bounds of the individual list item\n\nThe size of the image after it\u2019s scaled down\nto fit in the list item\n\nTo look up the bounds of the Scrollable,\nyou pass a ScrollableState into your FlowDelegate.\n\nTo look up the bounds of your individual list item,\nyou pass your list item\u2019s BuildContext into your FlowDelegate.\n\nTo look up the final size of your background image,\nyou assign a GlobalKey to your Image widget,\nand then you pass that GlobalKey into your \nFlowDelegate.\n\nMake this information available to ParallaxFlowDelegate.\n\nHaving all the information needed to implement\nparallax scrolling, implement the shouldRepaint() method.\n\nNow, implement the layout calculations for the parallax effect.\n\nFirst, calculate the pixel position of a list\nitem within its ancestor Scrollable.", "source": "https://docs.flutter.dev/cookbook/effects/parallax-scrolling/index.html"} {"id": "77a6d5fd7e8a-6", "text": "First, calculate the pixel position of a list\nitem within its ancestor Scrollable.\n\nUse the pixel position of the list item to calculate its\npercentage from the top of the Scrollable.\nA list item at the top of the scrollable area should \nproduce 0%, and a list item at the bottom of the\nscrollable area should produce 100%.\n\nUse the scroll percentage to calculate an Alignment.\nAt 0%, you want Alignment(0.0, -1.0),\nand at 100%, you want Alignment(0.0, 1.0).\nThese coordinates correspond to top and bottom\nalignment, respectively.\n\nUse verticalAlignment, along with the size of the\nlist item and the size of the background image,\nto produce a Rect that determines where the \nbackground image should be positioned.\n\nUsing childRect, paint the background image with\nthe desired translation transformation.\nIt\u2019s this transformation over time that gives you the \nparallax effect.", "source": "https://docs.flutter.dev/cookbook/effects/parallax-scrolling/index.html"} {"id": "77a6d5fd7e8a-7", "text": "You need one final detail to achieve the parallax effect.\nThe ParallaxFlowDelegate repaints when the inputs change,\nbut the ParallaxFlowDelegate doesn\u2019t repaint every time\nthe scroll position changes.\n\nPass the ScrollableState\u2019s ScrollPosition to\nthe FlowDelegate superclass so that the FlowDelegate\nrepaints every time the ScrollPosition changes.\n\nCongratulations!\nYou now have a list of cards with parallax,\nscrolling background images.\n\nInteractive example\n\nRun the app:\n\nScroll up and down to observe the parallax effect.\n\nCreate a photo filter carousel\n\nCreate a shimmer loading effect", "source": "https://docs.flutter.dev/cookbook/effects/parallax-scrolling/index.html"} {"id": "35525a794e24-0", "text": "Create a nested navigation flow\n\nCreate a scrolling parallax effect\n\nCreate a photo filter carousel\n\nCookbook\n\nEffects\n\nCreate a photo filter carousel\n\nAdd a selector ring and dark gradient\n\nCreate a filter carousel item\n\nImplement the filter carousel\n\nInteractive example\n\nEverybody knows that a photo looks better with a filter.\nIn this recipe, you build a scrollable,\nfilter selection carousel.\n\nThe following animation shows the app\u2019s behavior:\n\nThis recipe begins with the photo and filters\nalready in place. Filters are applied with the\ncolor and colorBlendMode properties of the\nImage widget.\n\nAdd a selector ring and dark gradient\n\nThe selected filter circle is displayed within a\nselector ring. Additionally, a dark gradient is\nbehind the available filters, which helps the contrast \nbetween the filters and any photo that you choose.", "source": "https://docs.flutter.dev/cookbook/effects/photo-filter-carousel/index.html"} {"id": "35525a794e24-1", "text": "Create a new stateful widget called\nFilterSelector that you\u2019ll use to \nimplement the selector.\n\nAdd the FilterSelector widget to the existing\nwidget tree. Position the FilterSelector widget\non top of the photo, at the bottom and centered.\n\nWithin the FilterSelector widget,\ndisplay a selector ring on top of a \ndark gradient by using a Stack widget.\n\nThe size of the selector circle and the background gradient\ndepends on the size of an individual filter in the carousel\ncalled itemSize. The itemSize depends on the available width.\nTherefore, a LayoutBuilder widget is used to determine the\navailable space, and then you calculate the size of an \nindividual filter\u2019s itemSize.\n\nThe selector ring includes an IgnorePointer widget\nbecause when carousel interactivity is added,\nthe selector ring shouldn\u2019t interfere with \ntap and drag events.\n\nCreate a filter carousel item", "source": "https://docs.flutter.dev/cookbook/effects/photo-filter-carousel/index.html"} {"id": "35525a794e24-2", "text": "Create a filter carousel item\n\nEach filter item in the carousel displays a\ncircular image with a color applied to the image\nthat corresponds to the associated filter color.\n\nDefine a new stateless widget called FilterItem\nthat displays a single list item.\n\nImplement the filter carousel\n\nFilter items scroll to the left and right as the user drags. Scrolling requires \nsome kind of Scrollable widget.\n\nYou might consider using a horizontal ListView widget,\nbut a ListView widget positions the first element at the\nbeginning of the available space, not at \nthe center, where your selector ring sits.\n\nA PageView widget is better suited for a carousel.\nA PageView widget lays out its children from the\ncenter of the available space and provides snapping physics.\nSnapping physics is what causes an item to snap to the center, \nno matter where the user releases a drag.\n\nScrollable widget with a\n\nviewportBuilder, and place a", "source": "https://docs.flutter.dev/cookbook/effects/photo-filter-carousel/index.html"} {"id": "35525a794e24-3", "text": "Scrollable widget with a\n\nviewportBuilder, and place a\n\nFlow widget inside the\n\ndelegate property\n that allows you to position child widgets wherever\n you want, based on the current\n\nConfigure your widget tree to make space for the PageView.\n\nBuild each FilterItem widget within the\nPageView widget based on the given index.\n\nCreate a PageViewController and connect it to the\nPageView widget.\n\nWith the PageViewController added, five FilterItem\nwidgets are visible on the screen at the same time,\nand the photo filter changes as you scroll, but \nthe FilterItem widgets are still the same size.\n\nWrap each FilterItem widget with an AnimatedBuilder\nto change the visual properties of each FilterItem\nwidget as the scroll position changes.\n\nThe AnimatedBuilder widget rebuilds every time the\n_controller changes its scroll position.\nThese rebuilds allow you to change the FilterItem\nsize and opacity as the user drags.", "source": "https://docs.flutter.dev/cookbook/effects/photo-filter-carousel/index.html"} {"id": "35525a794e24-4", "text": "Calculate an appropriate scale and opacity for each\nFilterItem widget within the AnimatedBuilder and\napply those values.\n\nEach FilterItem widget now shrinks and fades\naway as it moves farther from the center of the screen.\n\nAdd a method to change the selected filter when a\nFilterItem widget is tapped.\n\nConfigure each FilterItem widget to invoke\n_onFilterTapped when tapped.\n\nCongratulations!\nYou now have a draggable, tappable photo filter carousel.\n\nInteractive example\n\nCreate a nested navigation flow\n\nCreate a scrolling parallax effect", "source": "https://docs.flutter.dev/cookbook/effects/photo-filter-carousel/index.html"} {"id": "8ee8a55b05b5-0", "text": "Create a scrolling parallax effect\n\nCreate a staggered menu animation\n\nCreate a shimmer loading effect\n\nCookbook\n\nEffects\n\nCreate a shimmer loading effect\n\nDraw the shimmer shapes\n\nPaint the shimmer gradient\n\nPaint one big shimmer\n\nAnimate the shimmer\n\nLoading times are unavoidable in application development.\nFrom a user experience (UX) perspective,\nthe most important thing is to show your users \nthat loading is taking place. One popular approach\nto communicate to users that data is loading is to\ndisplay a chrome color with a shimmer animation over \nthe shapes that approximate the type of content that is loading.\n\nThe following animation shows the app\u2019s behavior:", "source": "https://docs.flutter.dev/cookbook/effects/shimmer-loading/index.html"} {"id": "8ee8a55b05b5-1", "text": "The following animation shows the app\u2019s behavior:\n\nThis recipe begins with the content widgets defined and positioned.\nThere is also a Floating Action Button (FAB) in the bottom-right\ncorner that toggles between a loading mode and a loaded mode\nso that you can easily validate your implementation.\n\nDraw the shimmer shapes\n\nThe shapes that shimmer in this effect are independent\nfrom the actual content that eventually loads.\n\nTherefore, the goal is to display shapes that represent \nthe eventual content as accurately as possible.\n\nDisplaying accurate shapes is easy in situations where the\ncontent has a clear boundary. For example, in this recipe,\nthere are some circular images and some rounded rectangle images.\nYou can draw shapes that precisely match the outlines \nof those images.", "source": "https://docs.flutter.dev/cookbook/effects/shimmer-loading/index.html"} {"id": "8ee8a55b05b5-2", "text": "On the other hand, consider the text that appears beneath the\nrounded rectangle images. You won\u2019t know how many lines of\ntext exist until the text loads. \nTherefore, there is no point in trying to draw a rectangle\nfor every line of text. Instead, while the data is loading,\nyou draw a couple of very thin rounded rectangles that\nrepresent the text that will appear. The shape and size \ndoesn\u2019t quite match, but that is OK.\n\nStart with the circular list items at the top of the screen.\nEnsure that each CircleListItem widget displays a circle\nwith a color while the image is loading.\n\nAs long as your widgets display some kind of shape,\nyou can apply the shimmer effect in this recipe.\n\nSimilar to the CircleListItem widgets,\nensure that the CardListItem widgets \ndisplay a color where the image will appear.\nAlso, in the CardListItem widget, \nswitch between the display of the text and\nthe rectangles based on the current loading status.", "source": "https://docs.flutter.dev/cookbook/effects/shimmer-loading/index.html"} {"id": "8ee8a55b05b5-3", "text": "Your UI now renders itself differently depending on\nwhether it\u2019s loading or loaded.\nBy temporarily commenting out the image URLs,\nyou can see the two ways your UI renders.\n\nThe next goal is to paint all of the colored areas\nwith a single gradient that looks like a shimmer.\n\nPaint the shimmer gradient\n\nThe key to the effect achieved in this recipe is to use a widget \ncalled ShaderMask. The ShaderMask widget, as the name suggests,\napplies a shader to its child, but only in the areas where\nthe child already painted something. For example,\nyou\u2019ll apply a shader to only the black shapes that you \nconfigured earlier.\n\nDefine a chrome-colored, linear gradient that gets applied to the \nshimmer shapes.\n\nWrap your CircleListItem widgets with a ShimmerLoading widget.\n\nWrap your CardListItem widgets with a ShimmerLoading widget.", "source": "https://docs.flutter.dev/cookbook/effects/shimmer-loading/index.html"} {"id": "8ee8a55b05b5-4", "text": "Wrap your CardListItem widgets with a ShimmerLoading widget.\n\nWhen your shapes are loading, they now display\nthe shimmer gradient that is \nreturned from the shaderCallback.\n\nThis is a big step in the right direction,\nbut there\u2019s a problem with this gradient display.\nEach CircleListItem widget and each CardListItem widget \ndisplays a new version of the gradient.\nFor this recipe, the entire screen should \nlook like one, big shimmering surface.\nYou solve this problem in the next step.\n\nPaint one big shimmer\n\nTo paint one big shimmer across the screen,\neach ShimmerLoading widget needs \nto paint the same full-screen gradient based\non the position of that ShimmerLoading\nwidget on the screen.", "source": "https://docs.flutter.dev/cookbook/effects/shimmer-loading/index.html"} {"id": "8ee8a55b05b5-5", "text": "To be more precise, rather than assume that the shimmer\nshould take up the entire screen,\nthere should be some area that shares the shimmer.\nMaybe that area takes up the entire screen,\nor maybe it doesn\u2019t. The way to solve this \nkind of problem in Flutter is to define another widget\nthat sits above all of the ShimmerLoading widgets\nin the widget tree, and call it Shimmer. \nThen, each ShimmerLoading widget gets a reference\nto the Shimmer ancestor\nand requests the desired size and gradient to display.\n\nDefine a new stateful widget called Shimmer that\ntakes in a LinearGradient and provides descendants\nwith access to its State object.\n\nWrap all of your screen\u2019s content with the Shimmer widget.\n\nUse the Shimmer widget within your\nShimmerLoading widget to paint the shared gradient.\n\nYour ShimmerLoading widgets now display a shared\ngradient that takes up all of the space within the\nShimmer widget.\n\nAnimate the shimmer", "source": "https://docs.flutter.dev/cookbook/effects/shimmer-loading/index.html"} {"id": "8ee8a55b05b5-6", "text": "Animate the shimmer\n\nThe shimmer gradient needs to move in order to\ngive the appearance of a shimmering shine.\n\nThe LinearGradient has a property called transform\nthat can be used to transform the appearance of the gradient,\nfor example, to move it horizontally. \nThe transform property accepts a GradientTransform instance.\n\nDefine a class called _SlidingGradientTransform that implements \nGradientTransform to achieve the appearance of horizontal sliding.\n\nThe gradient slide percentage changes over time\nin order to create the appearance of motion.\nTo change the percentage, configure an\nAnimationController in the ShimmerState class.\n\nApply the _SlidingGradientTransform to the gradient\nby using the _shimmerController\u2019s value as the slidePercent.\n\nThe gradient now animates, but your individual\nShimmerLoading widgets don\u2019t repaint themselves\nas the gradient changes. Therefore, it looks like nothing \nis happening.", "source": "https://docs.flutter.dev/cookbook/effects/shimmer-loading/index.html"} {"id": "8ee8a55b05b5-7", "text": "Expose the _shimmerController from ShimmerState\nas a Listenable.\n\nIn ShimmerLoading, listen for changes to the ancestor\nShimmerState\u2019s shimmerChanges property,\nand repaint the shimmer gradient.\n\nCongratulations!\nYou now have a full-screen,\nanimated shimmer effect that turns \non and off as the content loads.\n\nNote:\n This recipe doesn\u2019t provide an interactive DartPad because\n ShaderMask widgets have not yet been implemented for the web.\n You can run this recipe on a mobile or desktop device by\n cloning the example code. See the \u201cUI loading animation\u201d \n example under the \u201ccookbook\u201d directory.\n\nCreate a scrolling parallax effect\n\nCreate a staggered menu animation", "source": "https://docs.flutter.dev/cookbook/effects/shimmer-loading/index.html"} {"id": "3ca106db67a6-0", "text": "Create a shimmer loading effect\n\nCreate a typing indicator\n\nCreate a staggered menu animation\n\nCookbook\n\nEffects\n\nCreate a staggered menu animation\n\nCreate the menu without animations\n\nPrepare for animations\n\nAnimate the list items and button\n\nInteractive example\n\nA single app screen might contain multiple animations.\nPlaying all of the animations at the same time can be\noverwhelming. Playing the animations one after the other\ncan take too long. A better option is to stagger the animations. \nEach animation begins at a different time,\nbut the animations overlap to create a shorter duration.\nIn this recipe, you build a drawer menu with animated \ncontent that is staggered and has a button that pops\nin at the bottom.\n\nThe following animation shows the app\u2019s behavior:\n\nCreate the menu without animations", "source": "https://docs.flutter.dev/cookbook/effects/staggered-menu-animation/index.html"} {"id": "3ca106db67a6-1", "text": "Create the menu without animations\n\nThe drawer menu displays a list of titles,\nfollowed by a Get started button at \nthe bottom of the menu.\n\nDefine a stateful widget called Menu\nthat displays the list and button \nin static locations.\n\nPrepare for animations\n\nControl of the animation timing requires an\nAnimationController.\n\nAdd the SingleTickerProviderStateMixin\nto the MenuState class. Then, declare and\ninstantiate an AnimationController.\n\nThe length of the delay before every animation is\nup to you. Define the animation delays,\nindividual animation durations, and the total \nanimation duration.", "source": "https://docs.flutter.dev/cookbook/effects/staggered-menu-animation/index.html"} {"id": "3ca106db67a6-2", "text": "In this case, all the animations are delayed by 50 ms.\nAfter that, list items begin to appear.\nEach list item\u2019s appearance is delayed by 50 ms after the \nprevious list item begins to slide in.\nEach list item takes 250 ms to slide from right to left.\nAfter the last list item begins to slide in,\nthe button at the bottom waits another 150 ms to pop in.\nThe button animation takes 500 ms.\n\nWith each delay and animation duration defined,\nthe total duration is calculated so that it can be\nused to calculate the individual animation times.\n\nThe desired animation times are shown in the following diagram:", "source": "https://docs.flutter.dev/cookbook/effects/staggered-menu-animation/index.html"} {"id": "3ca106db67a6-3", "text": "The desired animation times are shown in the following diagram:\n\nTo animate a value during a subsection of a larger animation,\nFlutter provides the Interval class.\nAn Interval takes a start time percentage and an end \ntime percentage. That Interval can then be used to\nanimate a value between those start and end times,\ninstead of using the entire animation\u2019s start and \nend times. For example, given an animation that takes 1 second, \nan interval from 0.2 to 0.5 would start at 200 ms\n(20%) and end at 500 ms (50%).\n\nDeclare and calculate each list item\u2019s Interval and the \nbottom button Interval.\n\nAnimate the list items and button\n\nThe staggered animation plays as soon as the menu becomes visible.\n\nStart the animation in initState().\n\nEach list item slides from right to left and\nfades in at the same time.", "source": "https://docs.flutter.dev/cookbook/effects/staggered-menu-animation/index.html"} {"id": "3ca106db67a6-4", "text": "Each list item slides from right to left and\nfades in at the same time.\n\nUse the list item\u2019s Interval and an easeOut\ncurve to animate the opacity and translation\nvalues for each list item.\n\nUse the same approach to animate the opacity and\nscale of the bottom button. This time, use an\nelasticOut curve to give the button a springy effect.\n\nCongratulations!\nYou have an animated menu where the appearance of each \nlist item is staggered, followed by a bottom button that\npops into place.\n\nInteractive example\n\nCreate a shimmer loading effect\n\nCreate a typing indicator", "source": "https://docs.flutter.dev/cookbook/effects/staggered-menu-animation/index.html"} {"id": "3af7c9f2c09b-0", "text": "Create a staggered menu animation\n\nCreate an expandable FAB\n\nCreate a typing indicator\n\nCookbook\n\nEffects\n\nCreate a typing indicator\n\nDefine the typing indicator widget\n\nMake room for the typing indicator\n\nAnimate the speech bubbles\n\nAnimate the flashing circles\n\nInteractive example\n\nModern chat apps display indicators when other users\nare actively typing responses. These indicators help\nprevent rapid and conflicting responses between you\nand the other person. In this recipe, you build a\nspeech bubble typing indicator that animates in and out of view.\n\nThe following animation shows the app\u2019s behavior:\n\nDefine the typing indicator widget", "source": "https://docs.flutter.dev/cookbook/effects/typing-indicator/index.html"} {"id": "3af7c9f2c09b-1", "text": "Define the typing indicator widget\n\nThe typing indicator exists within its own widget so that\nit can be used anywhere in your app. As with any widget\nthat controls animations, the typing indicator needs to\nbe a stateful widget. The widget accepts a boolean value \nthat determines whether the indicator is visible.\nThis speech-bubble-typing indicator accepts a color\nfor the bubbles and two colors for the light and dark\nphases of the flashing circles within the large speech bubble.\n\nDefine a new stateful widget called TypingIndicator.\n\nMake room for the typing indicator\n\nThe typing indicator doesn\u2019t occupy any space when it\nisn\u2019t displayed. Therefore, the indicator needs to grow\nin height when it appears, and shrink in height\nwhen it disappears.", "source": "https://docs.flutter.dev/cookbook/effects/typing-indicator/index.html"} {"id": "3af7c9f2c09b-2", "text": "The height of the typing indicator could be the natural\nheight of the speech bubbles within the typing indicator.\nHowever, the speech bubbles expand with an elastic curve.\nThis elasticity would be too visually jarring if it quickly \npushed all the conversation messages up or down. Instead,\nthe height of the typing indicator animates on its own,\nsmoothly expanding before the bubbles appear.\nWhen the bubbles disappear, the height smoothly contracts to zero. \nThis behavior requires an explicit animation for the\nheight of the typing indicator.\n\nDefine an animation for the height of the typing indicator,\nand then apply that animated value to the SizedBox\nwidget within the typing indicator.\n\nThe TypingIndicator runs an animation forward or backward\ndepending on whether the incoming showIndicator variable\nis true or false, respectively.", "source": "https://docs.flutter.dev/cookbook/effects/typing-indicator/index.html"} {"id": "3af7c9f2c09b-3", "text": "The animation that controls the height uses different\nanimation curves depending on its direction.\nWhen the animation moves forward, it needs to quickly make \nspace for the speech bubbles. For this reason,\nthe forward curve runs the entire height animation within\nthe first 40% of the overall appearance animation.\nWhen the animation reverses, it needs to give the speech bubbles\nenough time to disappear before contracting the height. \nAn ease-out curve that uses all the available time is a\ngood way to accomplish this behavior.\n\nAnimate the speech bubbles\n\nThe typing indicator displays three speech bubbles.\nThe first two bubbles are small and round. The third\nbubble is oblong and contains a few flashing circles. \nThese bubbles are staggered in position from the lower\nleft of the available space.", "source": "https://docs.flutter.dev/cookbook/effects/typing-indicator/index.html"} {"id": "3af7c9f2c09b-4", "text": "Each bubble appears by animating its scale from 0% to 100%,\nand each bubble does this at slightly different times so\nthat it looks like each bubble appears after the one before it.\nThis is called a staggered animation.\n\nPaint the three bubbles in the desired positions from the\nlower left. Then, animate the scale of the bubbles\nso that the bubbles are staggered whenever the showIndicator\nproperty changes.\n\nAnimate the flashing circles\n\nWithin the large speech bubble, the typing indicator\ndisplays three small circles that flash repeatedly.\nEach circle flashes at a slightly different time,\ngiving the impression that a single light source is \nmoving behind each circle. This flashing animation\nrepeats indefinitely.\n\nIntroduce a repeating AnimationController to\nimplement the circle flashing and pass it to the\nStatusBubble.", "source": "https://docs.flutter.dev/cookbook/effects/typing-indicator/index.html"} {"id": "3af7c9f2c09b-5", "text": "Each circle calculates its color using a sine (sin)\nfunction so that the color changes gradually at the\nminimum and maximum points. Additionally,\neach circle animates its color within a specified interval\nthat takes up a portion of the overall animation time.\nThe position of these intervals generates the visual\neffect of a single light source moving behind the three dots.\n\nCongratulations! You now have a typing indicator that lets users\nknow when someone else is typing. The indicator animates in and out,\nand displays a repeating animation while the other user is typing.\n\nInteractive example\n\nRun the app:\n\nClick the round on/off switch at the bottom\nof the screen to turn the typing indicator bubble\non and off.\n\nCreate a staggered menu animation\n\nCreate an expandable FAB", "source": "https://docs.flutter.dev/cookbook/effects/typing-indicator/index.html"} {"id": "c3f7df168026-0", "text": "Retrieve the value of a text field\n\nAdd Material touch ripples\n\nFocus and text fields\n\nCookbook\n\nForms\n\nFocus and text fields\n\nFocus a text field as soon as it\u2019s visible\n\nFocus a text field when a button is tapped\n\n1. Create a FocusNode\n2. Pass the FocusNode to a TextField\n3. Give focus to the TextField when a button is tapped\n\nInteractive example\n\nWhen a text field is selected and accepting input,\nit is said to have \u201cfocus.\u201d\nGenerally, users shift focus to a text field by tapping,\nand developers shift focus to a text field programmatically by\nusing the tools described in this recipe.", "source": "https://docs.flutter.dev/cookbook/forms/focus/index.html"} {"id": "c3f7df168026-1", "text": "Managing focus is a fundamental tool for creating forms with an intuitive\nflow. For example, say you have a search screen with a text field.\nWhen the user navigates to the search screen,\nyou can set the focus to the text field for the search term.\nThis allows the user to start typing as soon as the screen\nis visible, without needing to manually tap the text field.\n\nIn this recipe, learn how to give the focus\nto a text field as soon as it\u2019s visible,\nas well as how to give focus to a text field\nwhen a button is tapped.\n\nFocus a text field as soon as it\u2019s visible\n\nTo give focus to a text field as soon as it\u2019s visible,\nuse the autofocus property.\n\nTextField\n\nautofocus:\n\ntrue\n\n);\n\nFor more information on handling input and creating text fields,\nsee the Forms section of the cookbook.\n\nFocus a text field when a button is tapped", "source": "https://docs.flutter.dev/cookbook/forms/focus/index.html"} {"id": "c3f7df168026-2", "text": "Focus a text field when a button is tapped\n\nRather than immediately shifting focus to a specific text field,\nyou might need to give focus to a text field at a later point in time.\nIn the real world, you might also need to give focus to a specific\ntext field in response to an API call or a validation error.\nIn this example, give focus to a text field after the user\npresses a button using the following steps:\n\nCreate a FocusNode.\n\nPass the FocusNode to a TextField.\n\nGive focus to the TextField when a button is tapped.\n\n1. Create a FocusNode\n\nFirst, create a FocusNode.\nUse the FocusNode to identify a specific TextField in Flutter\u2019s\n\u201cfocus tree.\u201d This allows you to give focus to the TextField\nin the next steps.", "source": "https://docs.flutter.dev/cookbook/forms/focus/index.html"} {"id": "c3f7df168026-3", "text": "Since focus nodes are long-lived objects, manage the lifecycle\nusing a State object. Use the following instructions to create\na FocusNode instance inside the initState() method of a\nState class, and clean it up in the dispose() method:\n\n2. Pass the FocusNode to a TextField\n\nNow that you have a FocusNode,\npass it to a specific TextField in the build() method.\n\n3. Give focus to the TextField when a button is tapped\n\nFinally, focus the text field when the user taps a floating\naction button. Use the requestFocus() method to perform\nthis task.\n\nInteractive example\n\nRetrieve the value of a text field\n\nAdd Material touch ripples", "source": "https://docs.flutter.dev/cookbook/forms/focus/index.html"} {"id": "9819f966f5a4-0", "text": "Forms\n\nCookbook\n\nForms\n\nBuild a form with validation\n\nCreate and style a text field\n\nFocus and text fields\n\nHandle changes to a text field\n\nRetrieve the value of a text field", "source": "https://docs.flutter.dev/cookbook/forms/index.html"} {"id": "851a93473d17-0", "text": "Create an expandable FAB\n\nFocus and text fields\n\nRetrieve the value of a text field\n\nCookbook\n\nForms\n\nRetrieve the value of a text field\n\n1. Create a TextEditingController\n\n2. Supply the TextEditingController to a TextField\n\n3. Display the current value of the text field\n\nInteractive example\n\nIn this recipe,\nlearn how to retrieve the text a user has entered into a text field\nusing the following steps:\n\nCreate a TextEditingController.\n\nSupply the TextEditingController to a TextField.\n\nDisplay the current value of the text field.\n\n1. Create a TextEditingController\n\nTo retrieve the text a user has entered into a text field,\ncreate a TextEditingController\nand supply it to a TextField or TextFormField.", "source": "https://docs.flutter.dev/cookbook/forms/retrieve-input/index.html"} {"id": "851a93473d17-1", "text": "Important: Call dispose of the TextEditingController when\n you\u2019ve finished using it. This ensures that you discard any resources\n used by the object.\n\n2. Supply the TextEditingController to a TextField\n\nNow that you have a TextEditingController, wire it up\nto a text field using the controller property:\n\n3. Display the current value of the text field\n\nAfter supplying the TextEditingController to the text field,\nbegin reading values. Use the text()\nmethod provided by the TextEditingController to retrieve the\nString that the user has entered into the text field.\n\nThe following code displays an alert dialog with the current\nvalue of the text field when the user taps a floating action button.\n\nInteractive example\n\nCreate an expandable FAB\n\nFocus and text fields", "source": "https://docs.flutter.dev/cookbook/forms/retrieve-input/index.html"} {"id": "e14db9e7fb96-0", "text": "Create and style a text field\n\nRetrieve the value of a text field\n\nHandle changes to a text field\n\nCookbook\n\nForms\n\nHandle changes to a text field\n\n1. Supply an onChanged() callback to a TextField or a TextFormField\n\n2. Use a TextEditingController\n\nCreate a TextEditingController\nConnect the TextEditingController to a text field\nCreate a function to print the latest value\nListen to the controller for changes\n\nInteractive example\n\nIn some cases, it\u2019s useful to run a callback function every time the text\nin a text field changes. For example, you might want to build a search\nscreen with autocomplete functionality where you want to update the\nresults as the user types.\n\nHow do you run a callback function every time the text changes?\nWith Flutter, you have two options:\n\nSupply an onChanged() callback to a TextField or a TextFormField.", "source": "https://docs.flutter.dev/cookbook/forms/text-field-changes/index.html"} {"id": "e14db9e7fb96-1", "text": "Supply an onChanged() callback to a TextField or a TextFormField.\n\nUse a TextEditingController.\n\n1. Supply an onChanged() callback to a TextField or a TextFormField\n\nThe simplest approach is to supply an onChanged() callback to a\nTextField or a TextFormField.\nWhenever the text changes, the callback is invoked.\n\nIn this example, print the current value of the text field to the\nconsole every time the text changes.\n\n2. Use a TextEditingController\n\nA more powerful, but more elaborate approach, is to supply a\nTextEditingController as the controller\nproperty of the TextField or a TextFormField.\n\nTo be notified when the text changes, listen to the controller\nusing the addListener() method using the following steps:\n\nCreate a TextEditingController.\n\nConnect the TextEditingController to a text field.\n\nCreate a function to print the latest value.", "source": "https://docs.flutter.dev/cookbook/forms/text-field-changes/index.html"} {"id": "e14db9e7fb96-2", "text": "Create a function to print the latest value.\n\nListen to the controller for changes.\n\nCreate a TextEditingController\n\nCreate a TextEditingController:\n\nNote:\n Remember to dispose of the TextEditingController when it\u2019s no\n longer needed. This ensures that you discard any resources used\n by the object.\n\nConnect the TextEditingController to a text field\n\nSupply the TextEditingController to either a TextField\nor a TextFormField. Once you wire these two classes together,\nyou can begin listening for changes to the text field.\n\nCreate a function to print the latest value\n\nYou need a function to run every time the text changes.\nCreate a method in the _MyCustomFormState class that prints\nout the current value of the text field.\n\nListen to the controller for changes", "source": "https://docs.flutter.dev/cookbook/forms/text-field-changes/index.html"} {"id": "e14db9e7fb96-3", "text": "Listen to the controller for changes\n\nFinally, listen to the TextEditingController and call the\n_printLatestValue() method when the text changes. Use the\naddListener() method for this purpose.\n\nBegin listening for changes when the\n_MyCustomFormState class is initialized,\nand stop listening when the _MyCustomFormState is disposed.\n\nInteractive example\n\nCreate and style a text field\n\nRetrieve the value of a text field", "source": "https://docs.flutter.dev/cookbook/forms/text-field-changes/index.html"} {"id": "14f96c16047e-0", "text": "Build a form with validation\n\nHandle changes to a text field\n\nCreate and style a text field\n\nCookbook\n\nForms\n\nCreate and style a text field\n\nTextField\n\nTextFormField\n\nInteractive example\n\nText fields allow users to type text into an app.\nThey are used to build forms,\nsend messages, create search experiences, and more.\nIn this recipe, explore how to create and style text fields.\n\nFlutter provides two text fields:\nTextField and TextFormField.\n\nTextField\n\nTextField is the most commonly used text input widget.\n\nBy default, a TextField is decorated with an underline.\nYou can add a label, icon, inline hint text, and error text by supplying an\nInputDecoration as the decoration\nproperty of the TextField.\nTo remove the decoration entirely (including the\nunderline and the space reserved for the label),\nset the decoration to null.", "source": "https://docs.flutter.dev/cookbook/forms/text-input/index.html"} {"id": "14f96c16047e-1", "text": "To retrieve the value when it changes,\nsee the Handle changes to a text field recipe.\n\nTextFormField\n\nTextFormField wraps a TextField and integrates it\nwith the enclosing Form.\nThis provides additional functionality,\nsuch as validation and integration with other\nFormField widgets.\n\nInteractive example\n\nFor more information on input validation, see the\nBuilding a form with validation recipe.\n\nBuild a form with validation\n\nHandle changes to a text field", "source": "https://docs.flutter.dev/cookbook/forms/text-input/index.html"} {"id": "e728004b0c49-0", "text": "Drag a UI element\n\nCreate and style a text field\n\nBuild a form with validation\n\nCookbook\n\nForms\n\nBuild a form with validation\n\n1. Create a Form with a GlobalKey\n\n2. Add a TextFormField with validation logic\n\n3. Create a button to validate and submit the form\n\nHow does this work?\n\nInteractive example\n\nApps often require users to enter information into a text field.\nFor example, you might require users to log in with an email address\nand password combination.\n\nTo make apps secure and easy to use, check whether the\ninformation the user has provided is valid. If the user has correctly filled\nout the form, process the information. If the user submits incorrect\ninformation, display a friendly error message letting them know what went\nwrong.\n\nIn this example, learn how to add validation to a form that has\na single text field using the following steps:", "source": "https://docs.flutter.dev/cookbook/forms/validation/index.html"} {"id": "e728004b0c49-1", "text": "Create a Form with a GlobalKey.\n\nAdd a TextFormField with validation logic.\n\nCreate a button to validate and submit the form.\n\n1. Create a Form with a GlobalKey\n\nFirst, create a Form.\nThe Form widget acts as a container for grouping\nand validating multiple form fields.\n\nWhen creating the form, provide a GlobalKey.\nThis uniquely identifies the Form,\nand allows validation of the form in a later step.\n\nTip:\n Using a GlobalKey is the recommended way to access a form.\n However, if you have a more complex widget tree,\n you can use the Form.of() method to\n access the form within nested widgets.\n\n2. Add a TextFormField with validation logic", "source": "https://docs.flutter.dev/cookbook/forms/validation/index.html"} {"id": "e728004b0c49-2", "text": "2. Add a TextFormField with validation logic\n\nAlthough the Form is in place,\nit doesn\u2019t have a way for users to enter text.\nThat\u2019s the job of a TextFormField.\nThe TextFormField widget renders a material design text field\nand can display validation errors when they occur.\n\nValidate the input by providing a validator() function to the\nTextFormField. If the user\u2019s input isn\u2019t valid,\nthe validator function returns a String containing\nan error message.\nIf there are no errors, the validator must return null.\n\nFor this example, create a validator that ensures the\nTextFormField isn\u2019t empty. If it is empty,\nreturn a friendly error message.\n\n3. Create a button to validate and submit the form\n\nNow that you have a form with a text field,\nprovide a button that the user can tap to submit the information.", "source": "https://docs.flutter.dev/cookbook/forms/validation/index.html"} {"id": "e728004b0c49-3", "text": "When the user attempts to submit the form, check if the form is valid.\nIf it is, display a success message.\nIf it isn\u2019t (the text field has no content) display the error message.\n\nHow does this work?\n\nTo validate the form, use the _formKey created in\nstep 1. You can use the _formKey.currentState()\nmethod to access the FormState,\nwhich is automatically created by Flutter when building a Form.\n\nInteractive example\n\nDrag a UI element\n\nCreate and style a text field", "source": "https://docs.flutter.dev/cookbook/forms/validation/index.html"} {"id": "7af096deb78c-0", "text": "Handle taps\n\nDisplay images from the internet\n\nImplement swipe to dismiss\n\nCookbook\n\nGestures\n\nImplement swipe to dismiss\n\n1. Create a list of items\n\nCreate a data source\nConvert the data source into a list\n\n2. Wrap each item in a Dismissible widget\n\n3. Provide \u201cleave behind\u201d indicators\n\nInteractive example\n\nThe \u201cswipe to dismiss\u201d pattern is common in many mobile apps.\nFor example, when writing an email app,\nyou might want to allow a user to swipe away\nemail messages to delete them from a list.\n\nFlutter makes this task easy by providing the\nDismissible widget.\nLearn how to implement swipe to dismiss with the following steps:\n\nCreate a list of items.\n\nWrap each item in a Dismissible widget.", "source": "https://docs.flutter.dev/cookbook/gestures/dismissible/index.html"} {"id": "7af096deb78c-1", "text": "Wrap each item in a Dismissible widget.\n\nProvide \u201cleave behind\u201d indicators.\n\n1. Create a list of items\n\nFirst, create a list of items. For detailed\ninstructions on how to create a list,\nfollow the Working with long lists recipe.\n\nCreate a data source\n\nIn this example,\nyou want 20 sample items to work with.\nTo keep it simple, generate a list of strings.\n\nConvert the data source into a list\n\nDisplay each item in the list on screen. Users won\u2019t\nbe able to swipe these items away just yet.\n\n2. Wrap each item in a Dismissible widget\n\nIn this step,\ngive users the ability to swipe an item off the list by using the\nDismissible widget.", "source": "https://docs.flutter.dev/cookbook/gestures/dismissible/index.html"} {"id": "7af096deb78c-2", "text": "After the user has swiped away the item,\nremove the item from the list and display a snackbar.\nIn a real app, you might need to perform more complex logic,\nsuch as removing the item from a web service or database.\n\nUpdate the itemBuilder() function to return a Dismissible widget:\n\n3. Provide \u201cleave behind\u201d indicators\n\nAs it stands,\nthe app allows users to swipe items off the list, but it doesn\u2019t\ngive a visual indication of what happens when they do.\nTo provide a cue that items are removed,\ndisplay a \u201cleave behind\u201d indicator as they\nswipe the item off the screen. In this case,\nthe indicator is a red background.\n\nTo add the indicator,\nprovide a background parameter to the Dismissible.\n\nlib/{step2.dart (Dismissible) \u2192 main.dart (Dismissible)}\n\n@@ -16,6 +16,8 @@", "source": "https://docs.flutter.dev/cookbook/gestures/dismissible/index.html"} {"id": "7af096deb78c-3", "text": "@@ -16,6 +16,8 @@\n\n16\n16\n\nScaffoldMessenger.of(context)\n\n17\n17\n\n.showSnackBar(SnackBar(content: Text('$item dismissed')));\n\n18\n18\n\n},\n\n19\n\n+\n // Show a red background as the item is swiped away.\n\n20\n\n+\n background: Container(color: Colors.red),\n\n19\n21\n\nchild: ListTile(\n\n20\n22\n\ntitle: Text(item),\n\n21\n23\n\n),\n\nInteractive example\n\nHandle taps\n\nDisplay images from the internet", "source": "https://docs.flutter.dev/cookbook/gestures/dismissible/index.html"} {"id": "1a26ce5e03ad-0", "text": "Add Material touch ripples\n\nImplement swipe to dismiss\n\nHandle taps\n\nCookbook\n\nGestures\n\nHandle taps\n\nNotes\n\nInteractive example\n\nYou not only want to display information to users,\nyou want users to interact with your app.\nUse the GestureDetector widget to respond\nto fundamental actions, such as tapping and dragging.\n\nNote:\n To learn more, watch this short Widget of the Week video on the GestureDetector widget:\n\nThis recipe shows how to make a custom button that shows\na snackbar when tapped with the following steps:\n\nCreate the button.\n\nWrap it in a GestureDetector that an onTap() callback.\n\nNotes\n\nFor information on adding the Material ripple effect to your\nbutton, see the Add Material touch ripples recipe.", "source": "https://docs.flutter.dev/cookbook/gestures/handling-taps/index.html"} {"id": "1a26ce5e03ad-1", "text": "Although this example creates a custom button,\nFlutter includes a handful of button implementations, such as:\nElevatedButton, TextButton, and\nCupertinoButton.\n\nInteractive example\n\nAdd Material touch ripples\n\nImplement swipe to dismiss", "source": "https://docs.flutter.dev/cookbook/gestures/handling-taps/index.html"} {"id": "e61a53daea2d-0", "text": "Gestures\n\nCookbook\n\nGestures\n\nAdd Material touch ripples\n\nHandle taps\n\nImplement swipe to dismiss", "source": "https://docs.flutter.dev/cookbook/gestures/index.html"} {"id": "13230da44f69-0", "text": "Retrieve the value of a text field\n\nHandle taps\n\nAdd Material touch ripples\n\nCookbook\n\nGestures\n\nAdd Material touch ripples\n\nInteractive example\n\nWidgets that follow the Material Design guidelines display\na ripple animation when tapped.\n\nFlutter provides the InkWell\nwidget to perform this effect.\nCreate a ripple effect using the following steps:\n\nCreate a widget that supports tap.\n\nWrap it in an InkWell widget to manage tap callbacks and\nripple animations.\n\nInteractive example\n\nRetrieve the value of a text field\n\nHandle taps", "source": "https://docs.flutter.dev/cookbook/gestures/ripples/index.html"} {"id": "05ef46d0bafe-0", "text": "Fade in images with a placeholder\n\nUse lists\n\nWork with cached images\n\nCookbook\n\nImages\n\nWork with cached images\n\nAdding a placeholder\n\nComplete example\n\nIn some cases, it\u2019s handy to cache images as they\u2019re downloaded from the\nweb, so they can be used offline. For this purpose,\nuse the cached_network_image package.\n\nNote:\n To learn more, watch this short Package of the Week video on the cached_network_image package:\n\nIn addition to caching, the cached_network_image\npackage also supports placeholders and fading images\nin as they\u2019re loaded.\n\nAdding a placeholder\n\nThe cached_network_image package allows you to use any widget as a\nplaceholder. In this example, display a spinner while the image loads.\n\nComplete example\n\nFade in images with a placeholder\n\nUse lists", "source": "https://docs.flutter.dev/cookbook/images/cached-images/index.html"} {"id": "836ed7deb43d-0", "text": "Display images from the internet\n\nWork with cached images\n\nFade in images with a placeholder\n\nCookbook\n\nImages\n\nFade in images with a placeholder\n\nIn-Memory\n\nComplete example\n\nFrom asset bundle\n\nComplete example\n\nWhen displaying images using the default Image widget,\nyou might notice they simply pop onto the screen as they\u2019re loaded.\nThis might feel visually jarring to your users.\n\nInstead, wouldn\u2019t it be nice to display a placeholder at first,\nand images would fade in as they\u2019re loaded? Use the\nFadeInImage widget for exactly this purpose.\n\nFadeInImage works with images of any type: in-memory, local assets,\nor images from the internet.\n\nIn-Memory\n\nIn this example, use the transparent_image\npackage for a simple transparent placeholder.\n\nComplete example\n\nFrom asset bundle", "source": "https://docs.flutter.dev/cookbook/images/fading-in-images/index.html"} {"id": "836ed7deb43d-1", "text": "Complete example\n\nFrom asset bundle\n\nYou can also consider using local assets for placeholders.\nFirst, add the asset to the project\u2019s pubspec.yaml file\n(for more details, see Adding assets and images):\n\n+ - assets/loading.gif\n\nThen, use the FadeInImage.assetNetwork() constructor:\n\nComplete example\n\nDisplay images from the internet\n\nWork with cached images", "source": "https://docs.flutter.dev/cookbook/images/fading-in-images/index.html"} {"id": "e9bbcf82964e-0", "text": "Images\n\nCookbook\n\nImages\n\nDisplay images from the internet\n\nFade in images with a placeholder\n\nWork with cached images", "source": "https://docs.flutter.dev/cookbook/images/index.html"} {"id": "2fd7977db626-0", "text": "Implement swipe to dismiss\n\nFade in images with a placeholder\n\nDisplay images from the internet\n\nCookbook\n\nImages\n\nDisplay images from the internet\n\nBonus: animated gifs\n\nPlaceholders and caching\n\nInteractive example\n\nDisplaying images is fundamental for most mobile apps.\nFlutter provides the Image widget to\ndisplay different types of images.\n\nTo work with images from a URL, use the\nImage.network() constructor.\n\nBonus: animated gifs\n\nOne useful thing about the Image widget:\nIt supports animated gifs.\n\nPlaceholders and caching\n\nThe default Image.network constructor doesn\u2019t handle more advanced\nfunctionality, such as fading images in after loading, or caching images\nto the device after they\u2019re downloaded. To accomplish these tasks, see\nthe following recipes:\n\nFade in images with a placeholder", "source": "https://docs.flutter.dev/cookbook/images/network-image/index.html"} {"id": "2fd7977db626-1", "text": "Fade in images with a placeholder\n\nWork with cached images\n\nInteractive example\n\nImplement swipe to dismiss\n\nFade in images with a placeholder", "source": "https://docs.flutter.dev/cookbook/images/network-image/index.html"} {"id": "bc3a44873072-0", "text": "Cookbook\n\nAnimation\n\nDesign\n\nEffects\n\nForms\n\nGestures\n\nImages\n\nLists\n\nMaintenance\n\nNavigation\n\nNetworking\n\nPersistence\n\nPlugins\n\nTesting\n\nIntegration\nUnit\nWidget\n\nThis cookbook contains recipes that demonstrate how to solve common problems \nwhile writing Flutter apps. Each recipe is self-contained and can be used as a\nreference to help you build up an application.\n\nAnimation\n\nAnimate a page route transition\n\nAnimate a widget using a physics simulation\n\nAnimate the properties of a container\n\nFade a widget in and out\n\nDesign\n\nAdd a drawer to a screen\n\nDisplay a snackbar\n\nExport fonts from a package", "source": "https://docs.flutter.dev/cookbook/index.html"} {"id": "bc3a44873072-1", "text": "Display a snackbar\n\nExport fonts from a package\n\nUpdate the UI based on orientation\n\nUse a custom font\n\nUse themes to share colors and font styles\n\nWork with tabs\n\nEffects\n\nCreate a download button\n\nCreate a nested navigation flow\n\nCreate a photo filter carousel\n\nCreate a scrolling parallax effect\n\nCreate a shimmer loading effect\n\nCreate a staggered menu animation\n\nCreate a typing indicator\n\nCreate an expandable FAB\n\nCreate gradient chat bubbles\n\nDrag a UI element\n\nForms\n\nBuild a form with validation\n\nCreate and style a text field\n\nFocus and text fields\n\nHandle changes to a text field\n\nRetrieve the value of a text field\n\nGestures", "source": "https://docs.flutter.dev/cookbook/index.html"} {"id": "bc3a44873072-2", "text": "Retrieve the value of a text field\n\nGestures\n\nAdd Material touch ripples\n\nHandle taps\n\nImplement swipe to dismiss\n\nImages\n\nDisplay images from the internet\n\nFade in images with a placeholder\n\nWork with cached images\n\nLists\n\nCreate a grid list\n\nCreate a horizontal list\n\nCreate lists with different types of items\n\nPlace a floating app bar above a list\n\nUse lists\n\nWork with long lists\n\nMaintenance\n\nReport errors to a service\n\nNavigation\n\nAnimate a widget across screens\n\nNavigate to a new screen and back\n\nNavigate with named routes\n\nPass arguments to a named route\n\nSet up app links for Android\n\nSet up universal links for iOS", "source": "https://docs.flutter.dev/cookbook/index.html"} {"id": "bc3a44873072-3", "text": "Set up app links for Android\n\nSet up universal links for iOS\n\nReturn data from a screen\n\nSend data to a new screen\n\nNetworking\n\nFetch data from the internet\n\nMake authenticated requests\n\nParse JSON in the background\n\nSend data to the internet\n\nUpdate data over the internet\n\nDelete data on the internet\n\nWork with WebSockets\n\nPersistence\n\nPersist data with SQLite\n\nRead and write files\n\nStore key-value data on disk\n\nPlugins\n\nPlay and pause a video\n\nTake a picture using the camera\n\nTesting\n\nIntegration\n\nAn introduction to integration testing\n\nPerformance profiling\n\nUnit\n\nAn introduction to unit testing\n\nMock dependencies using Mockito\n\nWidget", "source": "https://docs.flutter.dev/cookbook/index.html"} {"id": "bc3a44873072-4", "text": "Mock dependencies using Mockito\n\nWidget\n\nAn introduction to widget testing\n\nFind widgets\n\nHandle scrolling\n\nTap, drag, and enter text", "source": "https://docs.flutter.dev/cookbook/index.html"} {"id": "50010c6b7544-0", "text": "Work with cached images\n\nCreate a horizontal list\n\nUse lists\n\nCookbook\n\nLists\n\nUse lists\n\nCreate a ListView\n\nInteractive example\n\nDisplaying lists of data is a fundamental pattern for mobile apps.\nFlutter includes the ListView\nwidget to make working with lists a breeze.\n\nCreate a ListView\n\nUsing the standard ListView constructor is\nperfect for lists that contain only a few items.\nThe built-in ListTile\nwidget is a way to give items a visual structure.\n\nInteractive example\n\nWork with cached images\n\nCreate a horizontal list", "source": "https://docs.flutter.dev/cookbook/lists/basic-list/index.html"} {"id": "5c117b2fe6d0-0", "text": "Create lists with different types of items\n\nWork with long lists\n\nPlace a floating app bar above a list\n\nCookbook\n\nLists\n\nPlace a floating app bar above a list\n\n1. Create a CustomScrollView\n\n2. Use SliverAppBar to add a floating app bar\n3. Add a list of items using a SliverList\n\nInteractive example\n\nTo make it easier for users to view a list of items,\nyou might want to hide the app bar as the user scrolls down the list.\nThis is especially true if your app displays a \u201ctall\u201d\napp bar that occupies a lot of vertical space.\n\nTypically, you create an app bar by providing an appBar property to the\nScaffold widget. This creates a fixed app bar that always remains above\nthe body of the Scaffold.", "source": "https://docs.flutter.dev/cookbook/lists/floating-app-bar/index.html"} {"id": "5c117b2fe6d0-1", "text": "Moving the app bar from a Scaffold widget into a\nCustomScrollView allows you to create an app bar\nthat scrolls offscreen as you scroll through a\nlist of items contained inside the CustomScrollView.\n\nThis recipe demonstrates how to use a CustomScrollView to display a list of\nitems with an app bar on top that scrolls offscreen as the user scrolls\ndown the list using the following steps:\n\nCreate a CustomScrollView.\n\nUse SliverAppBar to add a floating app bar.\n\nAdd a list of items using a SliverList.\n\n1. Create a CustomScrollView\n\nTo create a floating app bar, place the app bar inside a\nCustomScrollView that also contains the list of items.\nThis synchronizes the scroll position of the app bar and the list of items.\nYou might think of the CustomScrollView widget as a ListView\nthat allows you to mix and match different types of scrollable lists\nand widgets together.", "source": "https://docs.flutter.dev/cookbook/lists/floating-app-bar/index.html"} {"id": "5c117b2fe6d0-2", "text": "For this example, create a CustomScrollView that contains a\nSliverAppBar and a SliverList. In addition, remove any app bars\nthat you provide to the Scaffold widget.\n\n2. Use SliverAppBar to add a floating app bar\n\nNext, add an app bar to the CustomScrollView.\nFlutter provides the SliverAppBar widget which,\nmuch like the normal AppBar widget,\nuses the SliverAppBar to display a title,\ntabs, images and more.\n\nHowever, the SliverAppBar also gives you the ability to create a \u201cfloating\u201d\napp bar that scrolls offscreen as the user scrolls down the list.\nFurthermore, you can configure the SliverAppBar to shrink and\nexpand as the user scrolls.\n\nTo create this effect:\n\nStart with an app bar that displays only a title.\n\nSet the floating property to true.\nThis allows users to quickly reveal the app bar when\nthey scroll up the list.", "source": "https://docs.flutter.dev/cookbook/lists/floating-app-bar/index.html"} {"id": "5c117b2fe6d0-3", "text": "Add a flexibleSpace widget that fills the available\nexpandedHeight.\n\nTip:\n Play around with the\n various properties you can pass to the SliverAppBar widget,\n and use hot reload to see the results. For example, use an Image\n widget for the flexibleSpace property to create a background image that\n shrinks in size as it\u2019s scrolled offscreen.\n\n3. Add a list of items using a SliverList\n\nNow that you have the app bar in place, add a list of items to the\nCustomScrollView. You have two options: a SliverList\nor a SliverGrid. If you need to display a list of items one after the other,\nuse the SliverList widget.\nIf you need to display a grid list, use the SliverGrid widget.\n\nSliverChildDelegate, which provides a list\nof widgets to\n\nSliverChildBuilderDelegate\nallows you to create a list of items that are built lazily as you scroll,\njust like the", "source": "https://docs.flutter.dev/cookbook/lists/floating-app-bar/index.html"} {"id": "5c117b2fe6d0-4", "text": "Interactive example\n\nCreate lists with different types of items\n\nWork with long lists", "source": "https://docs.flutter.dev/cookbook/lists/floating-app-bar/index.html"} {"id": "8f2674c9ac1b-0", "text": "Create a horizontal list\n\nCreate lists with different types of items\n\nCreate a grid list\n\nCookbook\n\nLists\n\nCreate a grid list\n\nInteractive example\n\nIn some cases, you might want to display your items as a grid rather than\na normal list of items that come one after the next.\nFor this task, use the GridView widget.\n\nThe simplest way to get started using grids is by using the\nGridView.count() constructor,\nbecause it allows you to specify how many rows or columns you\u2019d like.\n\nTo visualize how GridView works,\ngenerate a list of 100 widgets that display their index in the list.\n\nInteractive example\n\nCreate a horizontal list\n\nCreate lists with different types of items", "source": "https://docs.flutter.dev/cookbook/lists/grid-lists/index.html"} {"id": "6db9d15dbd28-0", "text": "Use lists\n\nCreate a grid list\n\nCreate a horizontal list\n\nCookbook\n\nLists\n\nCreate a horizontal list\n\nInteractive example\n\nYou might want to create a list that scrolls\nhorizontally rather than vertically.\nThe ListView widget supports horizontal lists.\n\nUse the standard ListView constructor, passing in a horizontal\nscrollDirection, which overrides the default vertical direction.\n\nInteractive example\n\nUse lists\n\nCreate a grid list", "source": "https://docs.flutter.dev/cookbook/lists/horizontal-list/index.html"} {"id": "b72eaba32151-0", "text": "Lists\n\nCookbook\n\nLists\n\nCreate a grid list\n\nCreate a horizontal list\n\nCreate lists with different types of items\n\nPlace a floating app bar above a list\n\nUse lists\n\nWork with long lists", "source": "https://docs.flutter.dev/cookbook/lists/index.html"} {"id": "cebb648bb1da-0", "text": "Place a floating app bar above a list\n\nReport errors to a service\n\nWork with long lists\n\nCookbook\n\nLists\n\nWork with long lists\n\n1. Create a data source\n\n2. Convert the data source into widgets\n\nInteractive example\n\nChildren\u2019s extent\n\nThe standard ListView constructor works well\nfor small lists. To work with lists that contain\na large number of items, it\u2019s best to use the\nListView.builder constructor.\n\nIn contrast to the default ListView constructor, which requires\ncreating all items at once, the ListView.builder() constructor\ncreates items as they\u2019re scrolled onto the screen.\n\n1. Create a data source\n\nFirst, you need a data source. For example, your data source\nmight be a list of messages, search results, or products in a store.\nMost of the time, this data comes from the internet or a database.", "source": "https://docs.flutter.dev/cookbook/lists/long-lists/index.html"} {"id": "cebb648bb1da-1", "text": "For this example, generate a list of 10,000 Strings using the\nList.generate constructor.\n\n2. Convert the data source into widgets\n\nTo display the list of strings, render each String as a widget\nusing ListView.builder().\nIn this example, display each String on its own line.\n\nInteractive example\n\nChildren\u2019s extent\n\nTo specify each item\u2019s extent, you can use either itemExtent or prototypeItem.\nSpecifying either is more efficient than letting the children determine their own extent\nbecause the scrolling machinery can make use of the foreknowledge of the children\u2019s\nextent to save work, for example when the scroll position changes drastically.\n\nPlace a floating app bar above a list\n\nReport errors to a service", "source": "https://docs.flutter.dev/cookbook/lists/long-lists/index.html"} {"id": "ba32ebc3231f-0", "text": "Create a grid list\n\nPlace a floating app bar above a list\n\nCreate lists with different types of items\n\nCookbook\n\nLists\n\nCreate lists with different types of items\n\n1. Create a data source with different types of items\n\nTypes of items\nCreate a list of items\n\n2. Convert the data source into a list of widgets\n\nInteractive example\n\nYou might need to create lists that display different types of content.\nFor example, you might be working on a list that shows a heading\nfollowed by a few items related to the heading, followed by another heading,\nand so on.\n\nHere\u2019s how you can create such a structure with Flutter:\n\nCreate a data source with different types of items.\n\nConvert the data source into a list of widgets.\n\n1. Create a data source with different types of items\n\nTypes of items", "source": "https://docs.flutter.dev/cookbook/lists/mixed-list/index.html"} {"id": "ba32ebc3231f-1", "text": "Types of items\n\nTo represent different types of items in a list, define\na class for each type of item.\n\nIn this example, create an app that shows a header followed by five\nmessages. Therefore, create three classes: ListItem, HeadingItem,\nand MessageItem.\n\nCreate a list of items\n\nMost of the time, you would fetch data from the internet or a local\ndatabase and convert that data into a list of items.\n\nFor this example, generate a list of items to work with. The list\ncontains a header followed by five messages. Each message has one\nof 3 types: ListItem, HeadingItem, or MessageItem.\n\n2. Convert the data source into a list of widgets\n\nTo convert each item into a widget,\nuse the ListView.builder() constructor.\n\nIn general, provide a builder function that checks for what type\nof item you\u2019re dealing with, and returns the appropriate widget\nfor that type of item.\n\nInteractive example", "source": "https://docs.flutter.dev/cookbook/lists/mixed-list/index.html"} {"id": "ba32ebc3231f-2", "text": "Interactive example\n\nCreate a grid list\n\nPlace a floating app bar above a list", "source": "https://docs.flutter.dev/cookbook/lists/mixed-list/index.html"} {"id": "86d7fc6a8769-0", "text": "Work with long lists\n\nAnimate a widget across screens\n\nReport errors to a service\n\nCookbook\n\nMaintenance\n\nReport errors to a service\n\n1. Get a DSN from Sentry\n\n2. Import the Sentry package\n\n3. Initialize the Sentry SDK\n\nWhat does that give me?\n\n4. Capture errors programatically\n\nLearn more\n\nComplete example\n\nWhile one always tries to create apps that are free of bugs,\nthey\u2019re sure to crop up from time to time.\nSince buggy apps lead to unhappy users and customers,\nit\u2019s important to understand how often your users\nexperience bugs and where those bugs occur.\nThat way, you can prioritize the bugs with the\nhighest impact and work to fix them.", "source": "https://docs.flutter.dev/cookbook/maintenance/error-reporting/index.html"} {"id": "86d7fc6a8769-1", "text": "How can you determine how often your users experiences bugs?\nWhenever an error occurs, create a report containing the\nerror that occurred and the associated stacktrace.\nYou can then send the report to an error tracking\nservice, such as Bugsnag, Fabric, Firebase Crashlytics, Rollbar, or Sentry.\n\nThe error tracking service aggregates all of the crashes your users\nexperience and groups them together. This allows you to know how often your\napp fails and where the users run into trouble.\n\nIn this recipe, learn how to report errors to the\nSentry crash reporting service using\nthe following steps:\n\nGet a DSN from Sentry.\n\nImport the Flutter Sentry package\n\nInitialize the Sentry SDK\n\nCapture errors programmatically\n\n1. Get a DSN from Sentry\n\nBefore reporting errors to Sentry, you need a \u201cDSN\u201d to uniquely identify\nyour app with the Sentry.io service.", "source": "https://docs.flutter.dev/cookbook/maintenance/error-reporting/index.html"} {"id": "86d7fc6a8769-2", "text": "To get a DSN, use the following steps:\n\nCreate an account with Sentry.\n\nLog in to the account.\n\nCreate a new Flutter project.\n\nCopy the code snippet that includes the DSN.\n\n2. Import the Sentry package\n\nImport the sentry_flutter package into the app.\nThe sentry package makes it easier to send\nerror reports to the Sentry error tracking service.\n\ndependencies\n\nsentry_flutter\n\n\n\n3. Initialize the Sentry SDK\n\nInitialize the SDK to capture different unhandled errors automatically:\n\nAlternatively, you can pass the DSN to Flutter using the dart-define tag:\n\nWhat does that give me?\n\n-dart-define\n\nSENTRY_DSN\n\n=https://example@sentry.io/example\n\nWhat does that give me?", "source": "https://docs.flutter.dev/cookbook/maintenance/error-reporting/index.html"} {"id": "86d7fc6a8769-3", "text": "What does that give me?\n\nThis is all you need for Sentry to capture unhandled errors in Dart and native layers.\nThis includes Swift, Objective-C, C, and C++ on iOS, and Java, Kotlin, C, and C++ on Android.\n\n4. Capture errors programatically\n\nBesides the automatic error reporting that Sentry generates by\nimporting and initializing the SDK,\nyou can use the API to report errors to Sentry:\n\nFor more information, see the Sentry API docs on pub.dev.\n\nLearn more\n\nExtensive documentation about using the Sentry SDK can be found on Sentry\u2019s site.\n\nComplete example\n\nTo view a working example,\nsee the Sentry flutter example app.\n\nWork with long lists\n\nAnimate a widget across screens", "source": "https://docs.flutter.dev/cookbook/maintenance/error-reporting/index.html"} {"id": "63688096c27b-0", "text": "Maintenance\n\nCookbook\n\nMaintenance\n\nReport errors to a service", "source": "https://docs.flutter.dev/cookbook/maintenance/index.html"} {"id": "c092d5894025-0", "text": "Report errors to a service\n\nNavigate to a new screen and back\n\nAnimate a widget across screens\n\nCookbook\n\nNavigation\n\nAnimate a widget across screens\n\n1. Create two screens showing the same image\n\n2. Add a Hero widget to the first screen\n\n3. Add a Hero widget to the second screen\n\nInteractive example\n\nIt\u2019s often helpful to guide users through an app as they navigate from screen\nto screen. A common technique to lead users through an app is to animate a\nwidget from one screen to the next. This creates a visual anchor connecting\nthe two screens.\n\nUse the Hero widget\nto animate a widget from one screen to the next.\nThis recipe uses the following steps:\n\nCreate two screens showing the same image.\n\nAdd a Hero widget to the first screen.\n\nAdd a Hero widget to the second screen.", "source": "https://docs.flutter.dev/cookbook/navigation/hero-animations/index.html"} {"id": "c092d5894025-1", "text": "Add a Hero widget to the second screen.\n\n1. Create two screens showing the same image\n\nIn this example, display the same image on both screens.\nAnimate the image from the first screen to the second screen when\nthe user taps the image. For now, create the visual structure;\nhandle animations in the next steps.\n\nNote:\n This example builds upon the\n Navigate to a new screen and back\n and Handle taps recipes.\n\n2. Add a Hero widget to the first screen\n\nTo connect the two screens together with an animation, wrap\nthe Image widget on both screens in a Hero widget.\nThe Hero widget requires two arguments:\n\nAn object that identifies the `Hero`.\n It must be the same on both screens.\n\nThe widget to animate across screens.\n\n3. Add a Hero widget to the second screen", "source": "https://docs.flutter.dev/cookbook/navigation/hero-animations/index.html"} {"id": "c092d5894025-2", "text": "3. Add a Hero widget to the second screen\n\nTo complete the connection with the first screen,\nwrap the Image on the second screen with a Hero\nwidget that has the same tag as the Hero in the first screen.\n\nAfter applying the Hero widget to the second screen,\nthe animation between screens just works.\n\nNote:\n This code is identical to what you have on the first screen.\n As a best practice, create a reusable widget instead of\n repeating code. This example uses identical code for both\n widgets, for simplicity.\n\nInteractive example\n\nReport errors to a service\n\nNavigate to a new screen and back", "source": "https://docs.flutter.dev/cookbook/navigation/hero-animations/index.html"} {"id": "f669fabee511-0", "text": "Navigation\n\nCookbook\n\nNavigation\n\nAnimate a widget across screens\n\nNavigate to a new screen and back\n\nNavigate with named routes\n\nPass arguments to a named route\n\nReturn data from a screen\n\nSend data to a new screen\n\nSet up app links for Android\n\nSet up universal links for iOS", "source": "https://docs.flutter.dev/cookbook/navigation/index.html"} {"id": "98f6e20a03d5-0", "text": "Navigate to a new screen and back\n\nPass arguments to a named route\n\nNavigate with named routes\n\nCookbook\n\nNavigation\n\nNavigate with named routes\n\n1. Create two screens\n\n2. Define the routes\n\n3. Navigate to the second screen\n\n4. Return to the first screen\n\nInteractive example\n\nNote:\n Named routes are no longer recommended for most\n applications. For more information, see\n Limitations in the navigation overview page.\n\nIn the Navigate to a new screen and back recipe,\nyou learned how to navigate to a new screen by creating a new route and\npushing it to the Navigator.\n\nHowever, if you need to navigate to the same screen in many parts\nof your app, this approach can result in code duplication.\nThe solution is to define a named route,\nand use the named route for navigation.", "source": "https://docs.flutter.dev/cookbook/navigation/named-routes/index.html"} {"id": "98f6e20a03d5-1", "text": "To work with named routes,\nuse the Navigator.pushNamed() function.\nThis example replicates the functionality from the original recipe,\ndemonstrating how to use named routes using the following steps:\n\nCreate two screens.\n\nDefine the routes.\n\nNavigate to the second screen using Navigator.pushNamed().\n\nReturn to the first screen using Navigator.pop().\n\n1. Create two screens\n\nFirst, create two screens to work with. The first screen contains a\nbutton that navigates to the second screen. The second screen contains a\nbutton that navigates back to the first.\n\n2. Define the routes\n\nNext, define the routes by providing additional properties\nto the MaterialApp constructor: the initialRoute\nand the routes themselves.\n\nThe initialRoute property defines which route the app should start with.\nThe routes property defines the available named routes and the widgets\nto build when navigating to those routes.", "source": "https://docs.flutter.dev/cookbook/navigation/named-routes/index.html"} {"id": "98f6e20a03d5-2", "text": "Warning:\n When using initialRoute, don\u2019t define a home property.\n\n3. Navigate to the second screen\n\nWith the widgets and routes in place, trigger navigation by using the\nNavigator.pushNamed() method.\nThis tells Flutter to build the widget defined in the\nroutes table and launch the screen.\n\nIn the build() method of the FirstScreen widget, update the onPressed()\ncallback:\n\n4. Return to the first screen\n\nTo navigate back to the first screen, use the\nNavigator.pop() function.\n\nInteractive example\n\nNavigate to a new screen and back\n\nPass arguments to a named route", "source": "https://docs.flutter.dev/cookbook/navigation/named-routes/index.html"} {"id": "c6c1a7c26356-0", "text": "Navigate with named routes\n\nSet up app links for Android\n\nPass arguments to a named route\n\nCookbook\n\nNavigation\n\nPass arguments to a named route\n\n1. Define the arguments you need to pass\n\n2. Create a widget that extracts the arguments\n\n3. Register the widget in the routes table\n\n4. Navigate to the widget\n\nAlternatively, extract the arguments using onGenerateRoute\n\nInteractive example\n\nThe Navigator provides the ability to navigate\nto a named route from any part of an app using\na common identifier.\nIn some cases, you might also need to pass arguments to a\nnamed route. For example, you might wish to navigate to the /user route and\npass information about the user to that route.\n\nNote:\n Named routes are no longer recommended for most\n applications. For more information, see\n Limitations in the navigation overview page.", "source": "https://docs.flutter.dev/cookbook/navigation/navigate-with-arguments/index.html"} {"id": "c6c1a7c26356-1", "text": "Navigator.pushNamed() method. Extract the arguments using the\n\nModalRoute.of() method or inside an\n\nonGenerateRoute()\nfunction provided to the\n\nMaterialApp or\n\nCupertinoApp\nconstructor.\n\nThis recipe demonstrates how to pass arguments to a named\nroute and read the arguments using ModalRoute.of()\nand onGenerateRoute() using the following steps:\n\nDefine the arguments you need to pass.\n\nCreate a widget that extracts the arguments.\n\nRegister the widget in the routes table.\n\nNavigate to the widget.\n\n1. Define the arguments you need to pass\n\nFirst, define the arguments you need to pass to the new route.\nIn this example, pass two pieces of data:\nThe title of the screen and a message.\n\nTo pass both pieces of data, create a class that stores this information.\n\n2. Create a widget that extracts the arguments", "source": "https://docs.flutter.dev/cookbook/navigation/navigate-with-arguments/index.html"} {"id": "c6c1a7c26356-2", "text": "2. Create a widget that extracts the arguments\n\nNext, create a widget that extracts and displays the\ntitle and message from the ScreenArguments.\nTo access the ScreenArguments,\nuse the ModalRoute.of() method.\nThis method returns the current route with the arguments.\n\n3. Register the widget in the routes table\n\nNext, add an entry to the routes provided to the MaterialApp widget. The\nroutes define which widget should be created based on the name of the route.\n\n4. Navigate to the widget\n\nNavigator.pushNamed().\nProvide the arguments to the route via the\n\nAlternatively, extract the arguments using onGenerateRoute\n\nInstead of extracting the arguments directly inside the widget, you can also\nextract the arguments inside an onGenerateRoute()\nfunction and pass them to a widget.\n\nThe onGenerateRoute() function creates the correct route based on the given\nRouteSettings.\n\nInteractive example", "source": "https://docs.flutter.dev/cookbook/navigation/navigate-with-arguments/index.html"} {"id": "c6c1a7c26356-3", "text": "Interactive example\n\nNavigate with named routes\n\nSet up app links for Android", "source": "https://docs.flutter.dev/cookbook/navigation/navigate-with-arguments/index.html"} {"id": "0f4e4870fd7c-0", "text": "Animate a widget across screens\n\nNavigate with named routes\n\nNavigate to a new screen and back\n\nCookbook\n\nNavigation\n\nNavigate to a new screen and back\n\n1. Create two routes\n\n2. Navigate to the second route using Navigator.push()\n\n3. Return to the first route using Navigator.pop()\n\nInteractive example\n\nMost apps contain several screens for displaying different types of\ninformation.\nFor example, an app might have a screen that displays products.\nWhen the user taps the image of a product, a new screen displays\ndetails about the product.\n\nTerminology: In Flutter, screens and pages are called routes.\n The remainder of this recipe refers to routes.\n\nIn Android, a route is equivalent to an Activity.\nIn iOS, a route is equivalent to a ViewController.\nIn Flutter, a route is just a widget.", "source": "https://docs.flutter.dev/cookbook/navigation/navigation-basics/index.html"} {"id": "0f4e4870fd7c-1", "text": "This recipe uses the Navigator to navigate to a new route.\n\nThe next few sections show how to navigate between two routes,\nusing these steps:\n\nCreate two routes.\n\nNavigate to the second route using Navigator.push().\n\nReturn to the first route using Navigator.pop().\n\n1. Create two routes\n\nFirst, create two routes to work with. Since this is a basic example,\neach route contains only a single button. Tapping the button on the\nfirst route navigates to the second route. Tapping the button on the\nsecond route returns to the first route.\n\nFirst, set up the visual structure:\n\n2. Navigate to the second route using Navigator.push()\n\nNavigator.push()\nmethod. The\n\nMaterialPageRoute,\nwhich is useful because it transitions to the\nnew route using a platform-specific animation.", "source": "https://docs.flutter.dev/cookbook/navigation/navigation-basics/index.html"} {"id": "0f4e4870fd7c-2", "text": "In the build() method of the FirstRoute widget,\nupdate the onPressed() callback:\n\n3. Return to the first route using Navigator.pop()\n\nHow do you close the second route and return to the first?\nBy using the Navigator.pop() method.\nThe pop() method removes the current Route from the stack of\nroutes managed by the Navigator.\n\nTo implement a return to the original route, update the onPressed()\ncallback in the SecondRoute widget:\n\nInteractive example\n\nAnimate a widget across screens\n\nNavigate with named routes", "source": "https://docs.flutter.dev/cookbook/navigation/navigation-basics/index.html"} {"id": "88031d968a0d-0", "text": "Return data from a screen\n\nDelete data on the internet\n\nSend data to a new screen\n\nCookbook\n\nNavigation\n\nSend data to a new screen\n\n1. Define a todo class\n\n2. Create a list of todos\n\nGenerate the list of todos\nDisplay the list of todos using a ListView\n\n3. Create a Todo screen to display the list\n\n4. Create a detail screen to display information about a todo\n\n5. Navigate and pass data to the detail screen\n\nInteractive example\n\nAlternatively, pass the arguments using RouteSettings\n\nCreate a detail screen to extract the arguments\nNavigate and pass the arguments to the detail screen\nComplete example\n\nOften, you not only want to navigate to a new screen,\nbut also pass data to the screen as well.\nFor example, you might want to pass information about\nthe item that\u2019s been tapped.", "source": "https://docs.flutter.dev/cookbook/navigation/passing-data/index.html"} {"id": "88031d968a0d-1", "text": "Remember: Screens are just widgets.\nIn this example, create a list of todos.\nWhen a todo is tapped, navigate to a new screen (widget) that\ndisplays information about the todo.\nThis recipe uses the following steps:\n\nDefine a todo class.\n\nDisplay a list of todos.\n\nCreate a detail screen that can display information about a todo.\n\nNavigate and pass data to the detail screen.\n\n1. Define a todo class\n\nFirst, you need a simple way to represent todos. For this example,\ncreate a class that contains two pieces of data: the title and description.\n\n2. Create a list of todos\n\nSecond, display a list of todos. In this example, generate\n20 todos and show them using a ListView.\nFor more information on working with lists,\nsee the Use lists recipe.\n\nGenerate the list of todos\n\nDisplay the list of todos using a ListView", "source": "https://docs.flutter.dev/cookbook/navigation/passing-data/index.html"} {"id": "88031d968a0d-2", "text": "Generate the list of todos\n\nDisplay the list of todos using a ListView\n\nSo far, so good.\nThis generates 20 todos and displays them in a ListView.\n\n3. Create a Todo screen to display the list\n\nFor this, we create a StatelessWidget. We call it TodosScreen.\nSince the contents of this page won\u2019t change during runtime,\nwe\u2019ll have to require the list\nof todos within the scope of this widget.\n\nWe pass in our ListView.builder as body of the widget we\u2019re returning to build().\nThis\u2019ll render the list on to the screen for you to get going!\n\nWith Flutter\u2019s default styling, you\u2019re good to go without sweating about \nthings that you\u2019d like to do later on!\n\n4. Create a detail screen to display information about a todo\n\nNow, create the second screen. The title of the screen contains the\ntitle of the todo, and the body of the screen shows the description.", "source": "https://docs.flutter.dev/cookbook/navigation/passing-data/index.html"} {"id": "88031d968a0d-3", "text": "Since the detail screen is a normal StatelessWidget,\nrequire the user to enter a Todo in the UI.\nThen, build the UI using the given todo.\n\n5. Navigate and pass data to the detail screen\n\nWith a DetailScreen in place,\nyou\u2019re ready to perform the Navigation.\nIn this example, navigate to the DetailScreen when a user\ntaps a todo in the list. Pass the todo to the DetailScreen.\n\nTo capture the user\u2019s tap in the TodosScreen, write an onTap()\ncallback for the ListTile widget. Within the onTap() callback,\nuse the Navigator.push() method.\n\nInteractive example\n\nAlternatively, pass the arguments using RouteSettings\n\nRepeat the first two steps.\n\nCreate a detail screen to extract the arguments", "source": "https://docs.flutter.dev/cookbook/navigation/passing-data/index.html"} {"id": "88031d968a0d-4", "text": "Create a detail screen to extract the arguments\n\nNext, create a detail screen that extracts and displays the title and description from the Todo. To access the Todo, use the ModalRoute.of() method. This method returns the current route with the arguments.\n\nNavigate and pass the arguments to the detail screen\n\nFinally, navigate to the DetailScreen when a user taps\na ListTile widget using Navigator.push().\nPass the arguments as part of the RouteSettings.\nThe DetailScreen extracts these arguments.\n\nComplete example\n\nReturn data from a screen\n\nDelete data on the internet", "source": "https://docs.flutter.dev/cookbook/navigation/passing-data/index.html"} {"id": "61aaef89606f-0", "text": "Set up universal links for iOS\n\nSend data to a new screen\n\nReturn data from a screen\n\nCookbook\n\nNavigation\n\nReturn data from a screen\n\n1. Define the home screen\n\n2. Add a button that launches the selection screen\n\n3. Show the selection screen with two buttons\n\n4. When a button is tapped, close the selection screen\n\nYep button\nNope button\n\n5. Show a snackbar on the home screen with the selection\n\nInteractive example\n\nIn some cases, you might want to return data from a new screen.\nFor example, say you push a new screen that presents two options to a user.\nWhen the user taps an option, you want to inform the first screen\nof the user\u2019s selection so that it can act on that information.\n\nYou can do this with the Navigator.pop()\nmethod using the following steps:", "source": "https://docs.flutter.dev/cookbook/navigation/returning-data/index.html"} {"id": "61aaef89606f-1", "text": "You can do this with the Navigator.pop()\nmethod using the following steps:\n\nDefine the home screen\n\nAdd a button that launches the selection screen\n\nShow the selection screen with two buttons\n\nWhen a button is tapped, close the selection screen\n\nShow a snackbar on the home screen with the selection\n\n1. Define the home screen\n\nThe home screen displays a button. When tapped,\nit launches the selection screen.\n\n2. Add a button that launches the selection screen\n\nNow, create the SelectionButton, which does the following:\n\nLaunches the SelectionScreen when it\u2019s tapped.\n\nWaits for the SelectionScreen to return a result.\n\n3. Show the selection screen with two buttons", "source": "https://docs.flutter.dev/cookbook/navigation/returning-data/index.html"} {"id": "61aaef89606f-2", "text": "3. Show the selection screen with two buttons\n\nNow, build a selection screen that contains two buttons.\nWhen a user taps a button,\nthat app closes the selection screen and lets the home\nscreen know which button was tapped.\n\nThis step defines the UI.\nThe next step adds code to return data.\n\n4. When a button is tapped, close the selection screen\n\nNow, update the onPressed() callback for both of the buttons.\nTo return data to the first screen,\nuse the Navigator.pop() method,\nwhich accepts an optional second argument called result.\nAny result is returned to the Future in the SelectionButton.\n\nYep button\n\nNope button\n\n5. Show a snackbar on the home screen with the selection\n\nNow that you\u2019re launching a selection screen and awaiting the result,\nyou\u2019ll want to do something with the information that\u2019s returned.", "source": "https://docs.flutter.dev/cookbook/navigation/returning-data/index.html"} {"id": "61aaef89606f-3", "text": "In this case, show a snackbar displaying the result by using the\n_navigateAndDisplaySelection() method in SelectionButton:\n\nInteractive example\n\nSet up universal links for iOS\n\nSend data to a new screen", "source": "https://docs.flutter.dev/cookbook/navigation/returning-data/index.html"} {"id": "4eaf833c87b9-0", "text": "Pass arguments to a named route\n\nSet up universal links for iOS\n\nSet up app links for Android\n\nCookbook\n\nNavigation\n\nSet up app links for Android\n\n1. Customize a Flutter application\n\n2. Modify AndroidManifest.xml\n\n3. Hosting assetlinks.json file\n\nPackage name\nsha256 fingerprint\n\nUsing google play app signing\nUsing local keystore\n\n\nassetlinks.json\n\nTesting\n\nAppendix\n\nDeep linking is a mechanism for launching an app with a URI. This URI\ncontains scheme, host, and path, and opens the app to a specific\nscreen.\n\nA app link is a type of deep link that uses http or https and\nis exclusive to Android devices.", "source": "https://docs.flutter.dev/cookbook/navigation/set-up-app-links/index.html"} {"id": "4eaf833c87b9-1", "text": "Setting up app links requires one to own a web domain. Otherwise, consider\nusing Firebase Hosting or GitHub Pages as a temporary solution.\n\n1. Customize a Flutter application\n\nWrite a Flutter app that can handle an incoming URL.\nThis example uses the go_router package to handle the routing.\nThe Flutter team maintains the go_router package.\nIt provides a simple API to handle complex routing scenarios.\n\nTo create a new application, type flutter create .\n\n \n $ flutter create deeplink_cookbook\n\nTo include go_router package in your app, add a dependency for\ngo_router in the pubspec.yaml file.\n\n \n dependencies:\n flutter:\n sdk: flutter\n go_router: ^6.0.9\n\nTo handle the routing, create a GoRouter object in the main.dart file:", "source": "https://docs.flutter.dev/cookbook/navigation/set-up-app-links/index.html"} {"id": "4eaf833c87b9-2", "text": "To handle the routing, create a GoRouter object in the main.dart file:\n\n \n import 'package:flutter/material.dart';\n import 'package:go_router/go_router.dart';\n\n void main() => runApp(MaterialApp.router(routerConfig: router));\n\n /// This handles '/' and '/details'.\n final router = GoRouter(\n routes: [\n GoRoute(\n path: '/',\n builder: (_, __) => Scaffold(\n appBar: AppBar(title: const Text('Home Screen')),\n ),\n routes: [\n GoRoute(\n path: 'details',\n builder: (_, __) => Scaffold(\n appBar: AppBar(title: const Text('Details Screen')),\n ),\n ),\n ],\n ),\n ],\n );\n\n2. Modify AndroidManifest.xml\n\nOpen the Flutter project with Android Studio or VSCode.", "source": "https://docs.flutter.dev/cookbook/navigation/set-up-app-links/index.html"} {"id": "4eaf833c87b9-3", "text": "Open the Flutter project with Android Studio or VSCode.\n\nNavigate to android/app/src/main/AndroidManifest.xml file\n\nAdd the following metadata tag and intent filter inside the tag with .MainActivity", "source": "https://docs.flutter.dev/cookbook/navigation/set-up-app-links/index.html"} {"id": "4eaf833c87b9-4", "text": "Add the following metadata tag and intent filter inside the tag with .MainActivity\n\n Replace example.com with your own web domain.\n \n \n \n \n \n \n \n \n \n \n \n Note:\n The metadata tag flutter_deeplinking_enabled opts into Flutter\u2019s default deeplink handler. If\n you are using the third-party plugins, such as uni_links, setting this metadata tag will\n break these plugins. Omit this metadata tag if you prefer to use third-party plugins.", "source": "https://docs.flutter.dev/cookbook/navigation/set-up-app-links/index.html"} {"id": "4eaf833c87b9-5", "text": "3. Hosting assetlinks.json file\n\nHost an assetlinks.json file in using a web server with a domain that you own.\nThis file tells the mobile browser which Android application to open instead of the browser.\nTo create the file, get the package name of the Flutter app you created in the previous step and\nthe sha256 fingerprint of the signing key you will be using to build the APK.\n\nPackage name\n\nLocate the package name in AndroidManifest.xml, the package property under tag.\nPackage names are usually in the format of com.example.*.\n\nsha256 fingerprint\n\nProcess may differ depending on the way apk is signed.\n\nUsing google play app signing\n\nYou can find the sha256 fingerprint directly from play developer console. Open your app in the play\nconsole, under Release> Setup > App Integrity> App Signing tab\n\nUsing local keystore", "source": "https://docs.flutter.dev/cookbook/navigation/set-up-app-links/index.html"} {"id": "4eaf833c87b9-6", "text": "Using local keystore\n\nIf you are storing the key locally, you can generate sha256 using the following command.\n\nassetlinks.json\n\nThe hosted file should look similar to this:\n\n[{\n\n\"relation\"\n\n\"delegate_permission/common.handle_all_urls\"\n\n],\n\n\"target\"\n\n\"namespace\"\n\n\"android_app\"\n\n\"package_name\"\n\n\"com.example.deeplink_cookbook\"\n\n\"sha256_cert_fingerprints\"", "source": "https://docs.flutter.dev/cookbook/navigation/set-up-app-links/index.html"} {"id": "4eaf833c87b9-7", "text": "\"sha256_cert_fingerprints\"\n\n\"FF:2A:CF:7B:DD:CC:F1:03:3E:E8:B2:27:7C:A2:E3:3C:DE:13:DB:AC:8E:EB:3A:B9:72:A1:0E:26:8A:F5:EC:AF\"\n\n}]\n\nSet the package_name value to your Flutter application package name.\n\nSet sha256_cert_fingerprints to the value you got from the previous step.\n\nHost the file at a URL that resembles the following:\n/.well-known/assetlinks.json\n\nVerify that your browser can access this file.\n\nTesting", "source": "https://docs.flutter.dev/cookbook/navigation/set-up-app-links/index.html"} {"id": "4eaf833c87b9-8", "text": "Verify that your browser can access this file.\n\nTesting\n\nYou can use a real device or the Emulator to test a app link,\nbut first make sure you have executed flutter run at least once on\nthe devices. This ensures that the Flutter application is installed.\n\nTo test only the app setup, use the adb command:\n\nNote:\n This does not test whether the web files are hosted correctly, the command launches the app even\n if web files are not presented.\n\nTo test both web and app setup, you need to click on a link directly through web browser or other\napps. One way is to create a Google Doc, add the link, and tap on it.\n\nIf everything is set up correctly, the Flutter application\nlaunches and displays the details screen:\n\nAppendix\n\nSource code: deeplink_cookbook\n\nPass arguments to a named route\n\nSet up universal links for iOS", "source": "https://docs.flutter.dev/cookbook/navigation/set-up-app-links/index.html"} {"id": "a3696a2b5958-0", "text": "Set up app links for Android\n\nReturn data from a screen\n\nSet up universal links for iOS\n\nCookbook\n\nNavigation\n\nSet up universal links for iOS\n\n1. Customize a Flutter application\n\n2. Adjust iOS build settings\n\n3. Hosting apple-app-site-association file\n\nApp ID\napple-app-site-association\n\nTesting\n\nAppendix\n\nDeep linking is a mechanism for launching an app with a URI. This URI\ncontains scheme, host, and path, and opens the app to a specific\nscreen.\n\nA universal link is a type of deep link that uses http or https and\nis exclusive to Apple devices.\n\nSetting up universal links requires one to own a web domain. Otherwise, consider\nusing Firebase Hosting or GitHub Pages as a temporary solution.\n\n1. Customize a Flutter application", "source": "https://docs.flutter.dev/cookbook/navigation/set-up-universal-links/index.html"} {"id": "a3696a2b5958-1", "text": "1. Customize a Flutter application\n\nWrite a Flutter app that can handle an incoming URL.\nThis example uses the go_router package to handle the routing.\nThe Flutter team maintains the go_router package.\nIt provides a simple API to handle complex routing scenarios.\n\nTo create a new application, type flutter create .\n\n \n $ flutter create deeplink_cookbook\n\nTo include go_router package in your app, add a dependency for\ngo_router in the pubspec.yaml file.\n\n \n dependencies:\n flutter:\n sdk: flutter\n go_router: ^6.0.9\n\nTo handle the routing, create a GoRouter object in the main.dart file:\n\n \n import 'package:flutter/material.dart';\n import 'package:go_router/go_router.dart';\n\n void main() => runApp(MaterialApp.router(routerConfig: router));", "source": "https://docs.flutter.dev/cookbook/navigation/set-up-universal-links/index.html"} {"id": "a3696a2b5958-2", "text": "void main() => runApp(MaterialApp.router(routerConfig: router));\n\n /// This handles '/' and '/details'.\n final router = GoRouter(\n routes: [\n GoRoute(\n path: '/',\n builder: (_, __) => Scaffold(\n appBar: AppBar(title: const Text('Home Screen')),\n ),\n routes: [\n GoRoute(\n path: 'details',\n builder: (_, __) => Scaffold(\n appBar: AppBar(title: const Text('Details Screen')),\n ),\n ),\n ],\n ),\n ],\n );\n\n2. Adjust iOS build settings\n\nLaunch Xcode.\n\nOpen the ios/Runner.xcworkspace file inside the project\u2019s ios folder.\n\nNavigate to the Info Plist file in the ios/Runner folder.\n\nIn the Info property list, control-click at the list to add a row.", "source": "https://docs.flutter.dev/cookbook/navigation/set-up-universal-links/index.html"} {"id": "a3696a2b5958-3", "text": "In the Info property list, control-click at the list to add a row.\n\nControl-click the newly added row and turn on the Raw Keys and Values mode\n\nUpdate the key to FlutterDeepLinkingEnabled with a Boolean value set to YES.\n\n \n\n \n Note:\n The FlutterDeepLinkingEnabled property opts into Flutter\u2019s default deeplink handler. If\n you are using the third-party plugins, such as uni_links, setting this property will\n break these plugins. Skip this step if you prefer to use third-party plugins.\n\nClick the top-level Runner.\n\nClick Sign & Signature.\n\nClick + Capability to add a new domain.\n\nClick Associated Domains.\n\nIn the Associated Domains section, click +.\n\nEnter applinks:. Replace with your own domain name.", "source": "https://docs.flutter.dev/cookbook/navigation/set-up-universal-links/index.html"} {"id": "a3696a2b5958-4", "text": "Enter applinks:. Replace with your own domain name.\n\nYou have finished configuring the application for deep linking.\n\n3. Hosting apple-app-site-association file\n\nYou need to host an apple-app-site-association file in the web domain.\nThis file tells the mobile browser which iOS application to open instead of the browser.\nTo create the file, get the app ID of the Flutter app you created in the previous step.\n\nApp ID\n\nApple formats the app ID as ..\n\nLocate the bundle ID in the Xcode project.\n\nLocate the team ID in the developer account.\n\nFor example: Given a team ID of S8QB4VV633\nand a bundle ID of com.example.deeplinkCookbook, The app ID is\nS8QB4VV633.com.example.deeplinkCookbook.", "source": "https://docs.flutter.dev/cookbook/navigation/set-up-universal-links/index.html"} {"id": "a3696a2b5958-5", "text": "apple-app-site-association\n\nThe hosted file should have the following content:\n\n\"applinks\"\n\n\"details\"\n\n\"appID\"\n\n\"S8QB4VV633.com.example.deeplinkCookbook\"\n\n\"paths\"\n\n\"*\"\n\nSet the appID value to your Flutter application ID.\n\nSet the paths value to [\"*\"].\nThe paths field specifies the allowed universal links.\nUsing the asterisk, * redirects every path to the Flutter application.\nIf needed, change the paths value to a setting more appropriate\nto your app.\n\nHost the file at a URL that resembles the following:\n/.well-known/apple-app-site-association\n\nVerify that your browser can access this file.\n\nTesting", "source": "https://docs.flutter.dev/cookbook/navigation/set-up-universal-links/index.html"} {"id": "a3696a2b5958-6", "text": "Verify that your browser can access this file.\n\nTesting\n\nNote:\n It might take up to 24 hours before Apple\u2019s\n Content Delivery Network (CDN)\n requests the apple-app-site-association (AASA) file from your web domain.\n The universal link won\u2019t work until the CDN requests the file.\n To bypass Apple\u2019s CDN, check out the alternate mode section.\n\nYou can use a real device or the Simulator to test a universal link,\nbut first make sure you have executed flutter run at least once on\nthe devices. This ensures that the Flutter application is installed.\n\nIf using the Simulator, test using the Xcode CLI:\n\nOtherwise, type the URL in the Note app and click it.\n\nIf everything is set up correctly, the Flutter application\nlaunches and displays the details screen:\n\nAppendix\n\nSource code: deeplink_cookbook", "source": "https://docs.flutter.dev/cookbook/navigation/set-up-universal-links/index.html"} {"id": "a3696a2b5958-7", "text": "Appendix\n\nSource code: deeplink_cookbook\n\nSet up app links for Android\n\nReturn data from a screen", "source": "https://docs.flutter.dev/cookbook/navigation/set-up-universal-links/index.html"} {"id": "1c012685a1cc-0", "text": "Fetch data from the internet\n\nParse JSON in the background\n\nMake authenticated requests\n\nCookbook\n\nNetworking\n\nMake authenticated requests\n\nAdd authorization headers\n\nComplete example\n\nTo fetch data from most web services, you need to provide\nauthorization. There are many ways to do this,\nbut perhaps the most common uses the Authorization HTTP header.\n\nAdd authorization headers\n\nThe http package provides a\nconvenient way to add headers to your requests.\nAlternatively, use the HttpHeaders\nclass from the dart:io library.\n\nComplete example\n\nThis example builds upon the\nFetching data from the internet recipe.\n\nFetch data from the internet\n\nParse JSON in the background", "source": "https://docs.flutter.dev/cookbook/networking/authenticated-requests/index.html"} {"id": "d15b19943da4-0", "text": "Make authenticated requests\n\nSend data to the internet\n\nParse JSON in the background\n\nCookbook\n\nNetworking\n\nParse JSON in the background\n\n1. Add the http package\n\n2. Make a network request\n\n3. Parse and convert the JSON into a list of photos\n\nCreate a Photo class\nConvert the response into a list of photos\n\n4. Move this work to a separate isolate\n\nNotes on working with isolates\n\nComplete example\n\nBy default, Dart apps do all of their work on a single thread.\nIn many cases, this model simplifies coding and is fast enough\nthat it does not result in poor app performance or stuttering animations,\noften called \u201cjank.\u201d\n\nHowever, you might need to perform an expensive computation,\nsuch as parsing a very large JSON document.\nIf this work takes more than 16 milliseconds,\nyour users experience jank.", "source": "https://docs.flutter.dev/cookbook/networking/background-parsing/index.html"} {"id": "d15b19943da4-1", "text": "To avoid jank, you need to perform expensive computations\nlike this in the background.\nOn Android, this means scheduling work on a different thread.\nIn Flutter, you can use a separate Isolate.\nThis recipe uses the following steps:\n\nAdd the http package.\n\nMake a network request using the http package.\n\nConvert the response into a list of photos.\n\nMove this work to a separate isolate.\n\n1. Add the http package\n\nFirst, add the http package to your project.\nThe http package makes it easier to perform network\nrequests, such as fetching data from a JSON endpoint.\n\ndependencies\n\nhttp\n\n\n\n2. Make a network request\n\nThis example covers how to fetch a large JSON document\nthat contains a list of 5000 photo objects from the\nJSONPlaceholder REST API,\nusing the http.get() method.", "source": "https://docs.flutter.dev/cookbook/networking/background-parsing/index.html"} {"id": "d15b19943da4-2", "text": "Note:\n You\u2019re providing an http.Client to the function in this example.\n This makes the function easier to test and use in different environments.\n\n3. Parse and convert the JSON into a list of photos\n\nNext, following the guidance from the\nFetch data from the internet recipe,\nconvert the http.Response into a list of Dart objects.\nThis makes the data easier to work with.\n\nCreate a Photo class\n\nFirst, create a Photo class that contains data about a photo.\nInclude a fromJson() factory method to make it easy to create a\nPhoto starting with a JSON object.\n\nConvert the response into a list of photos\n\nNow, use the following instructions to update the\nfetchPhotos() function so that it returns a\nFuture>:\n\nCreate a parsePhotos() function that converts the response\nbody into a List.\n\nUse the parsePhotos() function in the fetchPhotos() function.", "source": "https://docs.flutter.dev/cookbook/networking/background-parsing/index.html"} {"id": "d15b19943da4-3", "text": "Use the parsePhotos() function in the fetchPhotos() function.\n\n4. Move this work to a separate isolate\n\nIf you run the fetchPhotos() function on a slower device,\nyou might notice the app freezes for a brief moment as it parses and\nconverts the JSON. This is jank, and you want to get rid of it.\n\nYou can remove the jank by moving the parsing and conversion\nto a background isolate using the compute()\nfunction provided by Flutter. The compute() function runs expensive\nfunctions in a background isolate and returns the result. In this case,\nrun the parsePhotos() function in the background.\n\nNotes on working with isolates\n\nYou might experience errors if you try to pass more complex objects,\nsuch as a Future or http.Response between isolates.\n\nAs an alternate solution, check out the worker_manager or\nworkmanager packages for background processing.\n\nComplete example\n\nMake authenticated requests", "source": "https://docs.flutter.dev/cookbook/networking/background-parsing/index.html"} {"id": "d15b19943da4-4", "text": "Complete example\n\nMake authenticated requests\n\nSend data to the internet", "source": "https://docs.flutter.dev/cookbook/networking/background-parsing/index.html"} {"id": "4e78fcaabbe4-0", "text": "Send data to a new screen\n\nFetch data from the internet\n\nDelete data on the internet\n\nCookbook\n\nNetworking\n\nDelete data on the internet\n\n1. Add the http package\n\n2. Delete data on the server\n\n3. Update the screen\n\nReturning a response from the deleteAlbum() method\n\nComplete example\n\nThis recipe covers how to delete data over\nthe internet using the http package.\n\nThis recipe uses the following steps:\n\nAdd the http package.\n\nDelete data on the server.\n\nUpdate the screen.\n\n1. Add the http package\n\nTo install the http package,\nadd it to the dependencies section of the pubspec.yaml file.\nYou can find the latest version of the\nhttp package on pub.dev.\n\ndependencies\n\nhttp", "source": "https://docs.flutter.dev/cookbook/networking/delete-data/index.html"} {"id": "4e78fcaabbe4-1", "text": "dependencies\n\nhttp\n\n\n\nImport the http package.\n\n2. Delete data on the server\n\nThis recipe covers how to delete an album from the\nJSONPlaceholder using the http.delete() method.\nNote that this requires the id of the album that\nyou want to delete. For this example,\nuse something you already know, for example id = 1.\n\nThe http.delete() method returns a Future that contains a Response.\n\nFuture is a core Dart class for working with\nasync operations. A Future object represents a potential\nvalue or error that will be available at some time in the future.\n\nThe http.Response class contains the data received from a successful\nhttp call.\n\nThe deleteAlbum() method takes an id argument that\nis needed to identify the data to be deleted from the server.\n\n3. Update the screen", "source": "https://docs.flutter.dev/cookbook/networking/delete-data/index.html"} {"id": "4e78fcaabbe4-2", "text": "3. Update the screen\n\nIn order to check whether the data has been deleted or not,\nfirst fetch the data from the JSONPlaceholder\nusing the http.get() method, and display it in the screen.\n(See the Fetch Data recipe for a complete example.)\nYou should now have a Delete Data button that,\nwhen pressed, calls the deleteAlbum() method.\n\nNow, when you click on the Delete Data button,\nthe deleteAlbum() method is called and the id\nyou are passing is the id of the data that you retrieved\nfrom the internet. This means you are going to delete\nthe same data that you fetched from the internet.\n\nReturning a response from the deleteAlbum() method\n\nOnce the delete request has been made,\nyou can return a response from the deleteAlbum()\nmethod to notify our screen that the data has been deleted.", "source": "https://docs.flutter.dev/cookbook/networking/delete-data/index.html"} {"id": "4e78fcaabbe4-3", "text": "FutureBuilder() now rebuilds when it receives a response.\nSince the response won\u2019t have any data in its body\nif the request was successful,\nthe Album.fromJson() method creates an instance of the\nAlbum object with a default value (null in our case).\nThis behavior can be altered in any way you wish.\n\nThat\u2019s all!\nNow you\u2019ve got a function that deletes the data from the internet.\n\nComplete example\n\nSend data to a new screen\n\nFetch data from the internet", "source": "https://docs.flutter.dev/cookbook/networking/delete-data/index.html"} {"id": "b84648abc070-0", "text": "Delete data on the internet\n\nMake authenticated requests\n\nFetch data from the internet\n\nCookbook\n\nNetworking\n\nFetch data from the internet\n\n1. Add the http package\n\n2. Make a network request\n\n3. Convert the response into a custom Dart object\n\nCreate an Album class\nConvert the http.Response to an Album\n\n4. Fetch the data\n\n5. Display the data\n\nWhy is fetchAlbum() called in initState()?\n\nTesting\n\nComplete example\n\nFetching data from the internet is necessary for most apps.\nLuckily, Dart and Flutter provide tools, such as the\nhttp package, for this type of work.\n\nThis recipe uses the following steps:\n\nAdd the http package.\n\nMake a network request using the http package.", "source": "https://docs.flutter.dev/cookbook/networking/fetch-data/index.html"} {"id": "b84648abc070-1", "text": "Add the http package.\n\nMake a network request using the http package.\n\nConvert the response into a custom Dart object.\n\nFetch and display the data with Flutter.\n\n1. Add the http package\n\nThe http package provides the\nsimplest way to fetch data from the internet.\n\nTo install the http package, add it to the\ndependencies section of the pubspec.yaml file.\nYou can find the latest version of the\nhttp package the pub.dev.\n\ndependencies\n\nhttp\n\n\n\nImport the http package.\n\nAdditionally, in your AndroidManifest.xml file, \nadd the Internet permission.\n\n\n\n\n\n2. Make a network request", "source": "https://docs.flutter.dev/cookbook/networking/fetch-data/index.html"} {"id": "b84648abc070-2", "text": "/>\n\n2. Make a network request\n\nThis recipe covers how to fetch a sample album from the\nJSONPlaceholder using the http.get() method.\n\nThe http.get() method returns a Future that contains a Response.\n\nFuture is a core Dart class for working with\nasync operations. A Future object represents a potential\nvalue or error that will be available at some time in the future.\n\nThe http.Response class contains the data received from a successful\nhttp call.\n\n3. Convert the response into a custom Dart object\n\nWhile it\u2019s easy to make a network request, working with a raw\nFuture isn\u2019t very convenient.\nTo make your life easier,\nconvert the http.Response into a Dart object.\n\nCreate an Album class\n\nFirst, create an Album class that contains the data from the\nnetwork request. It includes a factory constructor that\ncreates an Album from JSON.", "source": "https://docs.flutter.dev/cookbook/networking/fetch-data/index.html"} {"id": "b84648abc070-3", "text": "Converting JSON by hand is only one option.\nFor more information, see the full article on\nJSON and serialization.\n\nConvert the http.Response to an Album\n\nNow, use the following steps to update the fetchAlbum()\nfunction to return a Future:\n\nConvert the response body into a JSON Map with\nthe dart:convert package.\n\nIf the server does return an OK response with a status code of\n200, then convert the JSON Map into an Album\nusing the fromJson() factory method.\n\nIf the server does not return an OK response with a status code of 200,\nthen throw an exception.\n(Even in the case of a \u201c404 Not Found\u201d server response,\nthrow an exception. Do not return null.\nThis is important when examining\nthe data in snapshot, as shown below.)\n\nHooray!\nNow you\u2019ve got a function that fetches an album from the internet.\n\n4. Fetch the data", "source": "https://docs.flutter.dev/cookbook/networking/fetch-data/index.html"} {"id": "b84648abc070-4", "text": "4. Fetch the data\n\nCall the fetchAlbum() method in either the\ninitState() or didChangeDependencies()\nmethods.\n\nThe initState() method is called exactly once and then never again.\nIf you want to have the option of reloading the API in response to an\nInheritedWidget changing, put the call into the\ndidChangeDependencies() method.\nSee State for more details.\n\nThis Future is used in the next step.\n\n5. Display the data\n\nTo display the data on screen, use the\nFutureBuilder widget.\nThe FutureBuilder widget comes with Flutter and\nmakes it easy to work with asynchronous data sources.\n\nYou must provide two parameters:\n\nThe Future you want to work with.\nIn this case, the future returned from\nthe fetchAlbum() function.\n\nA builder function that tells Flutter\nwhat to render, depending on the\nstate of the Future: loading, success, or error.", "source": "https://docs.flutter.dev/cookbook/networking/fetch-data/index.html"} {"id": "b84648abc070-5", "text": "Note that snapshot.hasData only returns true\nwhen the snapshot contains a non-null data value.\n\nBecause fetchAlbum can only return non-null values,\nthe function should throw an exception\neven in the case of a \u201c404 Not Found\u201d server response.\nThrowing an exception sets the snapshot.hasError to true\nwhich can be used to display an error message.\n\nOtherwise, the spinner will be displayed.\n\nWhy is fetchAlbum() called in initState()?\n\nAlthough it\u2019s convenient,\nit\u2019s not recommended to put an API call in a build() method.\n\nFlutter calls the build() method every time it needs\nto change anything in the view,\nand this happens surprisingly often.\nThe fetchAlbum() method, if placed inside build(), is repeatedly \ncalled on each rebuild causing the app to slow down.\n\nStoring the fetchAlbum() result in a state variable ensures that\nthe Future is executed only once and then cached for subsequent\nrebuilds.", "source": "https://docs.flutter.dev/cookbook/networking/fetch-data/index.html"} {"id": "b84648abc070-6", "text": "Testing\n\nFor information on how to test this functionality,\nsee the following recipes:\n\nIntroduction to unit testing\n\nMock dependencies using Mockito\n\nComplete example\n\nDelete data on the internet\n\nMake authenticated requests", "source": "https://docs.flutter.dev/cookbook/networking/fetch-data/index.html"} {"id": "8fc3e78dd960-0", "text": "Networking\n\nCookbook\n\nNetworking\n\nDelete data on the internet\n\nFetch data from the internet\n\nMake authenticated requests\n\nParse JSON in the background\n\nSend data to the internet\n\nUpdate data over the internet\n\nWork with WebSockets", "source": "https://docs.flutter.dev/cookbook/networking/index.html"} {"id": "aa6468b6f545-0", "text": "Parse JSON in the background\n\nUpdate data over the internet\n\nSend data to the internet\n\nCookbook\n\nNetworking\n\nSend data to the internet\n\n1. Add the http package\n\n2. Sending data to server\n\n3. Convert the http.Response to a custom Dart object\n\nCreate an Album class\nConvert the http.Response to an Album\n\n4. Get a title from user input\n\n5. Display the response on screen\n\nComplete example\n\nSending data to the internet is necessary for most apps.\nThe http package has got that covered, too.\n\nThis recipe uses the following steps:\n\nAdd the http package.\n\nSend data to a server using the http package.\n\nConvert the response into a custom Dart object.\n\nGet a title from user input.\n\nDisplay the response on screen.", "source": "https://docs.flutter.dev/cookbook/networking/send-data/index.html"} {"id": "aa6468b6f545-1", "text": "Get a title from user input.\n\nDisplay the response on screen.\n\n1. Add the http package\n\nTo install the http package, add it to the dependencies section\nof the pubspec.yaml file. You can find the latest version of the\nhttp package on pub.dev.\n\ndependencies\n\nhttp\n\n\n\nImport the http package.\n\nIf you develop for android, \nadd the following permission inside the manifest tag\nin the AndroidManifest.xml file located at android/app/src/main.\n\n\n\n2. Sending data to server\n\nThis recipe covers how to create an Album\nby sending an album title to the\nJSONPlaceholder using the\nhttp.post() method.", "source": "https://docs.flutter.dev/cookbook/networking/send-data/index.html"} {"id": "aa6468b6f545-2", "text": "Import dart:convert for access to jsonEncode to encode the data:\n\nUse the http.post() method to send the encoded data:\n\nThe http.post() method returns a Future that contains a Response.\n\nFuture is a core Dart class for working with\nasynchronous operations. A Future object represents a potential\nvalue or error that will be available at some time in the future.\n\nThe http.Response class contains the data received from a successful\nhttp call.\n\nThe createAlbum() method takes an argument title\nthat is sent to the server to create an Album.\n\n3. Convert the http.Response to a custom Dart object\n\nWhile it\u2019s easy to make a network request,\nworking with a raw Future\nisn\u2019t very convenient. To make your life easier,\nconvert the http.Response into a Dart object.\n\nCreate an Album class", "source": "https://docs.flutter.dev/cookbook/networking/send-data/index.html"} {"id": "aa6468b6f545-3", "text": "Create an Album class\n\nFirst, create an Album class that contains\nthe data from the network request.\nIt includes a factory constructor that\ncreates an Album from JSON.\n\nConverting JSON by hand is only one option.\nFor more information, see the full article on\nJSON and serialization.\n\nConvert the http.Response to an Album\n\nUse the following steps to update the createAlbum()\nfunction to return a Future:\n\nConvert the response body into a JSON Map with the\ndart:convert package.\n\nIf the server returns a CREATED response with a status\ncode of 201, then convert the JSON Map into an Album\nusing the fromJson() factory method.", "source": "https://docs.flutter.dev/cookbook/networking/send-data/index.html"} {"id": "aa6468b6f545-4", "text": "If the server doesn\u2019t return a CREATED response with a\nstatus code of 201, then throw an exception.\n(Even in the case of a \u201c404 Not Found\u201d server response,\nthrow an exception. Do not return null.\nThis is important when examining\nthe data in snapshot, as shown below.)\n\nHooray! Now you\u2019ve got a function that sends the title to a\nserver to create an album.\n\n4. Get a title from user input\n\nNext, create a TextField to enter a title and\na ElevatedButton to send data to server.\nAlso define a TextEditingController to read the\nuser input from a TextField.\n\nWhen the ElevatedButton is pressed, the _futureAlbum\nis set to the value returned by createAlbum() method.\n\nOn pressing the Create Data button, make the network request,\nwhich sends the data in the TextField to the server\nas a POST request.\nThe Future, _futureAlbum, is used in the next step.", "source": "https://docs.flutter.dev/cookbook/networking/send-data/index.html"} {"id": "aa6468b6f545-5", "text": "5. Display the response on screen\n\nTo display the data on screen, use the\nFutureBuilder widget.\nThe FutureBuilder widget comes with Flutter and\nmakes it easy to work with asynchronous data sources.\nYou must provide two parameters:\n\nThe Future you want to work with. In this case,\nthe future returned from the createAlbum() function.\n\nA builder function that tells Flutter what to render,\ndepending on the state of the Future: loading,\nsuccess, or error.\n\nComplete example\n\nParse JSON in the background\n\nUpdate data over the internet", "source": "https://docs.flutter.dev/cookbook/networking/send-data/index.html"} {"id": "026f6380ec78-0", "text": "Send data to the internet\n\nWork with WebSockets\n\nUpdate data over the internet\n\nCookbook\n\nNetworking\n\nUpdate data over the internet\n\n1. Add the http package\n\n2. Updating data over the internet using the http package\n\n3. Convert the http.Response to a custom Dart object\n\nCreate an Album class\nConvert the http.Response to an Album\n4. Get the data from the internet\n\n5. Update the existing title from user input\n\n5. Display the response on screen\n\nComplete example\n\nUpdating data over the internet is necessary for most apps.\nThe http package has got that covered!\n\nThis recipe uses the following steps:\n\nAdd the http package.\n\nUpdate data over the internet using the http package.\n\nConvert the response into a custom Dart object.", "source": "https://docs.flutter.dev/cookbook/networking/update-data/index.html"} {"id": "026f6380ec78-1", "text": "Convert the response into a custom Dart object.\n\nGet the data from the internet.\n\nUpdate the existing title from user input.\n\nUpdate and display the response on screen.\n\n1. Add the http package\n\nTo install the http package,\nadd it to the dependencies section\nof the pubspec.yaml file.\nYou can find the latest version of the\nhttp package on pub.dev.\n\ndependencies\n\nhttp\n\n\n\nImport the http package.\n\n2. Updating data over the internet using the http package\n\nThis recipe covers how to update an album title to the\nJSONPlaceholder using the http.put() method.\n\nThe http.put() method returns a Future that contains a Response.\n\nFuture is a core Dart class for working with\nasync operations. A Future object represents a potential\nvalue or error that will be available at some time in the future.", "source": "https://docs.flutter.dev/cookbook/networking/update-data/index.html"} {"id": "026f6380ec78-2", "text": "The http.Response class contains the data received from a successful\nhttp call.\n\nThe updateAlbum() method takes an argument, title,\nwhich is sent to the server to update the Album.\n\n3. Convert the http.Response to a custom Dart object\n\nWhile it\u2019s easy to make a network request,\nworking with a raw Future\nisn\u2019t very convenient. To make your life easier,\nconvert the http.Response into a Dart object.\n\nCreate an Album class\n\nFirst, create an Album class that contains the data from the\nnetwork request. It includes a factory constructor that\ncreates an Album from JSON.\n\nConverting JSON by hand is only one option.\nFor more information, see the full article on\nJSON and serialization.\n\nConvert the http.Response to an Album\n\nNow, use the following steps to update the updateAlbum()\nfunction to return a Future:", "source": "https://docs.flutter.dev/cookbook/networking/update-data/index.html"} {"id": "026f6380ec78-3", "text": "Convert the response body into a JSON Map with the\ndart:convert package.\n\nIf the server returns an UPDATED response with a status\ncode of 200, then convert the JSON Map into an Album\nusing the fromJson() factory method.\n\nIf the server doesn\u2019t return an UPDATED response with a\nstatus code of 200, then throw an exception.\n(Even in the case of a \u201c404 Not Found\u201d server response,\nthrow an exception. Do not return null.\nThis is important when examining\nthe data in snapshot, as shown below.)\n\nHooray!\nNow you\u2019ve got a function that updates the title of an album.\n\n4. Get the data from the internet\n\nGet the data from internet before you can update it.\nFor a complete example, see the Fetch data recipe.\n\nIdeally, you will use this method to set\n_futureAlbum during initState to fetch\nthe data from the internet.", "source": "https://docs.flutter.dev/cookbook/networking/update-data/index.html"} {"id": "026f6380ec78-4", "text": "5. Update the existing title from user input\n\nCreate a TextField to enter a title and a ElevatedButton\nto update the data on server.\nAlso define a TextEditingController to\nread the user input from a TextField.\n\nWhen the ElevatedButton is pressed,\nthe _futureAlbum is set to the value returned by\nupdateAlbum() method.\n\nOn pressing the Update Data button, a network request\nsends the data in the TextField to the server as a POST request.\nThe _futureAlbum variable is used in the next step.\n\n5. Display the response on screen\n\nTo display the data on screen, use the\nFutureBuilder widget.\nThe FutureBuilder widget comes with Flutter and\nmakes it easy to work with async data sources.\nYou must provide two parameters:\n\nThe Future you want to work with. In this case,\nthe future returned from the updateAlbum() function.", "source": "https://docs.flutter.dev/cookbook/networking/update-data/index.html"} {"id": "026f6380ec78-5", "text": "A builder function that tells Flutter what to render,\ndepending on the state of the Future: loading,\nsuccess, or error.\n\nComplete example\n\nSend data to the internet\n\nWork with WebSockets", "source": "https://docs.flutter.dev/cookbook/networking/update-data/index.html"} {"id": "6abb4b9be5b1-0", "text": "Update data over the internet\n\nPersist data with SQLite\n\nWork with WebSockets\n\nCookbook\n\nNetworking\n\nWork with WebSockets\n\n1. Connect to a WebSocket server\n\n2. Listen for messages from the server\n\nHow this works\n\n3. Send data to the server\n\nHow this works\n\n4. Close the WebSocket connection\n\nComplete example\n\nIn addition to normal HTTP requests,\nyou can connect to servers using WebSockets.\nWebSockets allow for two-way communication with a server\nwithout polling.\n\nIn this example, connect to a\ntest WebSocket server sponsored by Lob.com.\nThe server sends back the same message you send to it.\nThis recipe uses the following steps:\n\nConnect to a WebSocket server.\n\nListen for messages from the server.", "source": "https://docs.flutter.dev/cookbook/networking/web-sockets/index.html"} {"id": "6abb4b9be5b1-1", "text": "Listen for messages from the server.\n\nSend data to the server.\n\nClose the WebSocket connection.\n\n1. Connect to a WebSocket server\n\nThe web_socket_channel package provides the\ntools you need to connect to a WebSocket server.\n\nThe package provides a WebSocketChannel\nthat allows you to both listen for messages\nfrom the server and push messages to the server.\n\nIn Flutter, use the following line to\ncreate a WebSocketChannel that connects to a server:\n\n2. Listen for messages from the server\n\nNow that you\u2019ve established a connection,\nlisten to messages from the server.\n\nAfter sending a message to the test server,\nit sends the same message back.\n\nIn this example, use a StreamBuilder\nwidget to listen for new messages, and a\nText widget to display them.\n\nHow this works\n\nThe WebSocketChannel provides a\nStream of messages from the server.", "source": "https://docs.flutter.dev/cookbook/networking/web-sockets/index.html"} {"id": "6abb4b9be5b1-2", "text": "The WebSocketChannel provides a\nStream of messages from the server.\n\nThe Stream class is a fundamental part of the dart:async package.\nIt provides a way to listen to async events from a data source.\nUnlike Future, which returns a single async response,\nthe Stream class can deliver many events over time.\n\nThe StreamBuilder widget connects to a Stream\nand asks Flutter to rebuild every time it\nreceives an event using the given builder() function.\n\n3. Send data to the server\n\nTo send data to the server,\nadd() messages to the sink provided\nby the WebSocketChannel.\n\nHow this works\n\nThe WebSocketChannel provides a\nStreamSink to push messages to the server.\n\nThe StreamSink class provides a general way to add sync or async\nevents to a data source.\n\n4. Close the WebSocket connection\n\nAfter you\u2019re done using the WebSocket, close the connection:\n\nComplete example", "source": "https://docs.flutter.dev/cookbook/networking/web-sockets/index.html"} {"id": "6abb4b9be5b1-3", "text": "Complete example\n\nUpdate data over the internet\n\nPersist data with SQLite", "source": "https://docs.flutter.dev/cookbook/networking/web-sockets/index.html"} {"id": "46c594c995fd-0", "text": "Persistence\n\nCookbook\n\nPersistence\n\nPersist data with SQLite\n\nRead and write files\n\nStore key-value data on disk", "source": "https://docs.flutter.dev/cookbook/persistence/index.html"} {"id": "baabc1f0ed57-0", "text": "Read and write files\n\nPlay and pause a video\n\nStore key-value data on disk\n\nCookbook\n\nPersistence\n\nStore key-value data on disk\n\n1. Add the dependency\n\n2. Save data\n\n3. Read data\n\n4. Remove data\n\nSupported types\n\nTesting support\n\nComplete example\n\nIf you have a relatively small collection of key-values\nto save, you can use the shared_preferences plugin.\n\nNormally,\nyou would have to write native platform integrations for storing\ndata on both iOS and Android. Fortunately,\nthe shared_preferences plugin can be used to persist\nkey-value data on disk. The shared preferences plugin\nwraps NSUserDefaults on iOS and SharedPreferences on Android,\nproviding a persistent store for simple data.\n\nThis recipe uses the following steps:", "source": "https://docs.flutter.dev/cookbook/persistence/key-value/index.html"} {"id": "baabc1f0ed57-1", "text": "This recipe uses the following steps:\n\nAdd the dependency.\n\nSave data.\n\nRead data.\n\nRemove data.\n\nNote:\n To learn more, watch this short Package of the Week video on the shared_preferences package:\n\n1. Add the dependency\n\nBefore starting, add the shared_preferences\nplugin to the pubspec.yaml file:\n\ndependencies\n\nflutter\n\nsdk\n\nflutter\n\nshared_preferences\n\n\"\n\n2. Save data\n\nTo persist data, use the setter methods provided by the\nSharedPreferences class. Setter methods are available for\nvarious primitive types, such as setInt, setBool, and setString.\n\nSetter methods do two things: First, synchronously update the\nkey-value pair in-memory. Then, persist the data to disk.", "source": "https://docs.flutter.dev/cookbook/persistence/key-value/index.html"} {"id": "baabc1f0ed57-2", "text": "3. Read data\n\nTo read data, use the appropriate getter method provided by the\nSharedPreferences class. For each setter there is a corresponding getter.\nFor example, you can use the getInt, getBool, and getString methods.\n\n4. Remove data\n\nTo delete data, use the remove() method.\n\nSupported types\n\nAlthough key-value storage is easy and convenient to use,\nit has limitations:\n\nOnly primitive types can be used: int, double, bool, string,\nand stringList.\n\nIt\u2019s not designed to store a lot of data.\n\nFor more information about shared preferences on Android,\nsee the shared preferences documentation\non the Android developers website.\n\nTesting support\n\nIt\u2019s a good idea to test code that persists data using\nshared_preferences. You can do this by mocking out the\nMethodChannel used by the shared_preferences library.", "source": "https://docs.flutter.dev/cookbook/persistence/key-value/index.html"} {"id": "baabc1f0ed57-3", "text": "Populate SharedPreferences with initial values in your tests\nby running the following code in a setupAll() method in\nyour test files:\n\nComplete example\n\nRead and write files\n\nPlay and pause a video", "source": "https://docs.flutter.dev/cookbook/persistence/key-value/index.html"} {"id": "874289225aa7-0", "text": "Persist data with SQLite\n\nStore key-value data on disk\n\nRead and write files\n\nCookbook\n\nPersistence\n\nRead and write files\n\n1. Find the correct local path\n\n2. Create a reference to the file location\n\n3. Write data to the file\n\n4. Read data from the file\n\nComplete example\n\nIn some cases, you need to read and write files to disk.\nFor example, you may need to persist data across app launches,\nor download data from the internet and save it for later offline use.\n\nTo save files to disk, combine the path_provider\nplugin with the dart:io library.\n\nThis recipe uses the following steps:\n\nFind the correct local path.\n\nCreate a reference to the file location.\n\nWrite data to the file.\n\nRead data from the file.", "source": "https://docs.flutter.dev/cookbook/persistence/reading-writing-files/index.html"} {"id": "874289225aa7-1", "text": "Write data to the file.\n\nRead data from the file.\n\nNote:\nTo learn more, watch this Package of the Week video on the path_provider package:\n\n1. Find the correct local path\n\nThis example displays a counter. When the counter changes,\nwrite data on disk so you can read it again when the app loads.\nWhere should you store this data?\n\nThe path_provider package\nprovides a platform-agnostic way to access commonly used locations on the\ndevice\u2019s file system. The plugin currently supports access to\ntwo file system locations:\n\nA temporary directory (cache) that the system can\nclear at any time. On iOS, this corresponds to the\nNSCachesDirectory. On Android, this is the value that\ngetCacheDir() returns.\n\nA directory for the app to store files that only\nit can access. The system clears the directory only when the app\nis deleted.\nOn iOS, this corresponds to the NSDocumentDirectory.\nOn Android, this is the AppData directory.", "source": "https://docs.flutter.dev/cookbook/persistence/reading-writing-files/index.html"} {"id": "874289225aa7-2", "text": "This example stores information in the documents directory.\nYou can find the path to the documents directory as follows:\n\n2. Create a reference to the file location\n\nOnce you know where to store the file, create a reference to the\nfile\u2019s full location. You can use the File\nclass from the dart:io library to achieve this.\n\n3. Write data to the file\n\nNow that you have a File to work with,\nuse it to read and write data.\nFirst, write some data to the file.\nThe counter is an integer, but is written to the\nfile as a string using the '$counter' syntax.\n\n4. Read data from the file\n\nNow that you have some data on disk, you can read it.\nOnce again, use the File class.\n\nComplete example\n\nPersist data with SQLite\n\nStore key-value data on disk", "source": "https://docs.flutter.dev/cookbook/persistence/reading-writing-files/index.html"} {"id": "e385237f8276-0", "text": "Work with WebSockets\n\nRead and write files\n\nPersist data with SQLite\n\nCookbook\n\nPersistence\n\nPersist data with SQLite\n\n1. Add the dependencies\n\n2. Define the Dog data model\n\n3. Open the database\n\n4. Create the dogs table\n\n5. Insert a Dog into the database\n\n6. Retrieve the list of Dogs\n\n7. Update a Dog in the database\n\n8. Delete a Dog from the database\n\nExample\n\nIf you are writing an app that needs to persist and query large amounts of data on\nthe local device, consider using a database instead of a local file or\nkey-value store. In general, databases provide faster inserts, updates,\nand queries compared to other local persistence solutions.", "source": "https://docs.flutter.dev/cookbook/persistence/sqlite/index.html"} {"id": "e385237f8276-1", "text": "Flutter apps can make use of the SQLite databases via the\nsqflite plugin available on pub.dev.\nThis recipe demonstrates the basics of using sqflite\nto insert, read, update, and remove data about various Dogs.\n\nIf you are new to SQLite and SQL statements, review the\nSQLite Tutorial to learn the basics before\ncompleting this recipe.\n\nThis recipe uses the following steps:\n\nAdd the dependencies.\n\nDefine the Dog data model.\n\nOpen the database.\n\nCreate the dogs table.\n\nInsert a Dog into the database.\n\nRetrieve the list of dogs.\n\nUpdate a Dog in the database.\n\nDelete a Dog from the database.\n\n1. Add the dependencies\n\nTo work with SQLite databases, import the sqflite and path packages.\n\nThe sqflite package provides classes and functions to\ninteract with a SQLite database.", "source": "https://docs.flutter.dev/cookbook/persistence/sqlite/index.html"} {"id": "e385237f8276-2", "text": "The sqflite package provides classes and functions to\ninteract with a SQLite database.\n\nThe path package provides functions to\ndefine the location for storing the database on disk.\n\ndependencies\n\nflutter\n\nsdk\n\nflutter\n\nsqflite\n\npath\n\nMake sure to import the packages in the file you\u2019ll be working in.\n\n2. Define the Dog data model\n\nBefore creating the table to store information on Dogs, take a few moments to\ndefine the data that needs to be stored. For this example, define a Dog class\nthat contains three pieces of data:\nA unique id, the name, and the age of each dog.\n\n3. Open the database\n\nBefore reading and writing data to the database, open a connection\nto the database. This involves two steps:", "source": "https://docs.flutter.dev/cookbook/persistence/sqlite/index.html"} {"id": "e385237f8276-3", "text": "Define the path to the database file using getDatabasesPath() from the\n sqflite package, combined with the join function from the path package.\n\nOpen the database with the openDatabase() function from sqflite.\n\nNote:\n In order to use the keyword await, the code must be placed\n inside an async function. You should place all the following\n table functions inside void main() async {}.\n\n4. Create the dogs table\n\nThe id is a Dart int, and is stored as an INTEGER SQLite\nDatatype. It is also good practice to use an id as the primary\nkey for the table to improve query and update times.\n\nThe name is a Dart String, and is stored as a TEXT SQLite\nDatatype.\n\nThe age is also a Dart int, and is stored as an INTEGER\nDatatype.\n\nFor more information about the available Datatypes that can be stored in a\nSQLite database, see the official SQLite Datatypes documentation.", "source": "https://docs.flutter.dev/cookbook/persistence/sqlite/index.html"} {"id": "e385237f8276-4", "text": "5. Insert a Dog into the database\n\nNow that you have a database with a table suitable for storing information\nabout various dogs, it\u2019s time to read and write data.\n\nFirst, insert a Dog into the dogs table. This involves two steps:\n\nConvert the Dog into a Map\n\nUse the insert() method to store the\nMap in the dogs table.\n\n6. Retrieve the list of Dogs\n\nNow that a Dog is stored in the database, query the database\nfor a specific dog or a list of all dogs. This involves two steps:\n\nRun a query against the dogs table. This returns a List.\n\nConvert the List into a List.\n\n7. Update a Dog in the database\n\nAfter inserting information into the database,\nyou might want to update that information at a later time.\nYou can do this by using the update()\nmethod from the sqflite library.", "source": "https://docs.flutter.dev/cookbook/persistence/sqlite/index.html"} {"id": "e385237f8276-5", "text": "This involves two steps:\n\nConvert the Dog into a Map.\n\nUse a where clause to ensure you update the correct Dog.\n\nWarning:\n Always use whereArgs to pass arguments to a where statement.\n This helps safeguard against SQL injection attacks.\n\nDo not use string interpolation, such as where: \"id = ${dog.id}\"!\n\n8. Delete a Dog from the database\n\nIn addition to inserting and updating information about Dogs,\nyou can also remove dogs from the database. To delete data,\nuse the delete() method from the sqflite library.\n\nIn this section, create a function that takes an id and deletes the dog with\na matching id from the database. To make this work, you must provide a where\nclause to limit the records being deleted.\n\nExample\n\nTo run the example:\n\nCreate a new Flutter project.\n\nAdd the sqflite and path packages to your pubspec.yaml.", "source": "https://docs.flutter.dev/cookbook/persistence/sqlite/index.html"} {"id": "e385237f8276-6", "text": "Add the sqflite and path packages to your pubspec.yaml.\n\nPaste the following code into a new file called lib/db_test.dart.\n\nRun the code with flutter run lib/db_test.dart.\n\nWork with WebSockets\n\nRead and write files", "source": "https://docs.flutter.dev/cookbook/persistence/sqlite/index.html"} {"id": "0b83c3d6d593-0", "text": "Plugins\n\nCookbook\n\nPlugins\n\nPlay and pause a video\n\nTake a picture using the camera", "source": "https://docs.flutter.dev/cookbook/plugins/index.html"} {"id": "62f11d4bf3a6-0", "text": "Play and pause a video\n\nAn introduction to integration testing\n\nTake a picture using the camera\n\nCookbook\n\nPlugins\n\nTake a picture using the camera\n\n1. Add the required dependencies\n\n2. Get a list of the available cameras\n\n3. Create and initialize the CameraController\n\n4. Use a CameraPreview to display the camera\u2019s feed\n\n5. Take a picture with the CameraController\n\n6. Display the picture with an Image widget\n\nComplete example\n\nMany apps require working with the device\u2019s cameras to\ntake photos and videos. Flutter provides the camera plugin\nfor this purpose. The camera plugin provides tools to get a list of the\navailable cameras, display a preview coming from a specific camera,\nand take photos or videos.", "source": "https://docs.flutter.dev/cookbook/plugins/picture-using-camera/index.html"} {"id": "62f11d4bf3a6-1", "text": "This recipe demonstrates how to use the camera plugin to display a preview,\ntake a photo, and display it using the following steps:\n\nAdd the required dependencies.\n\nGet a list of the available cameras.\n\nCreate and initialize the CameraController.\n\nUse a CameraPreview to display the camera\u2019s feed.\n\nTake a picture with the CameraController.\n\nDisplay the picture with an Image widget.\n\n1. Add the required dependencies\n\nTo complete this recipe, you need to add three dependencies to your app:\n\ncamera\n\nProvides tools to work with the cameras on the device.\n\npath_provider\n\nFinds the correct paths to store images.\n\npath\n\nCreates paths that work on any platform.\n\ndependencies\n\nflutter\n\nsdk\n\nflutter\n\ncamera\n\npath_provider", "source": "https://docs.flutter.dev/cookbook/plugins/picture-using-camera/index.html"} {"id": "62f11d4bf3a6-2", "text": "flutter\n\ncamera\n\npath_provider\n\npath\n\nTip:\n\nFor android, You must update minSdkVersion to 21 (or higher).\n\nOn iOS, lines below have to be added inside ios/Runner/Info.plist in order the access the camera and microphone.\n \nNSCameraUsageDescription\nExplanation on why the camera access is needed.\nNSMicrophoneUsageDescription\nExplanation on why the microphone access is needed.\n\n2. Get a list of the available cameras\n\nNext, get a list of available cameras using the camera plugin.\n\n3. Create and initialize the CameraController", "source": "https://docs.flutter.dev/cookbook/plugins/picture-using-camera/index.html"} {"id": "62f11d4bf3a6-3", "text": "3. Create and initialize the CameraController\n\nOnce you have a camera, use the following steps to\ncreate and initialize a CameraController.\nThis process establishes a connection to\nthe device\u2019s camera that allows you to control the camera\nand display a preview of the camera\u2019s feed.\n\nCreate a StatefulWidget with a companion State class.\n\nAdd a variable to the State class to store the CameraController.\n\nAdd a variable to the State class to store the Future\nreturned from CameraController.initialize().\n\nCreate and initialize the controller in the initState() method.\n\nDispose of the controller in the dispose() method.\n\nWarning:\n If you do not initialize the CameraController,\n you cannot use the camera to display a preview and take pictures.\n\n4. Use a CameraPreview to display the camera\u2019s feed\n\nNext, use the CameraPreview widget from the camera package to\ndisplay a preview of the camera\u2019s feed.", "source": "https://docs.flutter.dev/cookbook/plugins/picture-using-camera/index.html"} {"id": "62f11d4bf3a6-4", "text": "Remember You must wait until the controller has finished\n initializing before working with the camera. Therefore,\n you must wait for the _initializeControllerFuture() created\n in the previous step to complete before showing a CameraPreview.\n\nUse a FutureBuilder for exactly this purpose.\n\n5. Take a picture with the CameraController\n\ntakePicture() method, which returns an\n\nXFile,\na cross-platform, simplified\n\nIn this example, create a FloatingActionButton that takes a picture\nusing the CameraController when a user taps on the button.\n\nTaking a picture requires 2 steps:\n\nEnsure that the camera is initialized.\n\nUse the controller to take a picture and ensure that it returns a Future.\n\nIt is good practice to wrap these operations in a try / catch block in order\nto handle any errors that might occur.\n\n6. Display the picture with an Image widget", "source": "https://docs.flutter.dev/cookbook/plugins/picture-using-camera/index.html"} {"id": "62f11d4bf3a6-5", "text": "6. Display the picture with an Image widget\n\nIf you take the picture successfully, you can then display the saved picture\nusing an Image widget. In this case, the picture is stored as a file on\nthe device.\n\nTherefore, you must provide a File to the Image.file constructor.\nYou can create an instance of the File class by passing the path created in\nthe previous step.\n\nComplete example\n\nPlay and pause a video\n\nAn introduction to integration testing", "source": "https://docs.flutter.dev/cookbook/plugins/picture-using-camera/index.html"} {"id": "0a52ee9cffbc-0", "text": "Store key-value data on disk\n\nTake a picture using the camera\n\nPlay and pause a video\n\nCookbook\n\nPlugins\n\nPlay and pause a video\n\n1. Add the video_player dependency\n\n2. Add permissions to your app\n\nAndroid\niOS\n\n3. Create and initialize a VideoPlayerController\n\n4. Display the video player\n\n5. Play and pause the video\n\nComplete example\n\nPlaying videos is a common task in app development,\nand Flutter apps are no exception. To play videos,\nthe Flutter team provides the video_player plugin.\nYou can use the video_player plugin to play videos\nstored on the file system, as an asset, or from the internet.\n\nOn iOS, the video_player plugin makes use of\nAVPlayer to handle playback. On Android,\nit uses ExoPlayer.", "source": "https://docs.flutter.dev/cookbook/plugins/play-video/index.html"} {"id": "0a52ee9cffbc-1", "text": "This recipe demonstrates how to use the video_player package to stream a\nvideo from the internet with basic play and pause controls using\nthe following steps:\n\nAdd the video_player dependency.\n\nAdd permissions to your app.\n\nCreate and initialize a VideoPlayerController.\n\nDisplay the video player.\n\nPlay and pause the video.\n\n1. Add the video_player dependency\n\nThis recipe depends on one Flutter plugin: video_player. First, add this\ndependency to your pubspec.yaml.\n\ndependencies\n\nflutter\n\nsdk\n\nflutter\n\nvideo_player\n\n2. Add permissions to your app\n\nNext, update your android and ios configurations to ensure\nthat your app has the correct permissions to stream videos\nfrom the internet.\n\nAndroid", "source": "https://docs.flutter.dev/cookbook/plugins/play-video/index.html"} {"id": "0a52ee9cffbc-2", "text": "Android\n\nAdd the following permission to the AndroidManifest.xml file just after the\n definition. The AndroidManifest.xml file is found at\n/android/app/src/main/AndroidManifest.xml.\n\n\n\n\n\n\n\niOS\n\nFor iOS, add the following to the Info.plist file found at\n/ios/Runner/Info.plist.\n\nNSAppTransportSecurity\n\n\n\n\n\nNSAllowsArbitraryLoads", "source": "https://docs.flutter.dev/cookbook/plugins/play-video/index.html"} {"id": "0a52ee9cffbc-3", "text": "\n\nNSAllowsArbitraryLoads\n\n\n\n\n\n\n\nWarning:\n The video_player plugin doesn\u2019t work on iOS simulators.\n You must test videos on real iOS devices.\n\n3. Create and initialize a VideoPlayerController\n\nNow that you have the video_player plugin installed with the correct\npermissions, create a VideoPlayerController. The\nVideoPlayerController class allows you to connect to different types of\nvideos and control playback.\n\nBefore you can play videos, you must also initialize the controller.\nThis establishes the connection to the video and prepare the\ncontroller for playback.\n\nTo create and initialize the VideoPlayerController do the following:\n\nCreate a StatefulWidget with a companion State class\n\nAdd a variable to the State class to store the VideoPlayerController", "source": "https://docs.flutter.dev/cookbook/plugins/play-video/index.html"} {"id": "0a52ee9cffbc-4", "text": "Add a variable to the State class to store the VideoPlayerController\n\nAdd a variable to the State class to store the Future returned from\n VideoPlayerController.initialize\n\nCreate and initialize the controller in the initState method\n\nDispose of the controller in the dispose method\n\n4. Display the video player\n\nNow, display the video. The video_player plugin provides the\nVideoPlayer widget to display the video initialized by\nthe VideoPlayerController.\nBy default, the VideoPlayer widget takes up as much space as possible.\nThis often isn\u2019t ideal for videos because they are meant\nto be displayed in a specific aspect ratio, such as 16x9 or 4x3.\n\nTherefore, wrap the VideoPlayer widget in an AspectRatio\nwidget to ensure that the video has the correct proportions.", "source": "https://docs.flutter.dev/cookbook/plugins/play-video/index.html"} {"id": "0a52ee9cffbc-5", "text": "Furthermore, you must display the VideoPlayer widget after the\n_initializeVideoPlayerFuture() completes. Use FutureBuilder to\ndisplay a loading spinner until the controller finishes initializing.\nNote: initializing the controller does not begin playback.\n\n5. Play and pause the video\n\nBy default, the video starts in a paused state. To begin playback,\ncall the play() method provided by the VideoPlayerController.\nTo pause playback, call the pause() method.\n\nFor this example,\nadd a FloatingActionButton to your app that displays a play\nor pause icon depending on the situation.\nWhen the user taps the button,\nplay the video if it\u2019s currently paused,\nor pause the video if it\u2019s playing.\n\nComplete example\n\nStore key-value data on disk\n\nTake a picture using the camera", "source": "https://docs.flutter.dev/cookbook/plugins/play-video/index.html"} {"id": "c556916392c9-0", "text": "Testing\n\nCookbook\n\nTesting\n\nIntegration\n\nUnit\n\nWidget\n\nIntegration\n\nAn introduction to integration testing\n\nPerformance profiling\n\nUnit\n\nAn introduction to unit testing\n\nMock dependencies using Mockito\n\nWidget\n\nAn introduction to widget testing\n\nFind widgets\n\nHandle scrolling\n\nTap, drag, and enter text", "source": "https://docs.flutter.dev/cookbook/testing/index.html"} {"id": "3d7dc9a8bbb6-0", "text": "Integration\n\nCookbook\n\nTesting\n\nIntegration\n\nAn introduction to integration testing\n\nPerformance profiling", "source": "https://docs.flutter.dev/cookbook/testing/integration/index.html"} {"id": "99a6832fcc4d-0", "text": "Take a picture using the camera\n\nPerformance profiling\n\nAn introduction to integration testing\n\nCookbook\n\nTesting\n\nIntegration\n\nIntroduction\n\n1. Create an app to test\n\n2. Add the integration_test dependency\n\n3. Create the test files\n\n4. Write the integration test\n\n5. Run the integration test\n\n5a. Mobile\n5b. Web\n\nUnit tests and widget tests are handy for testing individual classes,\nfunctions, or widgets. However, they generally don\u2019t test how\nindividual pieces work together as a whole, or capture the performance\nof an application running on a real device. These tasks are performed\nwith integration tests.\n\nIntegration tests are written using the integration_test package, provided\nby the SDK.", "source": "https://docs.flutter.dev/cookbook/testing/integration/introduction/index.html"} {"id": "99a6832fcc4d-1", "text": "Integration tests are written using the integration_test package, provided\nby the SDK.\n\nIn this recipe, learn how to test a counter app. It demonstrates\nhow to setup integration tests, how to verify specific text is displayed\nby the app, how to tap specific widgets, and how to run integration tests.\n\nThis recipe uses the following steps:\n\nCreate an app to test.\n\nAdd the integration_test dependency.\n\nCreate the test files.\n\nWrite the integration test.\n\nRun the integration test.\n\n1. Create an app to test\n\nFirst, create an app for testing. In this example,\ntest the counter app produced by the flutter create\ncommand. This app allows a user to tap on a button\nto increase a counter.\n\n2. Add the integration_test dependency", "source": "https://docs.flutter.dev/cookbook/testing/integration/introduction/index.html"} {"id": "99a6832fcc4d-2", "text": "2. Add the integration_test dependency\n\nNext, use the integration_test and flutter_test packages\nto write integration tests. Add these dependencies to the dev_dependencies\nsection of the app\u2019s pubspec.yaml file, specifying the Flutter SDK as the\nlocation of the package.\n\ndev_dependencies\n\nintegration_test\n\nsdk\n\nflutter\n\nflutter_test\n\nsdk\n\nflutter\n\n3. Create the test files\n\nCreate a new directory, integration_test, with an empty app_test.dart file:\n\n4. Write the integration test\n\nNow you can write tests. This involves three steps:\n\nInitialize IntegrationTestWidgetsFlutterBinding, a singleton service that\nexecutes tests on a physical device.\n\nInteract and tests widgets using the WidgetTester class.\n\nTest the important scenarios.\n\n5. Run the integration test", "source": "https://docs.flutter.dev/cookbook/testing/integration/introduction/index.html"} {"id": "99a6832fcc4d-3", "text": "Test the important scenarios.\n\n5. Run the integration test\n\nThe process of running the integration tests varies depending on the platform\nyou are testing against. You can test against a mobile platform or the web.\n\n5a. Mobile\n\nTo test on a real iOS / Android device, first connect the device and run the\nfollowing command from the root of the project:\n\nflutter test integration_test/app_test.dart\n\nOr, you can specify the directory to run all integration tests:\n\nflutter test integration_test\n\nThis command runs the app and integration tests on the target device. For more\ninformation, see the Integration testing page.\n\n5b. Web\n\nTo get started testing in a web browser, Download ChromeDriver.\n\nNext, create a new directory named test_driver containing a new file\nnamed integration_test.dart:\n\nLaunch chromedriver as follows:", "source": "https://docs.flutter.dev/cookbook/testing/integration/introduction/index.html"} {"id": "99a6832fcc4d-4", "text": "Launch chromedriver as follows:\n\nchromedriver --port=4444\n\nFrom the root of the project, run the following command:\n\nflutter drive \\\n --driver=test_driver/integration_test.dart \\\n --target=integration_test/app_test.dart \\\n -d chrome\n\nFor a headless testing experience, you can also run flutter drive \nwith web-server as the target device identifier as follows:\n\nflutter drive \\\n --driver=test_driver/integration_test.dart \\\n --target=integration_test/app_test.dart \\\n -d web-server\n\nTake a picture using the camera\n\nPerformance profiling", "source": "https://docs.flutter.dev/cookbook/testing/integration/introduction/index.html"} {"id": "c4c5e06d254c-0", "text": "An introduction to integration testing\n\nAn introduction to unit testing\n\nPerformance profiling\n\nCookbook\n\nTesting\n\nIntegration\n\nPerformance profiling\n\n1. Write a test that scrolls through a list of items\n\n2. Record the performance of the app\n\n3. Save the results to disk\n\n4. Run the test\n\n5. Review the results\n\nSummary example\n\nComplete example\n\nWhen it comes to mobile apps, performance is critical to user experience.\nUsers expect apps to have smooth scrolling and meaningful animations free of\nstuttering or skipped frames, known as \u201cjank.\u201d How to ensure that your app\nis free of jank on a wide variety of devices?", "source": "https://docs.flutter.dev/cookbook/testing/integration/profiling/index.html"} {"id": "c4c5e06d254c-1", "text": "There are two options: first, manually test the app on different devices.\nWhile that approach might work for a smaller app, it becomes more\ncumbersome as an app grows in size. Alternatively, run an integration\ntest that performs a specific task and records a performance timeline.\nThen, examine the results to determine whether a specific section of\nthe app needs to be improved.\n\nIn this recipe, learn how to write a test that records a performance\ntimeline while performing a specific task and saves a summary of the\nresults to a local file.\n\nThis recipe uses the following steps:\n\nWrite a test that scrolls through a list of items.\n\nRecord the performance of the app.\n\nSave the results to disk.\n\nRun the test.\n\nReview the results.\n\n1. Write a test that scrolls through a list of items", "source": "https://docs.flutter.dev/cookbook/testing/integration/profiling/index.html"} {"id": "c4c5e06d254c-2", "text": "1. Write a test that scrolls through a list of items\n\nIn this recipe, record the performance of an app as it scrolls through a\nlist of items. To focus on performance profiling, this recipe builds\non the Scrolling recipe in widget tests.\n\nFollow the instructions in that recipe to create an app and write a test to\nverify that everything works as expected.\n\n2. Record the performance of the app\n\nNext, record the performance of the app as it scrolls through the\nlist. Perform this task using the traceAction()\nmethod provided by the IntegrationTestWidgetsFlutterBinding class.\n\nThis method runs the provided function and records a Timeline\nwith detailed information about the performance of the app. This example\nprovides a function that scrolls through the list of items,\nensuring that a specific item is displayed. When the function completes,\nthe traceAction() creates a report data Map that contains the Timeline.\n\n3. Save the results to disk", "source": "https://docs.flutter.dev/cookbook/testing/integration/profiling/index.html"} {"id": "c4c5e06d254c-3", "text": "3. Save the results to disk\n\nNow that you\u2019ve captured a performance timeline, you need a way to review it.\nThe Timeline object provides detailed information about all of the events\nthat took place, but it doesn\u2019t provide a convenient way to review the results.\n\nTherefore, convert the Timeline into a TimelineSummary.\nThe TimelineSummary can perform two tasks that make it easier\nto review the results:\n\nWriting a json document on disk that summarizes the data contained\nwithin the Timeline. This summary includes information about the\nnumber of skipped frames, slowest build times, and more.\n\nSaving the complete Timeline as a json file on disk.\nThis file can be opened with the Chrome browser\u2019s\ntracing tools found at chrome://tracing.\n\nTo capture the results, create a file named perf_driver.dart\nin the test_driver folder and add the following code:", "source": "https://docs.flutter.dev/cookbook/testing/integration/profiling/index.html"} {"id": "c4c5e06d254c-4", "text": "The integrationDriver function has a responseDataCallback \nwhich you can customize. \nBy default, it writes the results to the integration_response_data.json file,\nbut you can customize it to generate a summary like in this example.\n\n4. Run the test\n\nAfter configuring the test to capture a performance Timeline and save a\nsummary of the results to disk, run the test with the following command:\n\nThe --profile option means to compile the app for the \u201cprofile mode\u201d \nrather than the \u201cdebug mode\u201d, so that the benchmark result is closer to \nwhat will be experienced by end users.\n\nNote:\n Run the command with --no-dds when running on a mobile device or emulator.\n This option disables the Dart Development Service (DDS), which won\u2019t\n be accessible from your computer.\n\n5. Review the results\n\nAfter the test completes successfully, the build directory at the root of\nthe project contains two files:", "source": "https://docs.flutter.dev/cookbook/testing/integration/profiling/index.html"} {"id": "c4c5e06d254c-5", "text": "scrolling_summary.timeline_summary.json contains the summary. Open\nthe file with any text editor to review the information contained\nwithin. With a more advanced setup, you could save a summary every\ntime the test runs and create a graph of the results.\n\nscrolling_timeline.timeline.json contains the complete timeline data.\nOpen the file using the Chrome browser\u2019s tracing tools found at\nchrome://tracing. The tracing tools provide a\nconvenient interface for inspecting the timeline data to discover\nthe source of a performance issue.\n\nSummary example\n\n\"average_frame_build_time_millis\"\n\n4.2592592592592595\n\n\"worst_frame_build_time_millis\"\n\n21.0\n\n\"missed_frame_build_budget_count\"\n\n\"average_frame_rasterizer_time_millis\"", "source": "https://docs.flutter.dev/cookbook/testing/integration/profiling/index.html"} {"id": "c4c5e06d254c-6", "text": "\"average_frame_rasterizer_time_millis\"\n\n5.518518518518518\n\n\"worst_frame_rasterizer_time_millis\"\n\n51.0\n\n\"missed_frame_rasterizer_budget_count\"\n\n10\n\n\"frame_count\"\n\n54\n\n\"frame_build_times\"\n\n6874\n\n5019\n\n3638\n\n],\n\n\"frame_rasterizer_times\"\n\n51955\n\n8468\n\n3129\n\nComplete example\n\nintegration_test/scrolling_test.dart\n\ntest_driver/perf_driver.dart", "source": "https://docs.flutter.dev/cookbook/testing/integration/profiling/index.html"} {"id": "c4c5e06d254c-7", "text": "test_driver/perf_driver.dart\n\nAn introduction to integration testing\n\nAn introduction to unit testing", "source": "https://docs.flutter.dev/cookbook/testing/integration/profiling/index.html"} {"id": "3895f94c088a-0", "text": "Unit\n\nCookbook\n\nTesting\n\nUnit\n\nAn introduction to unit testing\n\nMock dependencies using Mockito", "source": "https://docs.flutter.dev/cookbook/testing/unit/index.html"} {"id": "8a0f5a9b4f7b-0", "text": "Performance profiling\n\nMock dependencies using Mockito\n\nAn introduction to unit testing\n\nCookbook\n\nTesting\n\nUnit\n\nIntroduction\n\n1. Add the test dependency\n\n2. Create a test file\n\n3. Create a class to test\n\n4. Write a test for our class\n\n5. Combine multiple tests in a group\n\n6. Run the tests\n\nRun tests using IntelliJ or VSCode\nRun tests in a terminal\n\nHow can you ensure that your app continues to work as you\nadd more features or change existing functionality?\nBy writing tests.\n\nUnit tests are handy for verifying the behavior of a single function,\nmethod, or class. The test package provides the\ncore framework for writing unit tests, and the flutter_test\npackage provides additional utilities for testing widgets.", "source": "https://docs.flutter.dev/cookbook/testing/unit/introduction/index.html"} {"id": "8a0f5a9b4f7b-1", "text": "This recipe demonstrates the core features provided by the test package\nusing the following steps:\n\nAdd the test or flutter_test dependency.\n\nCreate a test file.\n\nCreate a class to test.\n\nWrite a test for our class.\n\nCombine multiple tests in a group.\n\nRun the tests.\n\nFor more information about the test package,\nsee the test package documentation.\n\n1. Add the test dependency\n\nThe test package provides the core functionality for \nwriting tests in Dart. This is the best approach when\nwriting packages consumed by web, server, and Flutter apps.\n\ndev_dependencies\n\ntest\n\n\n\n2. Create a test file\n\nIn this example, create two files: counter.dart and counter_test.dart.", "source": "https://docs.flutter.dev/cookbook/testing/unit/introduction/index.html"} {"id": "8a0f5a9b4f7b-2", "text": "In this example, create two files: counter.dart and counter_test.dart.\n\nThe counter.dart file contains a class that you want to test and\nresides in the lib folder. The counter_test.dart file contains\nthe tests themselves and lives inside the test folder.\n\nIn general, test files should reside inside a test folder\nlocated at the root of your Flutter application or package.\nTest files should always end with _test.dart,\nthis is the convention used by the test runner when searching for tests.\n\nWhen you\u2019re finished, the folder structure should look like this:\n\n3. Create a class to test\n\nNext, you need a \u201cunit\u201d to test. Remember: \u201cunit\u201d is another name for a\nfunction, method, or class. For this example, create a Counter class\ninside the lib/counter.dart file. It is responsible for incrementing\nand decrementing a value starting at 0.", "source": "https://docs.flutter.dev/cookbook/testing/unit/introduction/index.html"} {"id": "8a0f5a9b4f7b-3", "text": "Note: For simplicity, this tutorial does not follow the \u201cTest Driven\nDevelopment\u201d approach. If you\u2019re more comfortable with that style of\ndevelopment, you can always go that route.\n\n4. Write a test for our class\n\nInside the counter_test.dart file, write the first unit test. Tests are\ndefined using the top-level test function, and you can check if the results\nare correct by using the top-level expect function.\nBoth of these functions come from the test package.\n\n5. Combine multiple tests in a group\n\nIf you have several tests that are related to one another,\ncombine them using the group function provided by the test package.\n\n6. Run the tests\n\nNow that you have a Counter class with tests in place,\nyou can run the tests.\n\nRun tests using IntelliJ or VSCode", "source": "https://docs.flutter.dev/cookbook/testing/unit/introduction/index.html"} {"id": "8a0f5a9b4f7b-4", "text": "Run tests using IntelliJ or VSCode\n\nThe Flutter plugins for IntelliJ and VSCode support running tests.\nThis is often the best option while writing tests because it provides the\nfastest feedback loop as well as the ability to set breakpoints.\n\nIntelliJ\n \n Open the counter_test.dart file\n Select the Run menu\n Click the Run 'tests in counter_test.dart' option\n Alternatively, use the appropriate keyboard shortcut\nfor your platform.\n\nVSCode\n \n Open the counter_test.dart file\n Select the Run menu\n Click the Start Debugging option\n Alternatively, use the appropriate keyboard shortcut\nfor your platform.\n\nRun tests in a terminal\n\nYou can also use a terminal to run the tests by executing the following\ncommand from the root of the project:\n\nFor more options regarding unit tests, you can execute this command:\n\nPerformance profiling\n\nMock dependencies using Mockito", "source": "https://docs.flutter.dev/cookbook/testing/unit/introduction/index.html"} {"id": "64b454328c00-0", "text": "An introduction to unit testing\n\nAn introduction to widget testing\n\nMock dependencies using Mockito\n\nCookbook\n\nTesting\n\nUnit\n\nMocking\n\n1. Add the package dependencies\n\n2. Create a function to test\n\n3. Create a test file with a mock http.Client\n\n4. Write a test for each condition\n\n5. Run the tests\n\nComplete example\n\nSummary\n\nSometimes, unit tests might depend on classes that fetch data from live\nweb services or databases. This is inconvenient for a few reasons:\n\nCalling live services or databases slows down test execution.\n\nA passing test might start failing if a web service or database returns\nunexpected results. This is known as a \u201cflaky test.\u201d\n\nIt is difficult to test all possible success and failure scenarios\nby using a live web service or database.", "source": "https://docs.flutter.dev/cookbook/testing/unit/mocking/index.html"} {"id": "64b454328c00-1", "text": "Therefore, rather than relying on a live web service or database,\nyou can \u201cmock\u201d these dependencies. Mocks allow emulating a live\nweb service or database and return specific results depending\non the situation.\n\nGenerally speaking, you can mock dependencies by creating an alternative\nimplementation of a class. Write these alternative implementations by\nhand or make use of the Mockito package as a shortcut.\n\nThis recipe demonstrates the basics of mocking with the\nMockito package using the following steps:\n\nAdd the package dependencies.\n\nCreate a function to test.\n\nCreate a test file with a mock http.Client.\n\nWrite a test for each condition.\n\nRun the tests.\n\nFor more information, see the Mockito package documentation.\n\n1. Add the package dependencies\n\nTo use the mockito package, add it to the\npubspec.yaml file along with the flutter_test dependency in the\ndev_dependencies section.", "source": "https://docs.flutter.dev/cookbook/testing/unit/mocking/index.html"} {"id": "64b454328c00-2", "text": "This example also uses the http package,\nso define that dependency in the dependencies section.\n\nmockito: 5.0.0 supports Dart\u2019s null safety thanks to code generation.\nTo run the required code generation, add the build_runner dependency\nin the dev_dependencies section.\n\ndependencies\n\nhttp\n\n\n\ndev_dependencies\n\nflutter_test\n\nsdk\n\nflutter\n\nmockito\n\n\n\nbuild_runner\n\n\n\n2. Create a function to test\n\nIn this example, unit test the fetchAlbum function from the\nFetch data from the internet recipe.\nTo test this function, make two changes:", "source": "https://docs.flutter.dev/cookbook/testing/unit/mocking/index.html"} {"id": "64b454328c00-3", "text": "Provide an http.Client to the function. This allows providing the\ncorrect http.Client depending on the situation.\nFor Flutter and server-side projects, provide an http.IOClient.\nFor Browser apps, provide an http.BrowserClient.\nFor tests, provide a mock http.Client.\n\nUse the provided client to fetch data from the internet,\nrather than the static http.get() method, which is difficult to mock.\n\nThe function should now look like this:\n\nIn your app code, you can provide an http.Client to the fetchAlbum method \ndirectly with fetchAlbum(http.Client()). http.Client() creates a default\nhttp.Client.\n\n3. Create a test file with a mock http.Client\n\nNext, create a test file.\n\nFollowing the advice in the Introduction to unit testing recipe,\ncreate a file called fetch_album_test.dart in the root test folder.", "source": "https://docs.flutter.dev/cookbook/testing/unit/mocking/index.html"} {"id": "64b454328c00-4", "text": "Add the annotation @GenerateMocks([http.Client]) to the main\nfunction to generate a MockClient class with mockito.\n\nThe generated MockClient class implements the http.Client class.\nThis allows you to pass the MockClient to the fetchAlbum function,\nand return different http responses in each test.\n\nThe generated mocks will be located in fetch_album_test.mocks.dart.\nImport this file to use them.\n\nNext, generate the mocks running the following command:\n\nflutter pub run build_runner build\n\n4. Write a test for each condition\n\nThe fetchAlbum() function does one of two things:\n\nReturns an Album if the http call succeeds\n\nThrows an Exception if the http call fails", "source": "https://docs.flutter.dev/cookbook/testing/unit/mocking/index.html"} {"id": "64b454328c00-5", "text": "Throws an Exception if the http call fails\n\nTherefore, you want to test these two conditions.\nUse the MockClient class to return an \u201cOk\u201d response\nfor the success test, and an error response for the unsuccessful test.\nTest these conditions using the when() function provided by\nMockito:\n\n5. Run the tests\n\nNow that you have a fetchAlbum() function with tests in place,\nrun the tests.\n\nflutter\n\ntest test/fetch_album_test.dart\n\nYou can also run tests inside your favorite editor by following the\ninstructions in the Introduction to unit testing recipe.\n\nComplete example\n\nlib/main.dart\n\ntest/fetch_album_test.dart\n\nSummary", "source": "https://docs.flutter.dev/cookbook/testing/unit/mocking/index.html"} {"id": "64b454328c00-6", "text": "test/fetch_album_test.dart\n\nSummary\n\nIn this example, you\u2019ve learned how to use Mockito to test functions or classes\nthat depend on web services or databases. This is only a short introduction to\nthe Mockito library and the concept of mocking. For more information,\nsee the documentation provided by the Mockito package.\n\nAn introduction to unit testing\n\nAn introduction to widget testing", "source": "https://docs.flutter.dev/cookbook/testing/unit/mocking/index.html"} {"id": "81b436c6cd64-0", "text": "An introduction to widget testing\n\nHandle scrolling\n\nFind widgets\n\nCookbook\n\nTesting\n\nWidget\n\nFind widgets\n\n1. Find a Text widget\n\n2. Find a widget with a specific Key\n\n3. Find a specific widget instance\n\nSummary\n\nComplete example\n\nTo locate widgets in a test environment, use the Finder\nclasses. While it\u2019s possible to write your own Finder classes,\nit\u2019s generally more convenient to locate widgets using the tools\nprovided by the flutter_test package.\n\nDuring a flutter run session on a widget test, you can also\ninteractively tap parts of the screen for the Flutter tool to\nprint the suggested Finder.", "source": "https://docs.flutter.dev/cookbook/testing/widget/finders/index.html"} {"id": "81b436c6cd64-1", "text": "This recipe looks at the find constant provided by\nthe flutter_test package, and demonstrates how\nto work with some of the Finders it provides.\nFor a full list of available finders,\nsee the CommonFinders documentation.\n\nIf you\u2019re unfamiliar with widget testing and the role of\nFinder classes,\nreview the Introduction to widget testing recipe.\n\nThis recipe uses the following steps:\n\nFind a Text widget.\n\nFind a widget with a specific Key.\n\nFind a specific widget instance.\n\n1. Find a Text widget\n\nIn testing, you often need to find widgets that contain specific text.\nThis is exactly what the find.text() method is for. It creates a\nFinder that searches for widgets that display a specific String of text.\n\n2. Find a widget with a specific Key", "source": "https://docs.flutter.dev/cookbook/testing/widget/finders/index.html"} {"id": "81b436c6cd64-2", "text": "2. Find a widget with a specific Key\n\nIn some cases, you might want to find a widget based on the Key that has been\nprovided to it. This can be handy if displaying multiple instances of the\nsame widget. For example, a ListView might display several\nText widgets that contain the same text.\n\nIn this case, provide a Key to each widget in the list. This allows\nan app to uniquely identify a specific widget, making it easier to find\nthe widget in the test environment.\n\n3. Find a specific widget instance\n\nFinally, you might be interested in locating a specific instance of a widget.\nFor example, this can be useful when creating widgets that take a child\nproperty and you want to ensure you\u2019re rendering the child widget.\n\nSummary\n\nThe find constant provided by the flutter_test package provides\nseveral ways to locate widgets in the test environment. This recipe\ndemonstrated three of these methods, and several more methods exist\nfor different purposes.", "source": "https://docs.flutter.dev/cookbook/testing/widget/finders/index.html"} {"id": "81b436c6cd64-3", "text": "If the above examples do not work for a particular use-case,\nsee the CommonFinders documentation\nto review all available methods.\n\nComplete example\n\nAn introduction to widget testing\n\nHandle scrolling", "source": "https://docs.flutter.dev/cookbook/testing/widget/finders/index.html"} {"id": "c4c286172998-0", "text": "Widget\n\nCookbook\n\nTesting\n\nWidget\n\nAn introduction to widget testing\n\nFind widgets\n\nHandle scrolling\n\nTap, drag, and enter text", "source": "https://docs.flutter.dev/cookbook/testing/widget/index.html"} {"id": "9dda9d8aba75-0", "text": "Mock dependencies using Mockito\n\nFind widgets\n\nAn introduction to widget testing\n\nCookbook\n\nTesting\n\nWidget\n\nIntroduction\n\n1. Add the flutter_test dependency\n\n2. Create a widget to test\n\n3. Create a testWidgets test\n\n4. Build the widget using the WidgetTester\n\nNotes about the pump() methods\n\n5. Search for our widget using a Finder\n\n6. Verify the widget using a Matcher\n\nAdditional Matchers\n\nComplete example\n\nIn the introduction to unit testing recipe,\nyou learned how to test Dart classes using the test package.\nTo test widget classes, you need a few additional tools provided by the\nflutter_test package, which ships with the Flutter SDK.\n\nThe flutter_test package provides the following tools for\ntesting widgets:", "source": "https://docs.flutter.dev/cookbook/testing/widget/introduction/index.html"} {"id": "9dda9d8aba75-1", "text": "The flutter_test package provides the following tools for\ntesting widgets:\n\nThe WidgetTester allows building and interacting\nwith widgets in a test environment.\n\nThe testWidgets() function automatically\ncreates a new WidgetTester for each test case,\nand is used in place of the normal test() function.\n\nThe Finder classes allow searching for widgets\nin the test environment.\n\nWidget-specific Matcher constants help verify\n whether a Finder locates a widget or\nmultiple widgets in the test environment.\n\nIf this sounds overwhelming, don\u2019t worry. Learn how all of these pieces fit\ntogether throughout this recipe, which uses the following steps:\n\nAdd the flutter_test dependency.\n\nCreate a widget to test.\n\nCreate a testWidgets test.\n\nBuild the widget using the WidgetTester.\n\nSearch for the widget using a Finder.\n\nVerify the widget using a Matcher.", "source": "https://docs.flutter.dev/cookbook/testing/widget/introduction/index.html"} {"id": "9dda9d8aba75-2", "text": "Verify the widget using a Matcher.\n\n1. Add the flutter_test dependency\n\nBefore writing tests, include the flutter_test\ndependency in the dev_dependencies section of the pubspec.yaml file.\nIf creating a new Flutter project with the command line tools or\na code editor, this dependency should already be in place.\n\ndev_dependencies\n\nflutter_test\n\nsdk\n\nflutter\n\n2. Create a widget to test\n\nNext, create a widget for testing. For this recipe,\ncreate a widget that displays a title and message.\n\n3. Create a testWidgets test\n\nWith a widget to test, begin by writing your first test.\nUse the testWidgets() function provided by the\nflutter_test package to define a test.\nThe testWidgets function allows you to define a\nwidget test and creates a WidgetTester to work with.", "source": "https://docs.flutter.dev/cookbook/testing/widget/introduction/index.html"} {"id": "9dda9d8aba75-3", "text": "This test verifies that MyWidget displays a given title and message.\nIt is titled accordingly, and it will be populated in the next section.\n\n4. Build the widget using the WidgetTester\n\nNext, build MyWidget inside the test environment by using the\npumpWidget() method provided by WidgetTester.\nThe pumpWidget method builds and renders the provided widget.\n\nCreate a MyWidget instance that displays \u201cT\u201d as the title\nand \u201cM\u201d as the message.\n\nNotes about the pump() methods\n\nAfter the initial call to pumpWidget(), the WidgetTester provides\nadditional ways to rebuild the same widget. This is useful if you\u2019re\nworking with a StatefulWidget or animations.\n\nFor example, tapping a button calls setState(), but Flutter won\u2019t\nautomatically rebuild your widget in the test environment.\nUse one of the following methods to ask Flutter to rebuild the widget.\n\ntester.pump(Duration duration)", "source": "https://docs.flutter.dev/cookbook/testing/widget/introduction/index.html"} {"id": "9dda9d8aba75-4", "text": "tester.pump(Duration duration)\n\nSchedules a frame and triggers a rebuild of the widget.\nIf a Duration is specified, it advances the clock by\nthat amount and schedules a frame. It does not schedule\nmultiple frames even if the duration is longer than a\nsingle frame.\n\nNote:\n To kick off the animation, you need to call pump()\n once (with no duration specified) to start the ticker.\n Without it, the animation does not start.\n\ntester.pumpAndSettle()\n\nRepeatedly calls pump() with the given duration until\nthere are no longer any frames scheduled.\nThis, essentially, waits for all animations to complete.\n\nThese methods provide fine-grained control over the build lifecycle,\nwhich is particularly useful while testing.\n\n5. Search for our widget using a Finder", "source": "https://docs.flutter.dev/cookbook/testing/widget/introduction/index.html"} {"id": "9dda9d8aba75-5", "text": "5. Search for our widget using a Finder\n\nWith a widget in the test environment, search\nthrough the widget tree for the title and message\nText widgets using a Finder. This allows verification that\nthe widgets are being displayed correctly.\n\nFor this purpose, use the top-level find()\nmethod provided by the flutter_test package to create the Finders.\nSince you know you\u2019re looking for Text widgets, use the\nfind.text() method.\n\nFor more information about Finder classes, see the\nFinding widgets in a widget test recipe.\n\n6. Verify the widget using a Matcher\n\nFinally, verify the title and message Text widgets appear on screen\nusing the Matcher constants provided by flutter_test.\nMatcher classes are a core part of the test package,\nand provide a common way to verify a given\nvalue meets expectations.\n\nEnsure that the widgets appear on screen exactly one time.\nFor this purpose, use the findsOneWidget Matcher.", "source": "https://docs.flutter.dev/cookbook/testing/widget/introduction/index.html"} {"id": "9dda9d8aba75-6", "text": "Additional Matchers\n\nIn addition to findsOneWidget, flutter_test provides additional\nmatchers for common cases.\n\nfindsNothing\n\nVerifies that no widgets are found.\n\nfindsWidgets\n\nVerifies that one or more widgets are found.\n\nfindsNWidgets\n\nVerifies that a specific number of widgets are found.\n\nmatchesGoldenFile\n\nVerifies that a widget\u2019s rendering matches a particular bitmap image (\u201cgolden file\u201d testing).\n\nComplete example\n\nMock dependencies using Mockito\n\nFind widgets", "source": "https://docs.flutter.dev/cookbook/testing/widget/introduction/index.html"} {"id": "93e3181251d6-0", "text": "Find widgets\n\nTap, drag, and enter text\n\nHandle scrolling\n\nCookbook\n\nTesting\n\nWidget\n\nHandle scrolling\n\n1. Create an app with a list of items\n\n2. Write a test that scrolls through the list\n\n3. Run the test\n\nMany apps feature lists of content,\nfrom email clients to music apps and beyond.\nTo verify that lists contain the expected content\nusing widget tests,\nyou need a way to scroll through lists to search for particular items.\n\nTo scroll through lists via integration tests,\nuse the methods provided by the WidgetTester class,\nwhich is included in the flutter_test package:\n\nIn this recipe, learn how to scroll through a list of items to\nverify a specific widget is being displayed, and discuss the pros on cons of\ndifferent approaches.\n\nThis recipe uses the following steps:\n\nCreate an app with a list of items.", "source": "https://docs.flutter.dev/cookbook/testing/widget/scrolling/index.html"} {"id": "93e3181251d6-1", "text": "Create an app with a list of items.\n\nWrite a test that scrolls through the list.\n\nRun the test.\n\n1. Create an app with a list of items\n\nThis recipe builds an app that shows a long list of items.\nTo keep this recipe focused on testing, use the app created in the\nWork with long lists recipe.\nIf you\u2019re unsure of how to work with long lists,\nsee that recipe for an introduction.\n\nAdd keys to the widgets you want to interact with\ninside the integration tests.\n\n2. Write a test that scrolls through the list\n\nNow, you can write a test. In this example, scroll through the list of items and\nverify that a particular item exists in the list. The WidgetTester class\nprovides the scrollUntilVisible() method, which scrolls through a list\nuntil a specific widget is visible. This is useful because the height of the\nitems in the list can change depending on the device.", "source": "https://docs.flutter.dev/cookbook/testing/widget/scrolling/index.html"} {"id": "93e3181251d6-2", "text": "Rather than assuming that you know the height of all the items\nin a list, or that a particular widget is rendered on all devices,\nthe scrollUntilVisible() method trepeatedly scrolls through\na list of items until it finds what it\u2019s looking for.\n\nThe following code shows how to use the scrollUntilVisible() method\nto look through the list for a particular item. This code lives in a\nfile called test/widget_test.dart.\n\n3. Run the test\n\nRun the test using the following command from the root of the project:\n\nFind widgets\n\nTap, drag, and enter text", "source": "https://docs.flutter.dev/cookbook/testing/widget/scrolling/index.html"} {"id": "e930bdab72ab-0", "text": "Handle scrolling\n\nTap, drag, and enter text\n\nCookbook\n\nTesting\n\nWidget\n\nTap, drag, and enter text\n\n1. Create a widget to test\n\n2. Enter text in the text field\n\n3. Ensure tapping a button adds the todo\n\n4. Ensure swipe-to-dismiss removes the todo\n\nComplete example\n\nMany widgets not only display information, but also respond\nto user interaction. This includes buttons that can be tapped,\nand TextField for entering text.\n\nTo test these interactions, you need a way to simulate them\nin the test environment. For this purpose, use the\nWidgetTester library.\n\nThe WidgetTester provides methods for entering text,\ntapping, and dragging.\n\nenterText()\n\ntap()\n\ndrag()", "source": "https://docs.flutter.dev/cookbook/testing/widget/tap-drag/index.html"} {"id": "e930bdab72ab-1", "text": "enterText()\n\ntap()\n\ndrag()\n\nIn many cases, user interactions update the state of the app. In the test\nenvironment, Flutter doesn\u2019t automatically rebuild widgets when the state\nchanges. To ensure that the widget tree is rebuilt after simulating a user\ninteraction, call the pump() or pumpAndSettle()\nmethods provided by the WidgetTester.\nThis recipe uses the following steps:\n\nCreate a widget to test.\n\nEnter text in the text field.\n\nEnsure tapping a button adds the todo.\n\nEnsure swipe-to-dismiss removes the todo.\n\n1. Create a widget to test\n\nFor this example,\ncreate a basic todo app that tests three features:\n\nEntering text into a TextField.\n\nTapping a FloatingActionButton to add the text to a list of todos.", "source": "https://docs.flutter.dev/cookbook/testing/widget/tap-drag/index.html"} {"id": "e930bdab72ab-2", "text": "Tapping a FloatingActionButton to add the text to a list of todos.\n\nSwiping-to-dismiss to remove the item from the list.\n\nTo keep the focus on testing,\nthis recipe won\u2019t provide a detailed guide on how to build the todo app.\nTo learn more about how this app is built,\nsee the relevant recipes:\n\nCreate and style a text field\n\nHandle taps\n\nCreate a basic list\n\nImplement swipe to dismiss\n\n2. Enter text in the text field\n\nNow that you have a todo app, begin writing the test.\nStart by entering text into the TextField.\n\nAccomplish this task by:\n\nBuilding the widget in the test environment.\n\nUsing the enterText()\nmethod from the WidgetTester.", "source": "https://docs.flutter.dev/cookbook/testing/widget/tap-drag/index.html"} {"id": "e930bdab72ab-3", "text": "Using the enterText()\nmethod from the WidgetTester.\n\nNote:\n This recipe builds upon previous widget testing recipes.\n To learn the core concepts of widget testing,\n see the following recipes:\n\nIntroduction to widget testing\n\nFinding widgets in a widget test\n\n3. Ensure tapping a button adds the todo\n\nAfter entering text into the TextField, ensure that tapping\nthe FloatingActionButton adds the item to the list.\n\nThis involves three steps:\n\nTap the add button using the tap() method.\n\nRebuild the widget after the state has changed using the\npump() method.\n\nEnsure that the list item appears on screen.\n\n4. Ensure swipe-to-dismiss removes the todo\n\nFinally, ensure that performing a swipe-to-dismiss action on the todo\nitem removes it from the list. This involves three steps:", "source": "https://docs.flutter.dev/cookbook/testing/widget/tap-drag/index.html"} {"id": "e930bdab72ab-4", "text": "Use the drag()\nmethod to perform a swipe-to-dismiss action.\n\nUse the pumpAndSettle()\nmethod to continually rebuild the widget tree until the dismiss\nanimation is complete.\n\nEnsure that the item no longer appears on screen.\n\nComplete example\n\nHandle scrolling", "source": "https://docs.flutter.dev/cookbook/testing/widget/tap-drag/index.html"} {"id": "21e3541f7424-0", "text": "Flutter Create\n\nFlutter Create is a contest that challenges you to build something\n interesting, inspiring, and beautiful with Flutter using 5KB or less\n of Dart code. Congratulations to all the winners this year! We were \n impressed by the ingenuity and creativity of your apps. For everyone who\n submitted an app, thank you.\n\nShare #FlutterCreate with your friends\n\nFlutter Create Highlight Reel\n\nAll Winners\n Check out\n\nthis article to read more about this year's results.\n\nGrand Prize Winner\n\nCompass by Zebiao Hu\n\nCategory Winners\n\nVisual Beauty\n\nRelax by Erin Morrissey\n\nCode Quality\n\nPocket Piano by Rody Davis\n\nOverall Execution\n\nTimeFlow by Fabian Stein\n\nNovelty", "source": "https://docs.flutter.dev/create/index.html"} {"id": "21e3541f7424-1", "text": "TimeFlow by Fabian Stein\n\nNovelty\n\nEvents by Noel Jacob\n\nWhat to make:\n\nCreate a novel experience with Flutter in 5KB or\n less of Dart\u00a0code\n\nThis contest is now closed.\n The winners will be announced at Google I/O 2019.\n\nJudging:\n\nEntries will be judged by a panel of Flutter experts against the\n following four criteria:\n\nVisual beauty\n\nCode quality\n\nNovelty of idea\n\nOverall execution\n\nPrizes:\n\nGrand prize:\n\nFully-loaded Apple iMac Pro\n\n(worth over $10,000)\n\n4 Winners:\n\nGoogle Home Max\n\nUp to 25 Winners:\n\nGoogle Home Mini", "source": "https://docs.flutter.dev/create/index.html"} {"id": "21e3541f7424-2", "text": "Up to 25 Winners:\n\nGoogle Home Mini\n\nIn addition, all submissions will receive\n a digital certificate of completion.\n\nSubmission guidelines:\n\nYour application must be submitted in the form of a ZIP file\n containing everything needed to run it on a target Android or\n iOS device.\n\nYou should include a README.md file that includes a\n brief description of the application and any special instructions\n for running it (for example, if the application is designed for a\n specific platform target).\n\nCode should be licensed with an open source license (we recommend\n BSD, MIT or Apache), so that we can judge it and others can\n benefit from your work.\n\nWe will run the application by unpacking the ZIP file and running\n the command flutter run --release to execute it\n on an attached Android or iOS device.", "source": "https://docs.flutter.dev/create/index.html"} {"id": "21e3541f7424-3", "text": "The ZIP file may contain other files and directories that are\n created using the flutter create command, such as\n pubspec.yaml; it may also include asset files\n (e.g. images, fonts) or data. We recommend running\n flutter clean before creating the ZIP file to\n strip out unnecessary binaries.\n\nWith the exception of packages (see below), all executable content\n must be included in the ZIP file.\n\nAll code needed to load and execute the application must be\n written in Dart, with the exception of any packages\n (as mentioned below).\n\nDart code must appear in a file that has a filename ending in\n .dart. The total size of all Dart files in the ZIP\n file, excluding unit tests that are not executed, must be no\n more than 5,120 bytes as (for example) measured by the\n command find . -name \"*.dart\" | xargs cat | wc -c.", "source": "https://docs.flutter.dev/create/index.html"} {"id": "21e3541f7424-4", "text": "The application may use Flutter packages that are a) published\n on pub.dev;\n b) have broad applicability (e.g. not written solely for the\n purpose of circumventing the 5KB file limit, in the opinion\n of the judges).\n\nContest rules:\n\nFull details and rules in our\n Official Rules.\n But here\u2019s a quick summary of some of the key points:\n\nAll work must be that of the contest entrant.\n\nOnly one submission per entrant.\n\nDo not submit a project that already existed before the\n announcement of this contest.\n\nEntries may not be submitted by any person who is a minor at the\n time of entry.\n\nGoogle employees and contractors, contest judges, and members of\n their immediate families are not eligible to enter.", "source": "https://docs.flutter.dev/create/index.html"} {"id": "21e3541f7424-5", "text": "Persons from the following countries or regions can submit but will not\n be considered eligible for the contest due to local rules,\n including exclusion from judging and prizes: Italy, Brazil, Quebec,\n and Mexico.\n\nSubmissions from the following embargoed countries will not be\n considered eligible for the contest, including exclusion from\n judging and prizes: Crimea, Cuba, Iran, Syria, North Korea, and Sudan.\n\nEntries will be collected via the website using an online form.\n\nSubmissions must not be derogatory, offensive, threatening, defamatory,\n disparaging, libellous or contain any content that is inappropriate,\n indecent, sexual, profane, tortuous, slanderous, discriminatory\n in any way, or that promotes hatred or harm against any group or\n person, or otherwise does not comply with the theme and spirit\n of the contest.", "source": "https://docs.flutter.dev/create/index.html"} {"id": "21e3541f7424-6", "text": "They must not contain content, material or any element that is unlawful,\n or otherwise in violation of or contrary to all applicable federal,\n state, or local laws and regulation including the laws or regulations\n in any state where the doodle and supporting statement are created.\n\nThey must not contain any content, material or element that displays\n any third party advertising, slogan, logo, trademark, representation\n of characters indicating a sponsorship or endorsement by a third party,\n commercial entity or that is not within the spirit of the Contest,\n as determined by Sponsor, in its sole discretion.\n\nThey must be original, unpublished works that do not contain,\n incorporate or otherwise use any content, material or element\n that is owned by a third party or entity.\n\nThey cannot contain any content, element, or material that violates\n a third party's publicity, privacy or intellectual property rights.", "source": "https://docs.flutter.dev/create/index.html"} {"id": "21e3541f7424-7", "text": "The submission is not the subject of any actual or threatened\n litigation or claim.\n\nThe entrant does not include any disparaging remarks relating to\n the Sponsor or a third party.\n\nFAQ:\n\nWhat is Flutter Create?\n Flutter Create is a contest where new and experienced developers\n can submit a project built using Flutter. It\u2019s a fun way to learn\n Flutter, try building out interfaces, and possibly win prizes.\n\nWhat is the judging criteria?\n Each entry will be rated against the following rubric: visual beauty,\n code quality, novelty of idea, and overall execution.\n\nWho are the judges?\n Entries will be judged by members of the Flutter team and\n experienced developers from the Flutter community.\n\nWhat are the deadlines for the project?\n You need to have your project submitted by April 7th at\n 11:59pm PDT (GMT-7).", "source": "https://docs.flutter.dev/create/index.html"} {"id": "21e3541f7424-8", "text": "I submitted my project, can I make changes to it?\n Yes, as long as your change occurs before April 7th at\n 11:59pm PDT (GMT-7).\n\nHow will the winners be selected?\n Judges will evaluate the entries based on four criteria:\n visual beauty, code quality, novelty of idea, and overall execution.\n\nWhen will the winners be selected?\n Winners will be selected around April 25 and announced at Google I/O\n and online.\n\nWhat are the prizes?\n One grand prize winner will receive a customized\n iMac Pro 5K;\n Four additional winners will receive a Google Home Max;\n Up to 25 additional winners will receive a Google Home Mini.\n\nCan I submit more than one entry?\n We limit entries to one project per participant. We encourage you\n to submit your best entry!", "source": "https://docs.flutter.dev/create/index.html"} {"id": "21e3541f7424-9", "text": "I already have an approved app, can I submit that for the\n challenge?\n Unfortunately, no. Only new apps or UIs can be submitted for approval.\n\nIs there an age limit to participate?\n You must not be a minor (per your local law) to be eligible to win.\n\nCan you use Flare animations? If so, does it count towards the\n byte size?\n\nImage, video, font, and other binary asset types are not included\n in the 5KB Dart code limit.\n\nCan you store data in a separate file? For example,\n for a catalog of dogs, can you store the dog data in a json?\n\nData is OK. However, we're counting all Dart code in the 5KB limit,\n so the JSON loader would be included.\n\nDo Flutter Create contest submissions have to be formatted\n by dartfmt?", "source": "https://docs.flutter.dev/create/index.html"} {"id": "21e3541f7424-10", "text": "Do Flutter Create contest submissions have to be formatted\n by dartfmt?\n\nWe can run dartfmt on our side. We believe code quality is\n primarily driven by good structure, rather than indentation.\n But of course, if the code is impenetrable to the judges even\n after running dartfmt, it may be challenging for them to score\n it well for code quality.\n\nCan a team of people submit a single project?\n\nA team of people can submit a single project, but the person\n submitting the project through our form should be authorized\n to submit the project on behalf of the entire team or entity,\n and a winning project from a team is only eligible for 1 prize.\n\nShould we send just a .dart file or all the files as the\n given size is 5 kb and all the files would be above 5 kb?\n\nPlease submit whatever it takes to build and run your application with\n `flutter run`.", "source": "https://docs.flutter.dev/create/index.html"} {"id": "21e3541f7424-11", "text": "Please submit whatever it takes to build and run your application with\n `flutter run`.\n\nShould the size of the app be 5kb after creating a zip file\n or without zipping the file?\n\nWe are measuring Dart files, not the ZIP files, so the 5KB is\n measured without zipping the file.\n\nDo assets (art and audio) also have to be created by\n participants?\n\nAll assets must comply with our Official Rules for submissions,\n and participants must either create or have permission to use and\n submit all parts of their submission.\n\nIf I have more questions, where should I go?\n\nTake a look through our\n official rules.\n\nCreate a novel user experience with Flutter using 5KB or less of Dart\u00a0code\n\nSubmit your app", "source": "https://docs.flutter.dev/create/index.html"} {"id": "e90e42685077-0", "text": "Who is Dash?\n\nHow did it all start?\n\nWhy a hummingbird?\n\nDash facts\n\nThis is Dash:\n\nDash is the mascot for the Dart language and the Flutter framework.\n\nNote:\n You can now make your own digital Dash using\n Dashatar, a Flutter app for web and mobile!\n\nHow did it all start?\n\nAs soon as Shams Zakhour started working as a\nDart writer at Google in December 2013,\nshe started advocating for a Dart mascot.\nAfter documenting Java for 14 years, she\nhad observed how beloved the Java mascot,\nDuke, had become,\nand she wanted something similar for Dart.", "source": "https://docs.flutter.dev/dash/index.html"} {"id": "e90e42685077-1", "text": "But the idea didn\u2019t gain momentum until 2017,\nwhen one of the Flutter engineers, Nina Chen,\nsuggested it on an internal mailing list.\nThe Flutter VP at the time, Joshy Joseph,\napproved the idea and asked the\norganizer for the 2018 Dart Conference,\nLinda Rasmussen, to make it happen.\n\nOnce Shams heard about these plans,\nshe rushed to Linda and asked to own and drive\nthe project to produce the plushies for the conference.\nLinda had already elicited some design sketches,\nwhich she handed off.\nStarting with the sketches, Shams located a vendor\nwho could work within an aggressive deadline\n(competing with Lunar New Year),\nand started the process of creating\nthe specs for the plushy.\n\nThat\u2019s right, Dash was originally a\nDart mascot, not a Flutter mascot.\n\nHere are some early mockups and one of the first prototypes:", "source": "https://docs.flutter.dev/dash/index.html"} {"id": "e90e42685077-2", "text": "Here are some early mockups and one of the first prototypes:\n\nThe first prototype had uneven eyes\n\nWhy a hummingbird?\n\nEarly on, a hummingbird image was created for the Dart team\nto use for presentations and the web.\nThe hummingbird represents that Dart is a speedy language.\n\nHowever, hummingbirds are pointed and angular\nand we wanted a cuddly plushy, so we chose a round\nhummingbird.\n\nShams specified which color would go where,\nthe tail shape, the tuft of hair, the eyes\u2026all the\nlittle details. The vendor sent the specs to two\nmanufacturers who returned the prototypes some weeks later.\n\nIntroducing Dash at the January 2018 Dart Conference:", "source": "https://docs.flutter.dev/dash/index.html"} {"id": "e90e42685077-3", "text": "Introducing Dash at the January 2018 Dart Conference:\n\nWhile the manufacturing process was proceeding,\nShams chose a name for the plushy: Dash,\nbecause it was an early code name for the\nDart project, it was gender neutral,\nand it seemed appropriate for a hummingbird.\n\nMany boxes of Dash plushies arrived in\nsouthern California just in time for the conference.\nThey were eagerly adopted by Dart and Flutter enthusiasts.\n\nThe people have spoken,\nso Dash is now the mascot for Flutter and Dart.\n\nDash 1.0\n\nConference swag", "source": "https://docs.flutter.dev/dash/index.html"} {"id": "e90e42685077-4", "text": "Dash 1.0\n\nConference swag\n\nSince the creation of Dash 1.0, we\u2019ve made two more versions.\nMarketing slightly changed the Dart and Flutter color scheme after\nDash 1.0 was created, so Dash 2.0 reflects the updated scheme\n(which removed the green color).\nDash 2.1 is a smaller size and has a few more color\ntweaks. The smaller size is easier to ship,\nand fits better in a claw machine!\n\nDash 2.0 and 2.1\n\nDash facts\n\nDash is female, but she doesn\u2019t mind\nbeing called they, their, he, or him.\n\nDash has an Instagram account.\n\nDash has a straight beak. \nPlease, don\u2019t depict Dash with a curved beak.", "source": "https://docs.flutter.dev/dash/index.html"} {"id": "e90e42685077-5", "text": "We also have Mega-Dash, a life-sized mascot\nwho is currently resting in a locked-down Google office.\n\nMega-Dash made her\nfirst appearance at the Flutter Interact event\nin Brooklyn, New York, on December 11, 2019.\n\nWe also have a Dash puppet that Shams made from\none of the first plushies.\n\nA number of our YouTube videos feature the Dash puppet,\nvoiced by Emily Fortuna, one of our early (and much loved)\nFlutter Developer Advocates.", "source": "https://docs.flutter.dev/dash/index.html"} {"id": "7fe2efb38663-0", "text": "Build and release an Android app\n\nAdding a launcher icon\n\nEnabling Material Components\n\nSigning the app\n\nCreate an upload keystore\nReference the keystore from the app\nConfigure signing in gradle\n\nShrinking your code with R8\n\nEnabling multidex support\n\nReviewing the app manifest\n\nReviewing the Gradle build configuration\n\nUnder the defaultConfig block\nUnder the android block\n\nBuilding the app for release\n\nBuild an app bundle\nTest the app bundle\n\nOffline using the bundle tool\nOnline using Google Play\n\n\nBuild an APK\nInstall an APK on a device\n\nPublishing to the Google Play Store\n\nUpdating the app\u2019s version number\n\nAndroid release FAQ", "source": "https://docs.flutter.dev/deployment/android/index.html"} {"id": "7fe2efb38663-1", "text": "Updating the app\u2019s version number\n\nAndroid release FAQ\n\nWhen should I build app bundles versus APKs?\nWhat is a fat APK?\nWhat are the supported target architectures?\nHow do I sign the app bundle created by flutter build appbundle?\nHow do I build a release from within Android Studio?\n\nDuring a typical development cycle,\nyou test an app using flutter run at the command line,\nor by using the Run and Debug\noptions in your IDE. By default,\nFlutter builds a debug version of your app.\n\nWhen you\u2019re ready to prepare a release version of your app,\nfor example to publish to the Google Play Store,\nthis page can help. Before publishing,\nyou might want to put some finishing touches on your app.\nThis page covers the following topics:\n\nAdding a launcher icon\n\nEnabling Material Components\n\nSigning the app\n\nShrinking your code with R8\n\nEnabling multidex support", "source": "https://docs.flutter.dev/deployment/android/index.html"} {"id": "7fe2efb38663-2", "text": "Shrinking your code with R8\n\nEnabling multidex support\n\nReviewing the app manifest\n\nReviewing the build configuration\n\nBuilding the app for release\n\nPublishing to the Google Play Store\n\nUpdating the app\u2019s version number\n\nAndroid release FAQ\n\nNote:\n Throughout this page, [project] refers to \n the directory that your application is in. While following\n these instructions, substitute [project] with \n your app\u2019s directory.\n\nAdding a launcher icon\n\nWhen a new Flutter app is created, it has a default launcher icon.\nTo customize this icon, you might want to check out the\nflutter_launcher_icons package.\n\nAlternatively, you can do it manually using the following steps:\n\nReview the Material Design product\nicons guidelines for icon design.", "source": "https://docs.flutter.dev/deployment/android/index.html"} {"id": "7fe2efb38663-3", "text": "Review the Material Design product\nicons guidelines for icon design.\n\nIn the [project]/android/app/src/main/res/ directory,\nplace your icon files in folders named using\nconfiguration qualifiers.\nThe default mipmap- folders demonstrate the correct\nnaming convention.\n\nIn AndroidManifest.xml, update the\napplication tag\u2019s android:icon\nattribute to reference icons from the previous\nstep (for example,\n/android/app/build.gradle:\n\ndependencies\n\n// ...", "source": "https://docs.flutter.dev/deployment/android/index.html"} {"id": "7fe2efb38663-4", "text": "dependencies\n\n// ...\n\nimplementation\n\n'com.google.android.material:material:'\n\n// ...\n\nTo find out the latest version, visit Google Maven.\n\nSet the light theme in /android/app/src/main/res/values/styles.xml:\n\nSet the dark theme in /android/app/src/main/res/values-night/styles.xml\n\n\n\nThen, apply the translucent theme to your FlutterActivity.\n\n\n\nYour FlutterActivity now supports translucency.\nNext, you need to launch your FlutterActivity\nwith explicit transparency support.\n\nStep 2: Start FlutterActivity with transparency\n\nTo launch your FlutterActivity with a transparent background,\npass the appropriate BackgroundMode to the IntentBuilder:\n\nJava\n\nKotlin\n\n// Using a new FlutterEngine.\n\nstartActivity\n\nFlutterActivity\n\nwithNewEngine\n\n()\n\nbackgroundMode\n\nFlutterActivityLaunchConfigs\n\nBackgroundMode\n\ntransparent\n\nbuild\n\ncontext\n\n);\n\n// Using a cached FlutterEngine.\n\nstartActivity\n\nFlutterActivity", "source": "https://docs.flutter.dev/development/add-to-app/android/add-flutter-screen/index.html"} {"id": "d0bda568e27d-17", "text": "startActivity\n\nFlutterActivity\n\nwithCachedEngine\n\n\"my_engine_id\"\n\nbackgroundMode\n\nFlutterActivityLaunchConfigs\n\nBackgroundMode\n\ntransparent\n\nbuild\n\ncontext\n\n);\n\n// Using a new FlutterEngine.\n\nstartActivity\n\nFlutterActivity\n\nwithNewEngine\n\n()\n\nbackgroundMode\n\nFlutterActivityLaunchConfigs\n\nBackgroundMode\n\ntransparent\n\nbuild\n\nthis\n\n);\n\n// Using a cached FlutterEngine.\n\nstartActivity\n\nFlutterActivity\n\nwithCachedEngine\n\n\"my_engine_id\"\n\nbackgroundMode\n\nFlutterActivityLaunchConfigs\n\nBackgroundMode", "source": "https://docs.flutter.dev/development/add-to-app/android/add-flutter-screen/index.html"} {"id": "d0bda568e27d-18", "text": "FlutterActivityLaunchConfigs\n\nBackgroundMode\n\ntransparent\n\nbuild\n\nthis\n\n);\n\nYou now have a FlutterActivity with a transparent background.\n\nNote:\n Make sure that your Flutter content also includes a\n translucent background. If your Flutter UI paints a\n solid background color, then it still appears as\n though your FlutterActivity has an opaque background.", "source": "https://docs.flutter.dev/development/add-to-app/android/add-flutter-screen/index.html"} {"id": "aa30da320b2d-0", "text": "Adding a Flutter View to an Android app\n\nAdd Flutter to existing app\n\nAdding Flutter to Android\n\nIntegrate via FlutterView\n\nA sample\n\nGeneral approach\n\nAPIs to implement\n\nWarning:\n Integrating via a FlutterView\n is advanced usage and requires manually creating custom, application specific\n bindings.\n\nIntegrating via a FlutterView\nrequires a bit more work than via FlutterActivity and FlutterFragment previously\ndescribed.\n\nFundamentally, the Flutter framework on the Dart side requires access to various\nactivity-level events and lifecycles to function. Since the FlutterView (which\nis an android.view.View)\ncan be added to any activity which is owned by the developer\u2019s application\nand since the FlutterView doesn\u2019t have access to activity level events, the\ndeveloper must bridge those connections manually to the FlutterEngine.", "source": "https://docs.flutter.dev/development/add-to-app/android/add-flutter-view/index.html"} {"id": "aa30da320b2d-1", "text": "How you choose to feed your application\u2019s activities\u2019 events to the FlutterView\nwill be specific to your application.\n\nA sample\n\nUnlike the guides for FlutterActivity and FlutterFragment, the FlutterView\nintegration could be better demonstrated with a sample project.\n\nA sample project is at https://github.com/flutter/samples/tree/main/add_to_app/android_view\nto document a simple FlutterView integration where FlutterViews are used\nfor some of the cells in a RecycleView list of cards as seen in the gif above.\n\nGeneral approach\n\nFlutterView\nand the\n\nFlutterEngine\npresent in the\n\nFlutterActivityAndFragmentDelegate\nin your own application\u2019s code. The connections made in the\n\nFlutterActivityAndFragmentDelegate\nare done automatically when using a\n\nFlutterActivity\nor a\n\nFlutterFragment,\nbut since the", "source": "https://docs.flutter.dev/development/add-to-app/android/add-flutter-view/index.html"} {"id": "aa30da320b2d-2", "text": "FlutterActivity\nor a\n\nFlutterFragment,\nbut since the\n\nFlutterView\nin this case is being added to an Activity or Fragment in your application,\nyou must recreate the connections manually. Otherwise, the\n\nFlutterView\nwill not render anything or have other missing functionalities.\n\nA sample FlutterViewEngine\nclass shows one such possible implementation of an application-specific\nconnection between an Activity, a FlutterView\nand a FlutterEngine.\n\nAPIs to implement\n\nThe absolute minimum implementation needed for Flutter to draw anything at all\nis to:\n\nCall attachToFlutterEngine when the\nFlutterView\nis added to a resumed Activity\u2019s view hierarchy and is visible; and\n\nCall appIsResumed on the FlutterEngine\u2019s\nlifecycleChannel field when the Activity hosting the FlutterView\nis visible.", "source": "https://docs.flutter.dev/development/add-to-app/android/add-flutter-view/index.html"} {"id": "aa30da320b2d-3", "text": "The reverse detachFromFlutterEngine and other lifecycle methods on the LifecycleChannel\nclass must also be called to not leak resources when the FlutterView or Activity\nis no longer visible.\n\nIn addition, see the remaining implementation in the FlutterViewEngine\ndemo class or in the FlutterActivityAndFragmentDelegate\nto ensure a correct functioning of other features such as clipboards, system\nUI overlay, plugins etc.", "source": "https://docs.flutter.dev/development/add-to-app/android/add-flutter-view/index.html"} {"id": "24832475af81-0", "text": "Adding Flutter to Android\n\nAdd Flutter to existing app\n\nAdding Flutter to Android\n\nTopics:\n\nProject setup\n\nAdd a single Flutter screen\n\nAdd a Flutter Fragment\n\nAdd a Flutter View\n\nPlugin setup", "source": "https://docs.flutter.dev/development/add-to-app/android/index.html"} {"id": "8861fdd3679e-0", "text": "Managing plugins and dependencies in add-to-app\n\nAdd Flutter to existing app\n\nAdding Flutter to Android\n\nPlugin setup\n\nA. Simple scenario\n\nB. Plugins needing project edits\n\nC. Merging libraries\n\nThis guide describes how to set up your project to consume\nplugins and how to manage your Gradle library dependencies\nbetween your existing Android app and your Flutter module\u2019s plugins.\n\nA. Simple scenario\n\nIn the simple cases:\n\nYour Flutter module uses a plugin that has no additional\nAndroid Gradle dependency because it only uses Android OS\nAPIs, such as the camera plugin.\n\nYour Flutter module uses a plugin that has an Android\nGradle dependency, such as\nExoPlayer from the video_player plugin,\nbut your existing Android app didn\u2019t depend on ExoPlayer.", "source": "https://docs.flutter.dev/development/add-to-app/android/plugin-setup/index.html"} {"id": "8861fdd3679e-1", "text": "There are no additional steps needed. Your add-to-app\nmodule will work the same way as a full-Flutter app.\nWhether you integrate using Android Studio, \nGradle subproject or AARs,\ntransitive Android Gradle libraries are automatically\nbundled as needed into your outer existing app.\n\nB. Plugins needing project edits\n\nSome plugins require you to make some edits to the\nAndroid side of your project.\n\nFor example, the integration instructions for the\nfirebase_crashlytics plugin require manual\nedits to your Android wrapper project\u2019s build.gradle file.\n\nFor full-Flutter apps, these edits are done in your\nFlutter project\u2019s /android/ directory.\n\nIn the case of a Flutter module, there are only Dart\nfiles in your module project. Perform those Android\nGradle file edits on your outer, existing Android\napp rather than in your Flutter module.", "source": "https://docs.flutter.dev/development/add-to-app/android/plugin-setup/index.html"} {"id": "8861fdd3679e-2", "text": "Note:\n Astute readers might notice that the Flutter module\n directory also contains an .android and an\n .ios directory. Those directories are Flutter-tool-generated\n and are only meant to bootstrap Flutter into generic\n Android or iOS libraries. They should not be edited or checked-in.\n This allows Flutter to improve the integration point should\n there be bugs or updates needed with new versions of Gradle,\n Android, Android Gradle Plugin, etc.\n\nFor advanced users, if more modularity is needed and you must\n not leak knowledge of your Flutter module\u2019s dependencies into\n your outer host app, you can rewrap and repackage your Flutter\n module\u2019s Gradle library inside another native Android Gradle\n library that depends on the Flutter module\u2019s Gradle library.\n You can make your Android specific changes such as editing the\n AndroidManifest.xml, Gradle files or adding more Java files\n in that wrapper library.\n\nC. Merging libraries", "source": "https://docs.flutter.dev/development/add-to-app/android/plugin-setup/index.html"} {"id": "8861fdd3679e-3", "text": "C. Merging libraries\n\nThe scenario that requires slightly more attention is if\nyour existing Android application already depends on the\nsame Android library that your Flutter module\ndoes (transitively via a plugin).\n\nFor instance, your existing app\u2019s Gradle may already have:\n\ndependencies\n\nimplementation\n\n'com.crashlytics.sdk.android:crashlytics:2.10.1'\n\nAnd your Flutter module also depends on\nfirebase_crashlytics via pubspec.yaml:\n\ndependencies\n\nfirebase_crashlytics\n\n^0.1.3\n\nThis plugin usage transitively adds a Gradle dependency again via\nfirebase_crashlytics v0.1.3\u2019s own Gradle file:\n\ndependencies\n\nimplementation\n\n'com.crashlytics.sdk.android:crashlytics:2.9.9'", "source": "https://docs.flutter.dev/development/add-to-app/android/plugin-setup/index.html"} {"id": "8861fdd3679e-4", "text": "The two com.crashlytics.sdk.android:crashlytics dependencies\nmight not be the same version. In this example,\nthe host app requested v2.10.1 and the Flutter\nmodule plugin requested v2.9.9.\n\nBy default, Gradle v5\nresolves dependency version conflicts\nby using the newest version of the library.\n\nThis is generally ok as long as there are no API\nor implementation breaking changes between the versions.\nFor example, you might use the new Crashlytics library\nin your existing app as follows:\n\ndependencies\n\nimplementation\n\ncom\n\ngoogle\n\nfirebase\n\nfirebase\n\ncrashlytics:\n\n17.0\n\nbeta03", "source": "https://docs.flutter.dev/development/add-to-app/android/plugin-setup/index.html"} {"id": "8861fdd3679e-5", "text": "17.0\n\nbeta03\n\nThis approach won\u2019t work since there are major API differences\nbetween the Crashlytics\u2019 Gradle library version\nv17.0.0-beta03 and v2.9.9.\n\nFor Gradle libraries that follow semantic versioning,\nyou can generally avoid compilation and runtime errors\nby using the same major semantic version in your\nexisting app and Flutter module plugin.", "source": "https://docs.flutter.dev/development/add-to-app/android/plugin-setup/index.html"} {"id": "27bdf6947950-0", "text": "Integrate a Flutter module into your Android project\n\nAdd Flutter to existing app\n\nAdding Flutter to Android\n\nIntegrate Flutter\n\nUsing Android Studio\n\nManual integration\n\nCreate a Flutter module\nJava 11 requirement\nAdd the Flutter module as a dependency\n\nOption A - Depend on the Android Archive (AAR)\nOption B - Depend on the module\u2019s source code\n\nFlutter can be embedded into your existing Android\napplication piecemeal, as a source code Gradle\nsubproject or as AARs.\n\nThe integration flow can be done using the Android Studio\nIDE with the Flutter plugin or manually.\n\nonly supports\n building ahead-of-time (AOT) compiled libraries\n for\n\nConsider using the abiFilters Android Gradle\n Plugin API to limit the supported architectures in your APK.\n Doing this avoids a missing libflutter.so runtime crash,\n for example:", "source": "https://docs.flutter.dev/development/add-to-app/android/project-setup/index.html"} {"id": "27bdf6947950-1", "text": "android\n\n//...\n\ndefaultConfig\n\nndk\n\n// Filter for architectures supported by Flutter.\n\nabiFilters\n\n'armeabi-v7a'\n\n'arm64-v8a'\n\n'x86_64'\n\nThe Flutter engine has an x86 and x86_64 version.\n When using an emulator in debug Just-In-Time (JIT) mode,\n the Flutter module still runs correctly.\n\nUsing Android Studio\n\nThe Android Studio IDE is a convenient way of integrating\nyour Flutter module automatically. With Android Studio,\nyou can co-edit both your Android code and your Flutter code\nin the same project. You can also continue to use your normal\nIntelliJ Flutter plugin functionalities such as Dart code\ncompletion, hot reload, and widget inspector.", "source": "https://docs.flutter.dev/development/add-to-app/android/project-setup/index.html"} {"id": "27bdf6947950-2", "text": "Add-to-app flows with Android Studio are only supported on\nAndroid Studio 3.6 with version 42+ of the Flutter plugin\nfor IntelliJ. The Android Studio integration also only\nsupports integrating using a source code Gradle subproject,\nrather than using AARs. See below for more details on\nthe distinction.\n\nUsing the File > New > New Module\u2026 menu in\nAndroid Studio in your existing Android project,\nyou can either create a new Flutter module to integrate,\nor select an existing Flutter module that was created previously.\n\nIf you create a new module, you can use a wizard to\nselect the module name, location, and so on.\n\nThe Android Studio plugin automatically configures your\nAndroid project to add your Flutter module as a dependency,\nand your app is ready to build.\n\nNote:\n To see the changes that were automatically made to your\n Android project by the IDE plugin, consider using\n source control for your Android project before performing\n any steps. A local diff shows the changes.", "source": "https://docs.flutter.dev/development/add-to-app/android/project-setup/index.html"} {"id": "27bdf6947950-3", "text": "Tip:\n By default, your project\u2019s Project pane is probably\n showing the \u2018Android\u2019 view. If you can\u2019t see your new\n Flutter files in the Project pane, ensure that\n your Project pane is set to display \u2018Project Files\u2019,\n which shows all files without filtering.\n\nYour app now includes the Flutter module as a dependency.\nYou can jump to the Adding a Flutter screen to an Android app\nto follow the next steps.\n\nManual integration\n\nTo integrate a Flutter module with an existing Android app\nmanually, without using Flutter\u2019s Android Studio plugin,\nfollow these steps:\n\nCreate a Flutter module\n\nLet\u2019s assume that you have an existing Android app at\nsome/path/MyApp, and that you want your Flutter\nproject as a sibling:\n\ncd some/path/\n\nflutter create\n\nt module\n\n-org com.example my_flutter", "source": "https://docs.flutter.dev/development/add-to-app/android/project-setup/index.html"} {"id": "27bdf6947950-4", "text": "t module\n\n-org com.example my_flutter\n\nThis creates a some/path/my_flutter/ Flutter module project\nwith some Dart code to get you started and an .android/\nhidden subfolder. The .android folder contains an\nAndroid project that can both help you run a barebones\nstandalone version of your Flutter module via flutter run\nand it\u2019s also a wrapper that helps bootstrap the Flutter\nmodule an embeddable Android library.\n\nNote:\n Add custom Android code to your own existing\n application\u2019s project or a plugin,\n not to the module in .android/.\n Changes made in your module\u2019s .android/\n directory won\u2019t appear in your existing Android\n project using the module.", "source": "https://docs.flutter.dev/development/add-to-app/android/project-setup/index.html"} {"id": "27bdf6947950-5", "text": "Do not source control the .android/ directory\n since it\u2019s autogenerated. Before building the\n module on a new machine, run flutter pub get\n in the my_flutter directory first to regenerate\n the .android/ directory before building the\n Android project using the Flutter module.\n\nNote:\n To avoid Dex merging issues, flutter.androidPackage should not be identical to your host app\u2019s package name\n\nJava 11 requirement\n\nThe Flutter Android engine uses Java 11 features.\n\nBefore attempting to connect your Flutter module project\nto your host Android app, ensure that your host Android\napp declares the following source compatibility within your\napp\u2019s build.gradle file, under the android { }\nblock, such as:\n\nandroid\n\n//...\n\ncompileOptions\n\nsourceCompatibility\n\n11\n\ntargetCompatibility\n\n11\n\nAdd the Flutter module as a dependency", "source": "https://docs.flutter.dev/development/add-to-app/android/project-setup/index.html"} {"id": "27bdf6947950-6", "text": "11\n\nAdd the Flutter module as a dependency\n\nNext, add the Flutter module as a dependency of your\nexisting app in Gradle. There are two ways to achieve this.\nThe AAR mechanism creates generic Android AARs as\nintermediaries that packages your Flutter module.\nThis is good when your downstream app builders don\u2019t\nwant to have the Flutter SDK installed. But,\nit adds one more build step if you build frequently.\n\nThe source code subproject mechanism is a convenient\none-click build process, but requires the Flutter SDK.\nThis is the mechanism used by the Android Studio IDE plugin.\n\nOption A - Depend on the Android Archive (AAR)\n\nThis option packages your Flutter library as a generic local\nMaven repository composed of AARs and POMs artifacts.\nThis option allows your team to build the host app without\ninstalling the Flutter SDK. You can then distribute the\nartifacts from a local or remote repository.", "source": "https://docs.flutter.dev/development/add-to-app/android/project-setup/index.html"} {"id": "27bdf6947950-7", "text": "Let\u2019s assume you built a Flutter module at\nsome/path/my_flutter, and then run:\n\ncd some/path/my_flutter\n\nflutter build aar\n\nThen, follow the on-screen instructions to integrate.\n\nMore specifically, this command creates\n(by default all debug/profile/release modes)\na local repository, with the following files:\n\nTo depend on the AAR, the host app must be able\nto find these files.\n\nTo do that, edit app/build.gradle in your host app\nso that it includes the local repository and the dependency:\n\nandroid\n\n// ...\n\nrepositories\n\nmaven\n\nurl\n\n'some/path/my_flutter/build/host/outputs/repo'\n\n// This is relative to the location of the build.gradle file\n\n// if using a relative path.\n\nmaven\n\nurl", "source": "https://docs.flutter.dev/development/add-to-app/android/project-setup/index.html"} {"id": "27bdf6947950-8", "text": "// if using a relative path.\n\nmaven\n\nurl\n\n'https://storage.googleapis.com/download.flutter.io'\n\ndependencies\n\n// ...\n\ndebugImplementation\n\n'com.example.flutter_module:flutter_debug:1.0'\n\nprofileImplementation\n\n'com.example.flutter_module:flutter_profile:1.0'\n\nreleaseImplementation\n\n'com.example.flutter_module:flutter_release:1.0'\n\nImportant:\n If you\u2019re located in China, use a mirror site such as\n https://[a mirror site]/download.flutter.io rather than the\n storage.googleapis.com domain directly. See our\n Using Flutter in China page for information on mirrors.\n\nTip:\n You can also build an AAR for your Flutter module in Android Studio using\n the Build > Flutter > Build AAR menu.", "source": "https://docs.flutter.dev/development/add-to-app/android/project-setup/index.html"} {"id": "27bdf6947950-9", "text": "Your app now includes the Flutter module as a dependency.\n You can follow the next steps in the\n Adding a Flutter screen to an Android app.\n\nOption B - Depend on the module\u2019s source code\n\nThis option enables a one-step build for both your\nAndroid project and Flutter project. This option is\nconvenient when you work on both parts simultaneously\nand rapidly iterate, but your team must install the\nFlutter SDK to build the host app.\n\nInclude the Flutter module as a subproject in the host app\u2019s\nsettings.gradle:\n\n// Include the host app project.\n\ninclude\n\n':app'\n\n// assumed existing content\n\nsetBinding\n\nnew\n\nBinding\n\n([\n\ngradle:\n\nthis\n\n]))\n\n// new\n\nevaluate\n\nnew\n\nFile", "source": "https://docs.flutter.dev/development/add-to-app/android/project-setup/index.html"} {"id": "27bdf6947950-10", "text": "evaluate\n\nnew\n\nFile\n\n// new\n\nsettingsDir\n\nparentFile\n\n// new\n\n'my_flutter/.android/include_flutter.groovy'\n\n// new\n\n))\n\n// new\n\nAssuming my_flutter is a sibling to MyApp.\n\nThe binding and script evaluation allows the Flutter\nmodule to include itself (as :flutter) and any\nFlutter plugins used by the module (as :package_info,\n:video_player, etc) in the evaluation context of\nyour settings.gradle.\n\nIntroduce an implementation dependency on the Flutter\nmodule from your app:\n\ndependencies\n\nimplementation\n\nproject\n\n':flutter'\n\nYour app now includes the Flutter module as a dependency.\nYou can follow the next steps in the Adding a Flutter screen to an Android app.", "source": "https://docs.flutter.dev/development/add-to-app/android/project-setup/index.html"} {"id": "2a661944e312-0", "text": "Debugging your add-to-app module\n\nAdd Flutter to existing app\n\nDebugging\n\nDebugging your add-to-app module\n\nDebugging\n\nTerminal\nVS Code\nIntelliJ / Android Studio\n\nDebugging your add-to-app module\n\nOnce you\u2019ve integrated the Flutter module to your project and used Flutter\u2019s\nplatform APIs to run the Flutter engine and/or UI,\nyou can then build and run your Android or iOS app the same way\nyou run normal Android or iOS apps.\n\nHowever, Flutter is now powering the UI in places where you\u2019re showing a\nFlutterActivity or FlutterViewController.\n\nDebugging", "source": "https://docs.flutter.dev/development/add-to-app/debugging/index.html"} {"id": "2a661944e312-1", "text": "Debugging\n\nYou may be used to having your suite of favorite Flutter debugging tools\navailable to you automatically when running flutter run or an equivalent\ncommand from an IDE. But you can also use all your Flutter\ndebugging functionalities such as hot reload, performance\noverlays, DevTools, and setting breakpoints in add-to-app scenarios.\n\nThese functionalities are provided by the flutter attach mechanism.\nflutter attach can be initiated through different pathways,\nsuch as through the SDK\u2019s CLI tools,\nthrough VS Code or IntelliJ/Android Studio.\n\nflutter attach can connect as soon as you run your FlutterEngine, and\nremains attached until your FlutterEngine is disposed. But you can invoke\nflutter attach before starting your engine. flutter attach waits for\nthe next available Dart VM that is hosted by your engine.\n\nTerminal\n\nRun flutter attach or flutter attach -d deviceId to attach from the terminal.\n\nVS Code", "source": "https://docs.flutter.dev/development/add-to-app/debugging/index.html"} {"id": "2a661944e312-2", "text": "VS Code\n\nSelect the correct device using the status bar in VS Code, then run the Flutter: Attach to Flutter on Device command from the command palette.\n\nAlternatively, create a .vscode/launch.json file in your Flutter module project to enable attaching using the Run > Start Debugging command or F5:\n\nname\n\nFlutter: Attach\n\nrequest\n\nattach\n\ntype\n\ndart\n\nIntelliJ / Android Studio\n\nSelect the device on which the Flutter module runs so flutter attach filters for the right start signals.", "source": "https://docs.flutter.dev/development/add-to-app/debugging/index.html"} {"id": "f7adf141f53b-0", "text": "Add Flutter to existing app\n\nAdd Flutter to existing app\n\nAdd-to-app\n\nSupported features\n\nAdd to Android applications\nAdd to iOS applications\n\nGet started\n\nAPI usage\n\nLimitations\n\nAdd-to-app\n\nIt\u2019s sometimes not practical to rewrite your entire application in\nFlutter all at once. For those situations,\nFlutter can be integrated into your existing\napplication piecemeal, as a library or module.\nThat module can then be imported into your Android or iOS\n(currently supported platforms) app to render a part of your\napp\u2019s UI in Flutter. Or, just to run shared Dart logic.\n\nIn a few steps, you can bring the productivity and the expressiveness of\nFlutter into your own app.", "source": "https://docs.flutter.dev/development/add-to-app/index.html"} {"id": "f7adf141f53b-1", "text": "The add-to-app feature supports integrating multiple instances of any screen size.\nThis can help scenarios such as a hybrid navigation stack with mixed\nnative and Flutter screens, or a page with multiple partial-screen Flutter\nviews.\n\nHaving multiple Flutter instances allows each instance to maintain\nindependent application and UI state while using minimal\nmemory resources. See more in the multiple Flutters page.\n\nSupported features\n\nAdd to Android applications\n\nAuto-build and import the Flutter module by adding a\nFlutter SDK hook to your Gradle script.\n\nBuild your Flutter module into a generic\nAndroid Archive (AAR) for integration into your\nown build system and for better Jetifier interoperability\nwith AndroidX.\n\nFlutterEngine API for starting and persisting\nyour Flutter environment independently of attaching a\nFlutterActivity/FlutterFragment etc.\n\nAndroid Studio Android/Flutter co-editing and module\ncreation/import wizard.\n\nJava and Kotlin host apps are supported.", "source": "https://docs.flutter.dev/development/add-to-app/index.html"} {"id": "f7adf141f53b-2", "text": "Java and Kotlin host apps are supported.\n\nFlutter modules can use Flutter plugins to interact\nwith the platform.\n\nSupport for Flutter debugging and stateful hot reload by\nusing flutter attach from IDEs or the command line to\nconnect to an app that contains Flutter.\n\nAdd to iOS applications\n\nAuto-build and import the Flutter module by adding a Flutter\nSDK hook to your CocoaPods and to your Xcode build phase.\n\nBuild your Flutter module into a generic iOS Framework\nfor integration into your own build system.\n\nFlutterEngine API for starting and persisting\nyour Flutter environment independently of attaching a\nFlutterViewController.\n\nObjective-C and Swift host apps supported.\n\nFlutter modules can use Flutter plugins to interact\nwith the platform.\n\nSupport for Flutter debugging and stateful hot reload by\nusing flutter attach from IDEs or the command line to\nconnect to an app that contains Flutter.", "source": "https://docs.flutter.dev/development/add-to-app/index.html"} {"id": "f7adf141f53b-3", "text": "See our add-to-app GitHub Samples repository\nfor sample projects in Android and iOS that import\na Flutter module for UI.\n\nGet started\n\nTo get started, see our project integration guide for\nAndroid and iOS:\n\nAndroid\n\niOS\n\nAPI usage\n\nAfter Flutter is integrated into your project,\nsee our API usage guides at the following links:\n\nAndroid\n\niOS\n\nLimitations\n\nPacking multiple Flutter libraries into an\napplication isn\u2019t supported.\n\nPlugins that don\u2019t support FlutterPlugin might have unexpected\nbehaviors if they make assumptions that are untenable in add-to-app\n(such as assuming that a Flutter Activity is always present).\n\nOn Android, the Flutter module only supports AndroidX applications.", "source": "https://docs.flutter.dev/development/add-to-app/index.html"} {"id": "dfaec9f3ec15-0", "text": "Adding a Flutter screen to an iOS app\n\nAdd Flutter to existing app\n\nAdding Flutter to iOS\n\nAdd a Flutter screen\n\nStart a FlutterEngine and FlutterViewController\n\nCreate a FlutterEngine\nShow a FlutterViewController with your FlutterEngine\nAlternatively - Create a FlutterViewController with an implicit FlutterEngine\n\nUsing the FlutterAppDelegate\n\nCreating a FlutterAppDelegate subclass\nIf you can\u2019t directly make FlutterAppDelegate a subclass\n\nLaunch options\n\nDart entrypoint\nDart library\nRoute\nOther\n\nThis guide describes how to add a single Flutter screen to an existing iOS app.\n\nStart a FlutterEngine and FlutterViewController\n\nTo launch a Flutter screen from an existing iOS, you start a\nFlutterEngine and a FlutterViewController.", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-1", "text": "The FlutterEngine serves as a host to the Dart VM and your Flutter runtime,\n and the FlutterViewController attaches to a FlutterEngine to pass \n input events into Flutter and to display frames rendered by the\n FlutterEngine.\n\nThe FlutterEngine may have the same lifespan as your\nFlutterViewController or outlive your FlutterViewController.\n\nTip:\n It\u2019s generally recommended to pre-warm a long-lived\n FlutterEngine for your application because:\n\nThe first frame appears faster when showing the FlutterViewController.\n\nYour Flutter and Dart state will outlive one FlutterViewController.\n\nYour application and your plugins can interact with Flutter and your Dart\nlogic before showing the UI.\n\nSee Loading sequence and performance\nfor more analysis on the latency and memory\ntrade-offs of pre-warming an engine.\n\nCreate a FlutterEngine\n\nWhere you create a FlutterEngine depends on your host app.", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-2", "text": "Where you create a FlutterEngine depends on your host app.\n\nSwiftUI\n\nUIKit-Swift\n\nUIKit-ObjC\n\nIn this example, we create a FlutterEngine object inside a SwiftUI ObservableObject. \nWe then pass this FlutterEngine into a ContentView using the \n environmentObject() property.\n\nIn MyApp.swift:\n\nimport\n\nSwiftUI\n\nimport\n\nFlutter\n\n// The following library connects plugins with iOS platform code to this app.\n\nimport\n\nFlutterPluginRegistrant\n\nclass\n\nFlutterDependencies\n\nObservableObject\n\nlet\n\nflutterEngine\n\nFlutterEngine\n\nname\n\n\"my flutter engine\"\n\ninit\n\n(){", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-3", "text": "\"my flutter engine\"\n\ninit\n\n(){\n\n// Runs the default Dart entrypoint with a default Flutter route.\n\nflutterEngine\n\nrun\n\n()\n\n// Connects plugins with iOS platform code to this app.\n\nGeneratedPluginRegistrant\n\nregister\n\nwith\n\nself\n\nflutterEngine\n\n);\n\n@main\n\nstruct\n\nMyApp\n\nApp\n\n// flutterDependencies will be injected using EnvironmentObject.\n\n@StateObject\n\nvar\n\nflutterDependencies\n\nFlutterDependencies\n\n()\n\nvar\n\nbody\n\nsome\n\nScene\n\nWindowGroup\n\nContentView\n\n()\n\nenvironmentObject", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-4", "text": "ContentView\n\n()\n\nenvironmentObject\n\nflutterDependencies\n\nAs an example, we demonstrate creating a\nFlutterEngine, exposed as a property, on app startup in\nthe app delegate.\n\nIn AppDelegate.swift:\n\nimport\n\nUIKit\n\nimport\n\nFlutter\n\n// The following library connects plugins with iOS platform code to this app.\n\nimport\n\nFlutterPluginRegistrant\n\n@UIApplicationMain\n\nclass\n\nAppDelegate\n\nFlutterAppDelegate\n\n// More on the FlutterAppDelegate.\n\nlazy\n\nvar\n\nflutterEngine\n\nFlutterEngine\n\nname\n\n\"my flutter engine\"\n\noverride\n\nfunc\n\napplication\n\napplication\n\nUIApplication", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-5", "text": "application\n\napplication\n\nUIApplication\n\ndidFinishLaunchingWithOptions\n\nlaunchOptions\n\nUIApplication\n\nLaunchOptionsKey\n\nAny\n\n]?)\n\n>\n\nBool\n\n// Runs the default Dart entrypoint with a default Flutter route.\n\nflutterEngine\n\nrun\n\n();\n\n// Connects plugins with iOS platform code to this app.\n\nGeneratedPluginRegistrant\n\nregister\n\nwith\n\nself\n\nflutterEngine\n\n);\n\nreturn\n\nsuper\n\napplication\n\napplication\n\ndidFinishLaunchingWithOptions\n\nlaunchOptions\n\n);", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-6", "text": "launchOptions\n\n);\n\nIn this example, we create a FlutterEngine \nobject inside a SwiftUI ObservableObject. \nWe then pass this FlutterEngine into a \nContentView using the environmentObject() property.\n\nIn AppDelegate.h:\n\n@import\n\nUIKit\n\n@import\n\nFlutter\n\n@interface\n\nAppDelegate\n\nFlutterAppDelegate\n\n// More on the FlutterAppDelegate below.\n\n@property\n\nnonatomic\n\nstrong\n\nFlutterEngine\n\nflutterEngine\n\n@end\n\nIn AppDelegate.m:\n\n// The following library connects plugins with iOS platform code to this app.\n\n#import \n\n#import \"AppDelegate.h\"\n\n@implementation", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-7", "text": "#import \"AppDelegate.h\"\n\n@implementation\n\nAppDelegate\n\nBOOL\n\napplication\n\n:(\n\nUIApplication\n\napplication\n\ndidFinishLaunchingWithOptions\n\n:(\n\nNSDictionary\n\nUIApplicationLaunchOptionsKey\n\nid\n\nlaunchOptions\n\nself\n\nflutterEngine\n\n[[\n\nFlutterEngine\n\nalloc\n\ninitWithName\n\n@\"my flutter engine\"\n\n];\n\n// Runs the default Dart entrypoint with a default Flutter route.\n\nself\n\nflutterEngine\n\nrun\n\n];\n\n// Connects plugins with iOS platform code to this app.\n\nGeneratedPluginRegistrant\n\nregisterWithRegistry\n\nself", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-8", "text": "registerWithRegistry\n\nself\n\nflutterEngine\n\n];\n\nreturn\n\nsuper\n\napplication\n\napplication\n\ndidFinishLaunchingWithOptions\n\nlaunchOptions\n\n];\n\n@end\n\nShow a FlutterViewController with your FlutterEngine\n\nSwiftUI\n\nUIKit-Swift\n\nUIKit-ObjC\n\nFlutterViewController.\nThe\n\nimport\n\nSwiftUI\n\nimport\n\nFlutter\n\nstruct\n\nContentView\n\nView\n\n// Flutter dependencies are passed in an EnvironmentObject.\n\n@EnvironmentObject\n\nvar\n\nflutterDependencies\n\nFlutterDependencies\n\n// Button is created to call the showFlutter function when pressed.\n\nvar", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-9", "text": "var\n\nbody\n\nsome\n\nView\n\nButton\n\n\"Show Flutter!\"\n\nshowFlutter\n\n()\n\nfunc\n\nshowFlutter\n\n()\n\n// Get the RootViewController.\n\nguard\n\nlet\n\nwindowScene\n\nUIApplication\n\nshared\n\nconnectedScenes\n\nfirst\n\nwhere\n\n$0\n\nactivationState\n\n==\n\nforegroundActive\n\n&&\n\n$0\n\nis\n\nUIWindowScene\n\n})\n\nas?\n\nUIWindowScene\n\nlet\n\nwindow\n\nwindowScene\n\nwindows\n\nfirst\n\nwhere", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-10", "text": "windows\n\nfirst\n\nwhere\n\nisKeyWindow\n\n),\n\nlet\n\nrootViewController\n\nwindow\n\nrootViewController\n\nelse\n\nreturn\n\n// Create the FlutterViewController.\n\nlet\n\nflutterViewController\n\nFlutterViewController\n\nengine\n\nflutterDependencies\n\nflutterEngine\n\nnibName\n\nnil\n\nbundle\n\nnil\n\nflutterViewController\n\nmodalPresentationStyle\n\noverCurrentContext\n\nflutterViewController\n\nisViewOpaque\n\nfalse\n\nrootViewController\n\npresent\n\nflutterViewController\n\nanimated\n\ntrue\n\nFlutterViewController.\nThe\n\nimport\n\nUIKit", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-11", "text": "FlutterViewController.\nThe\n\nimport\n\nUIKit\n\nimport\n\nFlutter\n\nclass\n\nViewController\n\nUIViewController\n\noverride\n\nfunc\n\nviewDidLoad\n\n()\n\nsuper\n\nviewDidLoad\n\n()\n\n// Make a button to call the showFlutter function when pressed.\n\nlet\n\nbutton\n\nUIButton\n\ntype\n\nUIButton\n\nButtonType\n\ncustom\n\nbutton\n\naddTarget\n\nself\n\naction\n\n#selector(\n\nshowFlutter\n\nfor\n\ntouchUpInside\n\nbutton\n\nsetTitle\n\n\"Show Flutter!\"\n\nfor", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-12", "text": "setTitle\n\n\"Show Flutter!\"\n\nfor\n\nUIControl\n\nState\n\nnormal\n\nbutton\n\nframe\n\nCGRect\n\n80.0\n\n210.0\n\nwidth\n\n160.0\n\nheight\n\n40.0\n\nbutton\n\nbackgroundColor\n\nUIColor\n\nblue\n\nself\n\nview\n\naddSubview\n\nbutton\n\n@objc\n\nfunc\n\nshowFlutter\n\n()\n\nlet\n\nflutterEngine\n\nUIApplication\n\nshared\n\ndelegate\n\nas!\n\nAppDelegate\n\nflutterEngine\n\nlet", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-13", "text": "AppDelegate\n\nflutterEngine\n\nlet\n\nflutterViewController\n\nFlutterViewController\n\nengine\n\nflutterEngine\n\nnibName\n\nnil\n\nbundle\n\nnil\n\npresent\n\nflutterViewController\n\nanimated\n\ntrue\n\ncompletion\n\nnil\n\nFlutterViewController.\nThe\n\n@import\n\nFlutter\n\n#import \"AppDelegate.h\"\n#import \"ViewController.h\"\n\n@implementation\n\nViewController\n\nvoid\n\nviewDidLoad\n\nsuper\n\nviewDidLoad\n\n];\n\n// Make a button to call the showFlutter function when pressed.\n\nUIButton\n\nbutton\n\nUIButton\n\nbuttonWithType", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-14", "text": "button\n\nUIButton\n\nbuttonWithType\n\nUIButtonTypeCustom\n\n];\n\nbutton\n\naddTarget\n\nself\n\naction:\n\n@selector\n\nshowFlutter\n\nforControlEvents:\n\nUIControlEventTouchUpInside\n\n];\n\nbutton\n\nsetTitle\n\n@\"Show Flutter!\"\n\nforState\n\nUIControlStateNormal\n\n];\n\nbutton\n\nbackgroundColor\n\nUIColor\n\nblueColor\n\nbutton\n\nframe\n\nCGRectMake\n\n80\n\n210\n\n160\n\n40\n\n);\n\nself\n\nview\n\naddSubview", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-15", "text": "self\n\nview\n\naddSubview\n\nbutton\n\n];\n\nvoid\n\nshowFlutter\n\nFlutterEngine\n\nflutterEngine\n\n((\n\nAppDelegate\n\nUIApplication\n\nsharedApplication\n\ndelegate\n\n).\n\nflutterEngine\n\nFlutterViewController\n\nflutterViewController\n\n[[\n\nFlutterViewController\n\nalloc\n\ninitWithEngine\n\nflutterEngine\n\nnibName\n\nnil\n\nbundle\n\nnil\n\n];\n\nself\n\npresentViewController\n\nflutterViewController\n\nanimated\n\nYES\n\ncompletion\n\nnil\n\n];\n\n@end", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-16", "text": "nil\n\n];\n\n@end\n\nNow, you have a Flutter screen embedded in your iOS app.\n\nAlternatively - Create a FlutterViewController with an implicit FlutterEngine\n\nAs an alternative to the previous example, you can let the\nFlutterViewController implicitly create its own FlutterEngine without\npre-warming one ahead of time.\n\nThis is not usually recommended because creating a\nFlutterEngine on-demand could introduce a noticeable\nlatency between when the FlutterViewController is\npresented and when it renders its first frame. This could, however, be\nuseful if the Flutter screen is rarely shown, when there are no good\nheuristics to determine when the Dart VM should be started, and when Flutter\ndoesn\u2019t need to persist state between view controllers.\n\nTo let the FlutterViewController present without an existing\nFlutterEngine, omit the FlutterEngine construction, and create the\nFlutterViewController without an engine reference.\n\nSwiftUI", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-17", "text": "SwiftUI\n\nUIKit-Swift\n\nUIKit-ObjC\n\nimport\n\nSwiftUI\n\nimport\n\nFlutter\n\nstruct\n\nContentView\n\nView\n\nvar\n\nbody\n\nsome\n\nView\n\nButton\n\n\"Show Flutter!\"\n\nopenFlutterApp\n\n()\n\nfunc\n\nopenFlutterApp\n\n()\n\n// Get the RootViewController.\n\nguard\n\nlet\n\nwindowScene\n\nUIApplication\n\nshared\n\nconnectedScenes\n\nfirst\n\nwhere\n\n$0\n\nactivationState\n\n==\n\nforegroundActive\n\n&&\n\n$0", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-18", "text": "foregroundActive\n\n&&\n\n$0\n\nis\n\nUIWindowScene\n\n})\n\nas?\n\nUIWindowScene\n\nlet\n\nwindow\n\nwindowScene\n\nwindows\n\nfirst\n\nwhere\n\nisKeyWindow\n\n),\n\nlet\n\nrootViewController\n\nwindow\n\nrootViewController\n\nelse\n\nreturn\n\n// Create the FlutterViewController without an existing FlutterEngine.\n\nlet\n\nflutterViewController\n\nFlutterViewController\n\nproject\n\nnil\n\nnibName\n\nnil\n\nbundle\n\nnil\n\nflutterViewController\n\nmodalPresentationStyle\n\noverCurrentContext\n\nflutterViewController", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-19", "text": "modalPresentationStyle\n\noverCurrentContext\n\nflutterViewController\n\nisViewOpaque\n\nfalse\n\nrootViewController\n\npresent\n\nflutterViewController\n\nanimated\n\ntrue\n\n// Existing code omitted.\n\nfunc\n\nshowFlutter\n\n()\n\nlet\n\nflutterViewController\n\nFlutterViewController\n\nproject\n\nnil\n\nnibName\n\nnil\n\nbundle\n\nnil\n\npresent\n\nflutterViewController\n\nanimated\n\ntrue\n\ncompletion\n\nnil\n\n// Existing code omitted.\n\nvoid\n\nshowFlutter\n\nFlutterViewController\n\nflutterViewController\n\n[[\n\nFlutterViewController", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-20", "text": "flutterViewController\n\n[[\n\nFlutterViewController\n\nalloc\n\ninitWithProject\n\nnil\n\nnibName\n\nnil\n\nbundle\n\nnil\n\n];\n\nself\n\npresentViewController\n\nflutterViewController\n\nanimated\n\nYES\n\ncompletion\n\nnil\n\n];\n\n@end\n\nSee Loading sequence and performance\nfor more explorations on latency and memory usage.\n\nUsing the FlutterAppDelegate\n\nLetting your application\u2019s UIApplicationDelegate subclass\nFlutterAppDelegate is recommended but not required.\n\nThe FlutterAppDelegate performs functions such as:\n\nForwarding application callbacks such as openURL\nto plugins such as local_auth.\n\nKeeping the Flutter connection open \nin debug mode when the phone screen locks.", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-21", "text": "Keeping the Flutter connection open \nin debug mode when the phone screen locks.\n\nCreating a FlutterAppDelegate subclass\n\nCreating a subclass of the the FlutterAppDelegate in UIKit apps was shown \nin the Start a FlutterEngine and FlutterViewController section. \nIn a SwiftUI app, you can create a subclass of the \nFlutterAppDelegate that conforms to the ObservableObject protocol as follows:\n\nimport\n\nSwiftUI\n\nimport\n\nFlutter\n\nimport\n\nFlutterPluginRegistrant\n\nclass\n\nAppDelegate\n\nFlutterAppDelegate\n\nObservableObject\n\nlet\n\nflutterEngine\n\nFlutterEngine\n\nname\n\n\"my flutter engine\"\n\noverride\n\nfunc\n\napplication\n\napplication\n\nUIApplication", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-22", "text": "application\n\napplication\n\nUIApplication\n\ndidFinishLaunchingWithOptions\n\nlaunchOptions\n\nUIApplication\n\nLaunchOptionsKey\n\nAny\n\n]?)\n\n>\n\nBool\n\n// Runs the default Dart entrypoint with a default Flutter route.\n\nflutterEngine\n\nrun\n\n();\n\n// Used to connect plugins (only if you have plugins with iOS platform code).\n\nGeneratedPluginRegistrant\n\nregister\n\nwith\n\nself\n\nflutterEngine\n\n);\n\nreturn\n\ntrue\n\n@main\n\nstruct\n\nMyApp\n\nApp\n\n// Use this property wrapper to tell SwiftUI\n\n// it should use the AppDelegate class for the application delegate", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-23", "text": "// it should use the AppDelegate class for the application delegate\n\n@UIApplicationDelegateAdaptor\n\nAppDelegate\n\nself\n\nvar\n\nappDelegate\n\nvar\n\nbody\n\nsome\n\nScene\n\nWindowGroup\n\nContentView\n\n()\n\nThen, in your view, the AppDelegateis accessible as an EnvironmentObject.\n\nimport\n\nSwiftUI\n\nimport\n\nFlutter\n\nstruct\n\nContentView\n\nView\n\n// Access the AppDelegate using an EnvironmentObject.\n\n@EnvironmentObject\n\nvar\n\nappDelegate\n\nAppDelegate\n\nvar\n\nbody\n\nsome\n\nView\n\nButton\n\n\"Show Flutter!\"", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-24", "text": "View\n\nButton\n\n\"Show Flutter!\"\n\nopenFlutterApp\n\n()\n\nfunc\n\nopenFlutterApp\n\n()\n\n// Get the RootViewController.\n\nguard\n\nlet\n\nwindowScene\n\nUIApplication\n\nshared\n\nconnectedScenes\n\nfirst\n\nwhere\n\n$0\n\nactivationState\n\n==\n\nforegroundActive\n\n&&\n\n$0\n\nis\n\nUIWindowScene\n\n})\n\nas?\n\nUIWindowScene\n\nlet\n\nwindow\n\nwindowScene\n\nwindows\n\nfirst\n\nwhere\n\nisKeyWindow\n\n),\n\nlet", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-25", "text": "isKeyWindow\n\n),\n\nlet\n\nrootViewController\n\nwindow\n\nrootViewController\n\nelse\n\nreturn\n\n// Create the FlutterViewController.\n\nlet\n\nflutterViewController\n\nFlutterViewController\n\n// Access the Flutter Engine via AppDelegate.\n\nengine\n\nappDelegate\n\nflutterEngine\n\nnibName\n\nnil\n\nbundle\n\nnil\n\nflutterViewController\n\nmodalPresentationStyle\n\noverCurrentContext\n\nflutterViewController\n\nisViewOpaque\n\nfalse\n\nrootViewController\n\npresent\n\nflutterViewController\n\nanimated\n\ntrue\n\nIf you can\u2019t directly make FlutterAppDelegate a subclass", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-26", "text": "true\n\nIf you can\u2019t directly make FlutterAppDelegate a subclass\n\nIf your app delegate can\u2019t directly make FlutterAppDelegate a subclass,\nmake your app delegate implement the FlutterAppLifeCycleProvider\nprotocol in order to make sure your plugins receive the necessary callbacks.\nOtherwise, plugins that depend on these events may have undefined behavior.\n\nFor instance:\n\nSwift\n\nObjective-C\n\nimport\n\nFoundation\n\nimport\n\nFlutter\n\nclass\n\nAppDelegate\n\nUIResponder\n\nUIApplicationDelegate\n\nFlutterAppLifeCycleProvider\n\nObservableObject\n\nprivate\n\nlet\n\nlifecycleDelegate\n\nFlutterPluginAppLifeCycleDelegate\n\n()\n\nlet\n\nflutterEngine\n\nFlutterEngine\n\nname", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-27", "text": "flutterEngine\n\nFlutterEngine\n\nname\n\n\"flutter_nps_engine\"\n\noverride\n\nfunc\n\napplication\n\napplication\n\nUIApplication\n\ndidFinishLaunchingWithOptions\n\nlaunchOptions\n\nUIApplication\n\nLaunchOptionsKey\n\nAny\n\n]?\n\nnil\n\n>\n\nBool\n\nfunc\n\napplication\n\napplication\n\nUIApplication\n\ndidFinishLaunchingWithOptions\n\nlaunchOptions\n\nUIApplication\n\nLaunchOptionsKey\n\nAny\n\n]?\n\nnil\n\n>\n\nBool\n\nflutterEngine\n\nrun\n\n()\n\nreturn", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-28", "text": "run\n\n()\n\nreturn\n\nlifecycleDelegate\n\napplication\n\napplication\n\ndidFinishLaunchingWithOptions\n\nlaunchOptions\n\n??\n\n[:])\n\nfunc\n\napplication\n\napplication\n\nUIApplication\n\ndidRegisterForRemoteNotificationsWithDeviceToken\n\ndeviceToken\n\nData\n\nlifecycleDelegate\n\napplication\n\napplication\n\ndidRegisterForRemoteNotificationsWithDeviceToken\n\ndeviceToken\n\nfunc\n\napplication\n\napplication\n\nUIApplication\n\ndidFailToRegisterForRemoteNotificationsWithError\n\nerror\n\nError\n\nlifecycleDelegate\n\napplication\n\napplication\n\ndidFailToRegisterForRemoteNotificationsWithError", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-29", "text": "application\n\ndidFailToRegisterForRemoteNotificationsWithError\n\nerror\n\nfunc\n\napplication\n\napplication\n\nUIApplication\n\ndidReceiveRemoteNotification\n\nuserInfo\n\nAnyHashable\n\nAny\n\n],\n\nfetchCompletionHandler\n\ncompletionHandler\n\n@escaping\n\nUIBackgroundFetchResult\n\n>\n\nVoid\n\nlifecycleDelegate\n\napplication\n\napplication\n\ndidReceiveRemoteNotification\n\nuserInfo\n\nfetchCompletionHandler\n\ncompletionHandler\n\nfunc\n\napplication\n\napp\n\nUIApplication\n\nopen\n\nurl\n\nURL\n\noptions\n\nUIApplication\n\nOpenURLOptionsKey", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-30", "text": "options\n\nUIApplication\n\nOpenURLOptionsKey\n\nAny\n\n[:])\n\n>\n\nBool\n\nreturn\n\nlifecycleDelegate\n\napplication\n\napp\n\nopen\n\nurl\n\noptions\n\noptions\n\nfunc\n\napplication\n\napplication\n\nUIApplication\n\nhandleOpen\n\nurl\n\nURL\n\n>\n\nBool\n\nreturn\n\nlifecycleDelegate\n\napplication\n\napplication\n\nhandleOpen\n\nurl\n\nfunc\n\napplication\n\napplication\n\nUIApplication\n\nopen\n\nurl\n\nURL\n\nsourceApplication\n\nString", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-31", "text": "URL\n\nsourceApplication\n\nString\n\n?,\n\nannotation\n\nAny\n\n>\n\nBool\n\nreturn\n\nlifecycleDelegate\n\napplication\n\napplication\n\nopen\n\nurl\n\nsourceApplication\n\nsourceApplication\n\n??\n\n\"\"\n\nannotation\n\nannotation\n\nfunc\n\napplication\n\napplication\n\nUIApplication\n\nperformActionFor\n\nshortcutItem\n\nUIApplicationShortcutItem\n\ncompletionHandler\n\n@escaping\n\nBool\n\n>\n\nVoid\n\nlifecycleDelegate\n\napplication\n\napplication\n\nperformActionFor\n\nshortcutItem\n\ncompletionHandler", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-32", "text": "performActionFor\n\nshortcutItem\n\ncompletionHandler\n\ncompletionHandler\n\nfunc\n\napplication\n\napplication\n\nUIApplication\n\nhandleEventsForBackgroundURLSession\n\nidentifier\n\nString\n\ncompletionHandler\n\n@escaping\n\n()\n\n>\n\nVoid\n\nlifecycleDelegate\n\napplication\n\napplication\n\nhandleEventsForBackgroundURLSession\n\nidentifier\n\ncompletionHandler\n\ncompletionHandler\n\nfunc\n\napplication\n\napplication\n\nUIApplication\n\nperformFetchWithCompletionHandler\n\ncompletionHandler\n\n@escaping\n\nUIBackgroundFetchResult\n\n>\n\nVoid\n\nlifecycleDelegate\n\napplication\n\napplication", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-33", "text": "lifecycleDelegate\n\napplication\n\napplication\n\nperformFetchWithCompletionHandler\n\ncompletionHandler\n\nfunc\n\nadd\n\ndelegate\n\nFlutterApplicationLifeCycleDelegate\n\nlifecycleDelegate\n\nadd\n\ndelegate\n\n@import\n\nFlutter\n\n@import\n\nUIKit\n\n@import\n\nFlutterPluginRegistrant\n\n@interface\n\nAppDelegate\n\nUIResponder\n\nUIApplicationDelegate\n\nFlutterAppLifeCycleProvider\n\n@property\n\nstrong\n\nnonatomic\n\nUIWindow\n\nwindow\n\n@property\n\nnonatomic\n\nstrong\n\nFlutterEngine\n\nflutterEngine\n\n@end", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-34", "text": "FlutterEngine\n\nflutterEngine\n\n@end\n\nThe implementation should delegate mostly to a\nFlutterPluginAppLifeCycleDelegate:\n\n@interface\n\nAppDelegate\n\n()\n\n@property\n\nnonatomic\n\nstrong\n\nFlutterPluginAppLifeCycleDelegate\n\nlifeCycleDelegate\n\n@end\n\n@implementation\n\nAppDelegate\n\ninstancetype\n\ninit\n\nif\n\nself\n\nsuper\n\ninit\n\n])\n\n_lifeCycleDelegate\n\n[[\n\nFlutterPluginAppLifeCycleDelegate\n\nalloc\n\ninit\n\n];\n\nreturn\n\nself\n\nBOOL\n\napplication\n\n:(", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-35", "text": "BOOL\n\napplication\n\n:(\n\nUIApplication\n\napplication\n\ndidFinishLaunchingWithOptions\n\n:(\n\nNSDictionary\n\nUIApplicationLaunchOptionsKey\n\nid\n\n>*\n\n))\n\nlaunchOptions\n\nself\n\nflutterEngine\n\n[[\n\nFlutterEngine\n\nalloc\n\ninitWithName\n\n@\"io.flutter\"\n\nproject\n\nnil\n\n];\n\nself\n\nflutterEngine\n\nrunWithEntrypoint\n\nnil\n\n];\n\nGeneratedPluginRegistrant\n\nregisterWithRegistry\n\nself\n\nflutterEngine\n\n];\n\nreturn\n\n_lifeCycleDelegate", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-36", "text": "];\n\nreturn\n\n_lifeCycleDelegate\n\napplication\n\napplication\n\ndidFinishLaunchingWithOptions\n\nlaunchOptions\n\n];\n\n// Returns the key window's rootViewController, if it's a FlutterViewController.\n\n// Otherwise, returns nil.\n\nFlutterViewController\n\nrootFlutterViewController\n\nUIViewController\n\nviewController\n\nUIApplication\n\nsharedApplication\n\n].\n\nkeyWindow\n\nrootViewController\n\nif\n\n([\n\nviewController\n\nisKindOfClass\n\n:[\n\nFlutterViewController\n\nclass\n\n]])\n\nreturn\n\nFlutterViewController\n\nviewController\n\nreturn\n\nnil", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-37", "text": "viewController\n\nreturn\n\nnil\n\nvoid\n\napplication\n\n:(\n\nUIApplication\n\napplication\n\ndidRegisterUserNotificationSettings\n\n:(\n\nUIUserNotificationSettings\n\nnotificationSettings\n\n_lifeCycleDelegate\n\napplication\n\napplication\n\ndidRegisterUserNotificationSettings:\n\nnotificationSettings\n\n];\n\nvoid\n\napplication\n\n:(\n\nUIApplication\n\napplication\n\ndidRegisterForRemoteNotificationsWithDeviceToken\n\n:(\n\nNSData\n\ndeviceToken\n\n_lifeCycleDelegate\n\napplication\n\napplication\n\ndidRegisterForRemoteNotificationsWithDeviceToken:\n\ndeviceToken\n\n];\n\nvoid", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-38", "text": "deviceToken\n\n];\n\nvoid\n\napplication\n\n:(\n\nUIApplication\n\napplication\n\ndidReceiveRemoteNotification\n\n:(\n\nNSDictionary\n\nuserInfo\n\nfetchCompletionHandler\n\n:(\n\nvoid\n\n)(\n\nUIBackgroundFetchResult\n\nresult\n\n))\n\ncompletionHandler\n\n_lifeCycleDelegate\n\napplication\n\napplication\n\ndidReceiveRemoteNotification:\n\nuserInfo\n\nfetchCompletionHandler:\n\ncompletionHandler\n\n];\n\nBOOL\n\napplication\n\n:(\n\nUIApplication\n\napplication\n\nopenURL\n\n:(\n\nNSURL\n\nurl\n\noptions", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-39", "text": "NSURL\n\nurl\n\noptions\n\n:(\n\nNSDictionary\n\nUIApplicationOpenURLOptionsKey\n\nid\n\n>*\n\noptions\n\nreturn\n\n_lifeCycleDelegate\n\napplication\n\napplication\n\nopenURL\n\nurl\n\noptions\n\noptions\n\n];\n\nBOOL\n\napplication\n\n:(\n\nUIApplication\n\napplication\n\nhandleOpenURL\n\n:(\n\nNSURL\n\nurl\n\nreturn\n\n_lifeCycleDelegate\n\napplication\n\napplication\n\nhandleOpenURL\n\nurl\n\n];\n\nBOOL\n\napplication\n\n:(\n\nUIApplication", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-40", "text": "application\n\n:(\n\nUIApplication\n\napplication\n\nopenURL\n\n:(\n\nNSURL\n\nurl\n\nsourceApplication\n\n:(\n\nNSString\n\nsourceApplication\n\nannotation\n\n:(\n\nid\n\nannotation\n\nreturn\n\n_lifeCycleDelegate\n\napplication\n\napplication\n\nopenURL:\n\nurl\n\nsourceApplication:\n\nsourceApplication\n\nannotation:\n\nannotation\n\n];\n\nvoid\n\napplication\n\n:(\n\nUIApplication\n\napplication\n\nperformActionForShortcutItem\n\n:(\n\nUIApplicationShortcutItem\n\nshortcutItem\n\ncompletionHandler", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-41", "text": "UIApplicationShortcutItem\n\nshortcutItem\n\ncompletionHandler\n\n:(\n\nvoid\n\n)(\n\nBOOL\n\nsucceeded\n\n))\n\ncompletionHandler\n\n_lifeCycleDelegate\n\napplication\n\napplication\n\nperformActionForShortcutItem:\n\nshortcutItem\n\ncompletionHandler:\n\ncompletionHandler\n\n];\n\nvoid\n\napplication\n\n:(\n\nUIApplication\n\napplication\n\nhandleEventsForBackgroundURLSession\n\n:(\n\nnonnull\n\nNSString\n\nidentifier\n\ncompletionHandler\n\n:(\n\nnonnull\n\nvoid\n\n)(\n\nvoid\n\n))\n\ncompletionHandler", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-42", "text": "void\n\n))\n\ncompletionHandler\n\n_lifeCycleDelegate\n\napplication\n\napplication\n\nhandleEventsForBackgroundURLSession:\n\nidentifier\n\ncompletionHandler:\n\ncompletionHandler\n\n];\n\nvoid\n\napplication\n\n:(\n\nUIApplication\n\napplication\n\nperformFetchWithCompletionHandler\n\n:(\n\nvoid\n\n)(\n\nUIBackgroundFetchResult\n\nresult\n\n))\n\ncompletionHandler\n\n_lifeCycleDelegate\n\napplication\n\napplication\n\nperformFetchWithCompletionHandler\n\ncompletionHandler\n\n];\n\nvoid\n\naddApplicationLifeCycleDelegate\n\n:(\n\nNSObject\n\nFlutterPlugin", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-43", "text": ":(\n\nNSObject\n\nFlutterPlugin\n\n>*\n\ndelegate\n\n_lifeCycleDelegate\n\naddDelegate\n\ndelegate\n\n];\n\n@end\n\nLaunch options\n\nThe examples demonstrate running Flutter using the default launch settings.\n\nIn order to customize your Flutter runtime,\nyou can also specify the Dart entrypoint, library, and route.\n\nDart entrypoint\n\nCalling run on a FlutterEngine, by default,\nruns the main() Dart function\nof your lib/main.dart file.\n\nYou can also run a different entrypoint function by using\nrunWithEntrypoint with an NSString specifying\na different Dart function.\n\nNote:\n Dart entrypoint functions other than main()\n must be annotated with the following in order to\n not be tree-shaken away when compiling:\n\n@pragma", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-44", "text": "@pragma\n\n'vm:entry-point'\n\nvoid\n\nmyOtherEntrypoint\n\n()\n\n...\n\n};\n\nDart library\n\nIn addition to specifying a Dart function, you can specify an entrypoint\nfunction in a specific file.\n\nFor instance the following runs myOtherEntrypoint()\nin lib/other_file.dart instead of main() in lib/main.dart:\n\nSwift\n\nObjective-C\n\nflutterEngine\n\nrun\n\nwithEntrypoint\n\n\"myOtherEntrypoint\"\n\nlibraryURI\n\n\"other_file.dart\"\n\nflutterEngine\n\nrunWithEntrypoint\n\n@\"myOtherEntrypoint\"\n\nlibraryURI\n\n@\"other_file.dart\"\n\n];\n\nRoute", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-45", "text": "@\"other_file.dart\"\n\n];\n\nRoute\n\nStarting in Flutter version 1.22, an initial route can be set for your Flutter\nWidgetsApp when constructing the FlutterEngine or the\nFlutterViewController.\n\nSwift\n\nObjective-C\n\nlet\n\nflutterEngine\n\nFlutterEngine\n\n()\n\n// FlutterDefaultDartEntrypoint is the same as nil, which will run main().\n\nengine\n\nrun\n\nwithEntrypoint\n\nFlutterDefaultDartEntrypoint\n\ninitialRoute\n\n\"/onboarding\"\n\nFlutterEngine\n\nflutterEngine\n\n[[\n\nFlutterEngine\n\nalloc\n\ninit\n\n];\n\n// FlutterDefaultDartEntrypoint is the same as nil, which will run main().", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-46", "text": "// FlutterDefaultDartEntrypoint is the same as nil, which will run main().\n\nflutterEngine\n\nrunWithEntrypoint\n\nFlutterDefaultDartEntrypoint\n\ninitialRoute:\n\n@\"/onboarding\"\n\n];\n\nThis code sets your dart:ui\u2019s window.defaultRouteName\nto \"/onboarding\" instead of \"/\".\n\nAlternatively, to construct a FlutterViewController directly without pre-warming\na FlutterEngine:\n\nSwift\n\nObjective-C\n\nlet\n\nflutterViewController\n\nFlutterViewController\n\nproject\n\nnil\n\ninitialRoute\n\n\"/onboarding\"\n\nnibName\n\nnil\n\nbundle\n\nnil\n\nFlutterViewController\n\nflutterViewController\n\n[[\n\nFlutterViewController", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "dfaec9f3ec15-47", "text": "flutterViewController\n\n[[\n\nFlutterViewController\n\nalloc\n\ninitWithProject\n\nnil\n\ninitialRoute:\n\n@\"/onboarding\"\n\nnibName:\n\nnil\n\nbundle:\n\nnil\n\n];\n\npushRoute()\n or\n\npopRoute() on the\n\nTo pop the iOS route from the Flutter side,\n call SystemNavigator.pop().\n\nSee Navigation and routing for more about Flutter\u2019s routes.\n\nOther\n\nThe previous example only illustrates a few ways to customize\nhow a Flutter instance is initiated. Using platform channels,\nyou\u2019re free to push data or prepare your Flutter environment\nin any way you\u2019d like, before presenting the Flutter UI using a\nFlutterViewController.", "source": "https://docs.flutter.dev/development/add-to-app/ios/add-flutter-screen/index.html"} {"id": "2b6af13db0bd-0", "text": "Adding Flutter to iOS\n\nAdd Flutter to existing app\n\nAdding Flutter to iOS\n\nTopics:\n\nProject setup\n\nAdd a single Flutter screen", "source": "https://docs.flutter.dev/development/add-to-app/ios/index.html"} {"id": "6d072c206700-0", "text": "Integrate a Flutter module into your iOS project\n\nAdd Flutter to existing app\n\nAdding Flutter to iOS\n\nIntegrate Flutter\n\nSystem requirements\n\nCreate a Flutter module\n\nModule organization\n\nEmbed the Flutter module in your existing application\n\nOption A - Embed with CocoaPods and the Flutter SDK\nOption B - Embed frameworks in Xcode\n\nLink on the frameworks\nEmbed the frameworks\n\n\nOption C - Embed application and plugin frameworks in Xcode and Flutter framework with CocoaPods\n\nLocal Network Privacy Permissions\n\nApple Silicon (arm64 Macs)\n\nDevelopment\n\nFlutter UI components can be incrementally added into your existing iOS\napplication as embedded frameworks. There are a few ways to embed Flutter \nin your existing application.", "source": "https://docs.flutter.dev/development/add-to-app/ios/project-setup/index.html"} {"id": "6d072c206700-1", "text": "Use the CocoaPods dependency manager and installed Flutter SDK.\n In this case, the flutter_module is compiled from\n the source each time the app is built. (Recommended.)\n\nCreate frameworks for the Flutter engine, your compiled Dart code,\n and all Flutter plugins. Here, you manually embed the frameworks,\n and update your existing application\u2019s build settings in Xcode.\n This can be useful for teams that don\u2019t want to require every developer\n to have the Flutter SDK and Cocoapods installed locally.\n\nCreate frameworks for your compiled Dart code,\n and all Flutter plugins. Use CocoaPods for the Flutter engine. \n With this option, embed the frameworks for your application\n and the plugins in Xcode, but distribute the\n Flutter engine as a CocoaPods podspec.\n This is similar to the second option, but it provides\n an alternative to distributing the large Flutter.xcframework.", "source": "https://docs.flutter.dev/development/add-to-app/ios/project-setup/index.html"} {"id": "6d072c206700-2", "text": "For examples using an app built with UIKit, \nsee the iOS directories in the add_to_app code samples. \nFor an example using SwiftUI, see the iOS directory in News Feed App.\n\nSystem requirements\n\nYour development environment must meet the\nmacOS system requirements for Flutter\nwith Xcode installed.\nFlutter supports iOS 11 and later.\nAdditionally, you will need CocoaPods\nversion 1.10 or later.\n\nCreate a Flutter module\n\nTo embed Flutter into your existing application, \nusing any of the methods mentioned above, \nfirst create a Flutter module.\n\nFrom the command line, run:\n\ncd some/path/\nflutter create --template module my_flutter\n\nA Flutter module project is created at some/path/my_flutter/.\nIf you are using the first method mentioned above, \nthe module should be created in the same parent directory \nas your existing iOS app.", "source": "https://docs.flutter.dev/development/add-to-app/ios/project-setup/index.html"} {"id": "6d072c206700-3", "text": "From the Flutter module directory, you can run the same flutter\ncommands you would in any other Flutter project,\nlike flutter run --debug or flutter build ios.\nYou can also run the module in\nAndroid Studio/IntelliJ or VS Code with\nthe Flutter and Dart plugins. This project contains a\nsingle-view example version of your module before it\u2019s\nembedded in your existing application,\nwhich is useful for incrementally\ntesting the Flutter-only parts of your code.\n\nModule organization\n\nThe my_flutter module directory structure is similar to a\nnormal Flutter application:\n\nAdd your Dart code to the lib/ directory.\n\nAdd Flutter dependencies to my_flutter/pubspec.yaml,\nincluding Flutter packages and plugins.\n\nThe .ios/ hidden subfolder contains an Xcode workspace where\nyou can run a standalone version of your module.\nIt is a wrapper project to bootstrap your Flutter code,\nand contains helper scripts to facilitate building frameworks or\nembedding the module into your existing application with CocoaPods.", "source": "https://docs.flutter.dev/development/add-to-app/ios/project-setup/index.html"} {"id": "6d072c206700-4", "text": "Note:\n Add custom iOS code to your own existing application\u2019s\n project or to a plugin, not to the module\u2019s .ios/\n directory. Changes made in your module\u2019s .ios/\n directory do not appear in your existing iOS project\n using the module, and may be overwritten by Flutter.\n\nDo not source control the .ios/ directory since it\u2019s autogenerated.\n Before building the module on a new machine, run flutter pub get\n in the my_flutter directory first to regenerate the .ios/\n directory before building iOS project using the Flutter module.\n\nEmbed the Flutter module in your existing application\n\nAfter you have developed your Flutter module,\nyou can embed it using the methods described at the top of the page.\n\nNote:\n You can run in Debug mode on a simulator or a real device,\n and Release on a real device. Learn more about\n Flutter\u2019s build modes", "source": "https://docs.flutter.dev/development/add-to-app/ios/project-setup/index.html"} {"id": "6d072c206700-5", "text": "To leverage Flutter debugging functionality \n such as hot reload, see Debugging your add-to-app module.\n\nUsing Flutter increases your app size.\n\nOption A - Embed with CocoaPods and the Flutter SDK\n\nThis method requires every developer working on your\nproject to have a locally installed version of the Flutter SDK.\nThe Flutter module is compiled from source each time the app is built.\nSimply build your application in Xcode to automatically\nrun the script to embed your Dart and plugin code.\nThis allows rapid iteration with the most up-to-date\nversion of your Flutter module without running additional\ncommands outside of Xcode.\n\nThe following example assumes that your existing\napplication and the Flutter module are in sibling\ndirectories. If you have a different directory structure,\nyou may need to adjust the relative paths.", "source": "https://docs.flutter.dev/development/add-to-app/ios/project-setup/index.html"} {"id": "6d072c206700-6", "text": "If your existing application (MyApp) doesn\u2019t\nalready have a Podfile, run pod init in the\nMyApp directory to create one. \nYou can find more details on using \nCocoaPods in the CocoaPods getting started guide.\n\nAdd the following lines to your Podfile:\n\n \n \nflutter_application_path = '../my_flutter'\nload File.join(flutter_application_path, '.ios', 'Flutter', 'podhelper.rb')\n\nFor each Podfile target that needs to\nembed Flutter, call install_all_flutter_pods(flutter_application_path).\n\n \n \ntarget 'MyApp' do\n install_all_flutter_pods(flutter_application_path)\nend\n\nIn the Podfile\u2019s post_install block, call flutter_post_install(installer).", "source": "https://docs.flutter.dev/development/add-to-app/ios/project-setup/index.html"} {"id": "6d072c206700-7", "text": "post_install do |installer|\n flutter_post_install(installer) if defined?(flutter_post_install)\nend\n \n\n \n Note:\n The flutter_post_install method (added in Flutter 3.1.0),\n adds build settings to support native Apple Silicon arm64 iOS simulators.\n Include the if defined?(flutter_post_install) check to ensure your Podfile\n is valid if you are running on older versions of Flutter that don\u2019t have this method.\n\nRun pod install.\n\n \n Note:\n When you change the Flutter plugin dependencies in\n my_flutter/pubspec.yaml, run flutter pub get\n in your Flutter module directory to refresh the list\n of plugins read by the podhelper.rb script.\n Then, run pod install again from\n your application at some/path/MyApp.\n\nThe podhelper.rb script embeds your plugins,\nFlutter.framework, and App.framework into your project.", "source": "https://docs.flutter.dev/development/add-to-app/ios/project-setup/index.html"} {"id": "6d072c206700-8", "text": "Your app\u2019s Debug and Release build configurations embed\nthe Debug or Release build modes of Flutter, respectively.\nAdd a Profile build configuration\nto your app to test in profile mode.\n\nTip:\n Flutter.framework is the bundle for the Flutter engine,\n and App.framework is the compiled Dart code for this project.\n\nOpen MyApp.xcworkspace in Xcode.\nYou can now build the project using \u2318B.\n\nOption B - Embed frameworks in Xcode\n\nAlternatively, you can generate the necessary frameworks\nand embed them in your application by manually editing\nyour existing Xcode project. You may do this if members of your\nteam can\u2019t locally install Flutter SDK and CocoaPods,\nor if you don\u2019t want to use CocoaPods\nas a dependency manager in your existing applications.\nYou must run flutter build ios-framework\nevery time you make code changes in your Flutter module.\n\nThe following example assumes that you want to generate the\nframeworks to some/path/MyApp/Flutter/.", "source": "https://docs.flutter.dev/development/add-to-app/ios/project-setup/index.html"} {"id": "6d072c206700-9", "text": "flutter build ios-framework --output=some/path/MyApp/Flutter/\n\nLink and embed the generated frameworks into your existing\napplication in Xcode. There are multiple ways to do\nthis\u2014use the method that is best for your project.\n\nLink on the frameworks\n\nFor example, you can drag the frameworks from\nsome/path/MyApp/Flutter/Release/ in Finder\ninto your target\u2019s Build\nSettings > Build Phases > Link Binary With Libraries.\n\nIn the target\u2019s build settings, add $(PROJECT_DIR)/Flutter/Release/\nto the Framework Search Paths (FRAMEWORK_SEARCH_PATHS).", "source": "https://docs.flutter.dev/development/add-to-app/ios/project-setup/index.html"} {"id": "6d072c206700-10", "text": "Tip:\n To use the simulator, you will need to \n embed the Debug version of the Flutter frameworks in your\n Debug build configuration. To do this \n you can use $(PROJECT_DIR)/Flutter/$(CONFIGURATION)\n in the Framework Search Paths (FRAMEWORK_SEARCH_PATHS)\n build setting. This embeds the Release frameworks in the Release configuration, \n and the Debug frameworks in the Debug Configuration.\n\nYou must also open MyApp.xcodeproj/project.pbxproj (from Finder) \n and replace path = Flutter/Release/example.xcframework;\n with path = \"Flutter/$(CONFIGURATION)/example.xcframework\";\n for all added frameworks. (Note the added \".)\n\nEmbed the frameworks\n\nThe generated dynamic frameworks must be embedded\ninto your app to be loaded at runtime.", "source": "https://docs.flutter.dev/development/add-to-app/ios/project-setup/index.html"} {"id": "6d072c206700-11", "text": "The generated dynamic frameworks must be embedded\ninto your app to be loaded at runtime.\n\nImportant:\n Plugins might produce static or dynamic frameworks.\n Static frameworks should be linked on, but never embedded.\n If you embed a static framework into your application,\n your application is not publishable to the App Store\n and fails with a\n Found an unexpected Mach-O header code archive error.\n\nAfter linking the frameworks, you should see them in the \nFrameworks, Libraries, and Embedded Content\nsection of your target\u2019s General settings. \nTo embed the dynamic frameworks\nselect Embed & Sign.\n\nThey will then appear under Embed Frameworks within \nBuild Phases as follows:\n\nYou should now be able to build the project in Xcode using \u2318B.\n\nOption C - Embed application and plugin frameworks in Xcode and Flutter framework with CocoaPods", "source": "https://docs.flutter.dev/development/add-to-app/ios/project-setup/index.html"} {"id": "6d072c206700-12", "text": "Alternatively, instead of distributing the large Flutter.xcframework\nto other developers, machines, or continuous integration systems,\nyou can instead generate Flutter as CocoaPods podspec by adding\nthe flag --cocoapods. This produces a Flutter.podspec\ninstead of an engine Flutter.xcframework.\nThe App.xcframework and plugin frameworks are generated\nas described in Option B.\n\nTo generate the Flutter.podspec and frameworks, run the following \nfrom the command line in the root of your Flutter module:\n\nflutter build ios-framework --cocoapods --output=some/path/MyApp/Flutter/\n\nHost apps using CocoaPods can add Flutter to their Podfile:\n\npod\n\n'Flutter'\n\n:podspec\n\n=>\n\n'some/path/MyApp/Flutter/[build mode]/Flutter.podspec'", "source": "https://docs.flutter.dev/development/add-to-app/ios/project-setup/index.html"} {"id": "6d072c206700-13", "text": "Link and embed the generated App.xcframework,\nFlutterPluginRegistrant.xcframework,\nand any plugin frameworks into your existing application\nas described in Option B.\n\nLocal Network Privacy Permissions\n\nOn iOS 14 and higher, enable the Dart multicast DNS\nservice in the Debug version of your app\nto add debugging functionalities such as hot-reload and\nDevTools via flutter attach.\n\nWarning:\n This service must not be enabled in the Release\n version of your app, or you may experience App Store rejections.\n\nOne way to do this is to maintain a separate copy of your app\u2019s Info.plist per\nbuild configuration. The following instructions assume\nthe default Debug and Release.\nAdjust the names as needed depending on your app\u2019s build configurations.\n\nRename your app\u2019s Info.plist to Info-Debug.plist.\nMake a copy of it called Info-Release.plist and add it to your Xcode project.", "source": "https://docs.flutter.dev/development/add-to-app/ios/project-setup/index.html"} {"id": "6d072c206700-14", "text": "In Info-Debug.plist only add the key NSBonjourServices\nand set the value to an array with the string _dartobservatory._tcp.\nNote Xcode will display this as \u201cBonjour services\u201d.\n\n Optionally, add the key NSLocalNetworkUsageDescription set to your\ndesired customized permission dialog text.\n\nIn your target\u2019s build settings, change the Info.plist File\n(INFOPLIST_FILE) setting path from path/to/Info.plist to path/to/Info-$(CONFIGURATION).plist.\n\n \n \n \n \n\n\n This will resolve to the path Info-Debug.plist in Debug and\nInfo-Release.plist in Release.\n\n \n \n \n \n\n\n Alternatively, you can explicitly set the Debug path to Info-Debug.plist\nand the Release path to Info-Release.plist.", "source": "https://docs.flutter.dev/development/add-to-app/ios/project-setup/index.html"} {"id": "6d072c206700-15", "text": "If the Info-Release.plist copy is in your target\u2019s Build Settings > Build Phases > Copy Bundle\nResources build phase, remove it.\n\n \n \n \n \n\n\n The first Flutter screen loaded by your Debug app will now prompt\nfor local network permission. The permission can also be allowed by enabling\nSettings > Privacy > Local Network > Your App.\n\nApple Silicon (arm64 Macs)\n\nOn an Apple Silicon (M1) Mac, the host app builds for an arm64 simulator.\nWhile Flutter supports arm64 simulators, some plugins might not. If you use\none of these plugins, you might see a compilation error like Undefined symbols\nfor architecture arm64 and you must exclude arm64 from the simulator\narchitectures in your host app.\n\nWhen done correctly, Xcode will add \"EXCLUDED_ARCHS[sdk=iphonesimulator*]\" = arm64; to your project.pbxproj file.", "source": "https://docs.flutter.dev/development/add-to-app/ios/project-setup/index.html"} {"id": "6d072c206700-16", "text": "Repeat for any iOS unit test targets.\n\nDevelopment\n\nYou can now add a Flutter screen to your existing application.", "source": "https://docs.flutter.dev/development/add-to-app/ios/project-setup/index.html"} {"id": "49d5b08a8f8a-0", "text": "Multiple Flutter screens or views\n\nAdd Flutter to existing app\n\nAdding multiple Flutters\n\nScenarios\n\nComponents\n\nCommunication\n\nSamples\n\nScenarios\n\nIf you\u2019re integrating Flutter into an existing app, or gradually migrating an\nexisting app to use Flutter, you may find yourself wanting to add multiple\nFlutter instances to the same project. In particular, this can be useful in the\nfollowing scenarios:\n\nAn application where the integrated Flutter screen is not a leaf node of\nthe navigation graph, and the navigation stack might be a hybrid mixture of\nnative -> Flutter -> native -> Flutter.\n\nA screen where multiple partial screen Flutter views might be integrated\nand visible at once.", "source": "https://docs.flutter.dev/development/add-to-app/multiple-flutters/index.html"} {"id": "49d5b08a8f8a-1", "text": "A screen where multiple partial screen Flutter views might be integrated\nand visible at once.\n\nThe advantage of using multiple Flutter instances is that each\ninstance is independent and maintains its own internal navigation\nstack, UI, and application states. This simplifies the overall application code\u2019s\nresponsibility for state keeping and improves modularity. More details on the\nscenarios motivating the usage of multiple Flutters can be found at\ndocs.flutter.dev/go/multiple-flutters.\n\nFlutter 2 and above are optimized for this scenario, with a low incremental\nmemory cost (~180kB) for adding additional Flutter instances. This fixed cost\nreduction allows the multiple Flutter instance pattern to be used more liberally\nin your add-to-app integration.\n\nComponents\n\nThe primary API for adding multiple Flutter instances on both Android and iOS\nis based on a new FlutterEngineGroup class (Android API, iOS API)\nto construct FlutterEngines, rather than the FlutterEngine\nconstructors used previously.", "source": "https://docs.flutter.dev/development/add-to-app/multiple-flutters/index.html"} {"id": "49d5b08a8f8a-2", "text": "Whereas the FlutterEngine API was direct and easier to consume, the\nFlutterEngine spawned from the same FlutterEngineGroup have the performance\nadvantage of sharing many of the common, reusable resources such as the GPU\ncontext, font metrics, and isolate group snapshot, leading to a faster initial\nrendering latency and lower memory footprint.\n\nFlutterEngines spawned from FlutterEngineGroup can be used to\n connect to UI classes like FlutterActivity or FlutterViewController\n in the same way as normally constructed cached FlutterEngines.\n\nThe first FlutterEngine spawned from the FlutterEngineGroup doesn\u2019t need\nto continue surviving in order for subsequent FlutterEngines to share\nresources as long as there\u2019s at least 1 living FlutterEngine at all\ntimes.\n\nCreating the very first FlutterEngine from a FlutterEngineGroup has\nthe same performance characteristics as constructing a\nFlutterEngine using the constructors did previously.", "source": "https://docs.flutter.dev/development/add-to-app/multiple-flutters/index.html"} {"id": "49d5b08a8f8a-3", "text": "When all FlutterEngines from a FlutterEngineGroup are destroyed, the next\nFlutterEngine created has the same performance characteristics as the very\nfirst engine.\n\nThe FlutterEngineGroup itself doesn\u2019t need to live beyond all of the spawned\nengines. Destroying the FlutterEngineGroup doesn\u2019t affect existing spawned\nFlutterEngines but does remove the ability to spawn additional\nFlutterEngines that share resources with existing spawned engines.\n\nCommunication\n\nCommunication between Flutter instances is handled using platform channels\n(or Pigeon) through the host platform. To see our roadmap on communication,\nor other planned work on enhancing multiple Flutter instances, see \nIssue 72009.\n\nSamples\n\nYou can find a sample demonstrating how to use FlutterEngineGroup\non both Android and iOS on GitHub.", "source": "https://docs.flutter.dev/development/add-to-app/multiple-flutters/index.html"} {"id": "2bea1c7e0ba4-0", "text": "Load sequence, performance, and memory\n\nAdd Flutter to existing app\n\nLoad sequence, performance, and memory\n\nLoading Flutter\n\nFinding the Flutter resources\nLoading the Flutter library\nStarting the Dart VM\nCreating and running a Dart Isolate\nAttaching a UI to the Flutter engine\n\nMemory and latency\n\nThis page describes the breakdown of the steps involved\nto show a Flutter UI. Knowing this, you can make better,\nmore informed decisions about when to pre-warm the Flutter engine,\nwhich operations are possible at which stage,\nand the latency and memory costs of those operations.\n\nLoading Flutter\n\nAndroid and iOS apps (the two supported platforms for\nintegrating into existing apps), full Flutter apps,\nand add-to-app patterns have a similar sequence of\nconceptual loading steps when displaying the Flutter UI.\n\nFinding the Flutter resources", "source": "https://docs.flutter.dev/development/add-to-app/performance/index.html"} {"id": "2bea1c7e0ba4-1", "text": "Finding the Flutter resources\n\nFlutter\u2019s engine runtime and your application\u2019s compiled\nDart code are both bundled as shared libraries on Android\nand iOS. The first step of loading Flutter is to find those\nresources in your .apk/.ipa/.app (along with other Flutter\nassets such as images, fonts, and JIT code, if applicable).\n\nThis happens when you construct a FlutterEngine for the\nfirst time on both Android\nand iOS APIs.\n\nLoading the Flutter library\n\nAfter it\u2019s found, the engine\u2019s shared libraries are memory loaded\nonce per process.\n\nOn Android, this also happens when the\nFlutterEngine is constructed because the\nJNI connectors need to reference the Flutter C++ library.\nOn iOS, this happens when the\nFlutterEngine is first run,\nsuch as by running runWithEntrypoint:.\n\nStarting the Dart VM", "source": "https://docs.flutter.dev/development/add-to-app/performance/index.html"} {"id": "2bea1c7e0ba4-2", "text": "Starting the Dart VM\n\nThe Dart runtime is responsible for managing Dart memory and\nconcurrency for your Dart code. In JIT mode,\nit\u2019s additionally responsible for compiling\nthe Dart source code into machine code during runtime.\n\nA single Dart runtime exists per application session on\nAndroid and iOS.\n\nA one-time Dart VM start is done when constructing the\nFlutterEngine for the first time on\nAndroid and when running a Dart entrypoint\nfor the first time on iOS.\n\nAt this point, your Dart code\u2019s snapshot\nis also loaded into memory from your application\u2019s files.\n\nThis is a generic process that also occurs if you used the\nDart SDK directly, without the Flutter engine.\n\nThe Dart VM never shuts down after it\u2019s started.\n\nCreating and running a Dart Isolate\n\nAfter the Dart runtime is initialized,\nthe Flutter engine\u2019s usage of the Dart\nruntime is the next step.", "source": "https://docs.flutter.dev/development/add-to-app/performance/index.html"} {"id": "2bea1c7e0ba4-3", "text": "This is done by starting a Dart Isolate in the Dart runtime.\nThe isolate is Dart\u2019s container for memory and threads.\nA number of auxiliary threads on the host platform are\nalso created at this point to support the isolate, such\nas a thread for offloading GPU handling and another for image decoding.\n\nOne isolate exists per FlutterEngine instance, and multiple isolates\ncan be hosted by the same Dart VM.\n\nOn Android, this happens when you call\nDartExecutor.executeDartEntrypoint()\non a FlutterEngine instance.\n\nOn iOS, this happens when you call runWithEntrypoint:\non a FlutterEngine.\n\nrunApp() in your\n\nAttaching a UI to the Flutter engine\n\nA standard, full Flutter app moves to reach this state as\nsoon as the app is launched.\n\nstartActivity()\nwith an\n\nIntent built using\n\nFlutterActivity.withCachedEngine()\non", "source": "https://docs.flutter.dev/development/add-to-app/performance/index.html"} {"id": "2bea1c7e0ba4-4", "text": "Intent built using\n\nFlutterActivity.withCachedEngine()\non\n\nFlutterViewController\ninitialized by using\n\ninitWithEngine: nibName: bundle:\non\n\nFlutterActivity.createDefaultIntent() on\n\nFlutterViewController initWithProject: nibName: bundle:\non\n\nSurface on\n\nCAEAGLLayer or\n\nCAMetalLayer\non\n\nAt this point, the Layer tree generated by your Flutter\nprogram, per frame, is converted into\nOpenGL (or Vulkan or Metal) GPU instructions.\n\nMemory and latency\n\nShowing a Flutter UI has a non-trivial latency cost.\nThis cost can be lessened by starting the Flutter engine\nahead of time.", "source": "https://docs.flutter.dev/development/add-to-app/performance/index.html"} {"id": "2bea1c7e0ba4-5", "text": "The most relevant choice for add-to-app scenarios is for you\nto decide when to pre-load a FlutterEngine\n(that is, to load the Flutter library, start the Dart VM,\nand run entrypoint in an isolate), and what the memory and latency\ncost is of that pre-warm. You also need to know how the pre-warm\naffects the memory and latency cost of rendering a first Flutter\nframe when the UI component is subsequently attached\nto that FlutterEngine.\n\nAs of Flutter v1.10.3, and testing on a low-end 2015 class device\nin release-AOT mode, pre-warming the FlutterEngine costs:\n\n42 MB and 1530 ms to prewarm on Android.\n330 ms of it is a blocking call on the main thread.\n\n22 MB and 860 ms to prewarm on iOS.\n260 ms of it is a blocking call on the main thread.", "source": "https://docs.flutter.dev/development/add-to-app/performance/index.html"} {"id": "2bea1c7e0ba4-6", "text": "A Flutter UI can be attached during the pre-warm.\nThe remaining time is joined to the time-to-first-frame latency.\n\nMemory-wise, a cost sample (variable,\ndepending on the use case) could be:\n\n~4 MB OS\u2019s memory usage for creating pthreads.\n\n~10 MB GPU driver memory.\n\n~1 MB for Dart runtime-managed memory.\n\n~5 MB for Dart-loaded font maps.\n\nLatency-wise,\na cost sample (variable, depending on the use case) could be:\n\n~20 ms to collect the Flutter assets from the application package.\n\n~15 ms to dlopen the Flutter engine library.\n\n~200 ms to create the Dart VM and load the AOT snapshot.\n\n~200 ms to load Flutter-dependent fonts and assets.", "source": "https://docs.flutter.dev/development/add-to-app/performance/index.html"} {"id": "2bea1c7e0ba4-7", "text": "~200 ms to load Flutter-dependent fonts and assets.\n\n~400 ms to run the entrypoint, create the first widget tree,\nand compile the needed GPU shader programs.\n\nThe FlutterEngine should be pre-warmed late enough to delay the\nmemory consumption needed but early enough to avoid combining the\nFlutter engine start-up time with the first frame latency of\nshowing Flutter.\n\nThe exact timing depends on the app\u2019s structure and heuristics.\nAn example would be to load the Flutter engine in the screen\nbefore the screen is drawn by Flutter.\n\nGiven an engine pre-warm, the first frame cost on UI attach is:\n\n320 ms on Android and an additional 12 MB\n(highly dependent on the screen\u2019s physical pixel size).\n\n200 ms on iOS and an additional 16 MB\n(highly dependent on the screen\u2019s physical pixel size).", "source": "https://docs.flutter.dev/development/add-to-app/performance/index.html"} {"id": "2bea1c7e0ba4-8", "text": "Memory-wise, the cost is primarily the graphical memory buffer used for\nrendering and is dependent on the screen size.\n\nLatency-wise, the cost is primarily waiting for the OS callback to provide\nFlutter with a rendering surface and compiling the remaining shader programs\nthat are not pre-emptively predictable. This is a one-time cost.\n\nWhen the Flutter UI component is released, the UI-related memory is freed.\nThis doesn\u2019t affect the Flutter state, which lives in the FlutterEngine\n(unless the FlutterEngine is also released).\n\nFor performance details on creating more than one FlutterEngine,\nsee multiple Flutters.", "source": "https://docs.flutter.dev/development/add-to-app/performance/index.html"} {"id": "ea4e098982d7-0", "text": "Firebase\n\nData & backend\n\nFirebase\n\nFirebase is a Backend-as-a-Service (BaaS) app development platform\nthat provides hosted backend services such as a realtime database,\ncloud storage, authentication, crash reporting, machine learning,\nremote configuration, and hosting for your static files.\n\nFirebase supports Flutter. For more information, see:\n\nThe Firebase plugins page\n\nGetting started with Firebase and Flutter\n\nGet to know Firebase for Flutter video workshop\nbased on the codelab\n\nGet to know Firebase for Flutter codelab\n\nUse Firebase to host your Flutter app on the web\n\nAlso, the Flutter community has created docs and\nvideos that you might find useful. Here are a few:\n\nBuilding chat app with Flutter and Firebase\n\nUsing Firestore as a backend to your Flutter app (video)\n\nLive Coding Firebase Authentication with Flutter (video)", "source": "https://docs.flutter.dev/development/data-and-backend/firebase/index.html"} {"id": "ea4e098982d7-1", "text": "Live Coding Firebase Authentication with Flutter (video)\n\nFlutter & Firebase Auth 01 (video)\n\nFlutter: Firebase Tutorial Part 1 - Auth and Sign in (video)", "source": "https://docs.flutter.dev/development/data-and-backend/firebase/index.html"} {"id": "f4af05977518-0", "text": "Google APIs\n\nData & backend\n\nGoogle APIs\n\nOverview\n\n1. Pick the desired API\n\n2. Enable the API\n\n3. Authenticate the user with the required scopes\n\n4. Obtain an authenticated HTTP client\n\n5. Create and use the desired API class\n\nMore information\n\nThe Google APIs package exposes dozens of Google\nservices that you can use from Dart projects.\n\nThis page describes how to use APIs that interact with end-user data by using\nGoogle authentication.\n\nExamples of user-data APIs include\nCalendar,\nGmail, and\nYouTube.\n\nNote: The only APIs you should use directly from your Flutter\n project are those that access user data via Google authentication.", "source": "https://docs.flutter.dev/development/data-and-backend/google-apis/index.html"} {"id": "f4af05977518-1", "text": "APIs that require\n service accounts should\n not be used directly from a Flutter application. Doing so requires shipping\n service credentials as part of your application, which is not secure. To use\n these APIs, we recommend creating an intermediate service.\n\nOverview\n\nTo use Google APIs, follow these steps.\n\nPick the desired API\n\nEnable the API\n\nAuthenticate user with the required scopes\n\nObtain an authenticated HTTP client\n\nCreate and use the desired API class\n\n1. Pick the desired API\n\nThe documentation for package:googleapis lists\neach API as a separate Dart library \u2013\u00a0in a name.version format. Let\u2019s look at\nyoutube.v3\nas an example.\n\nEach library may provide many types, but there is one root class that ends in\nApi. For YouTube, it\u2019s\nYouTubeApi.", "source": "https://docs.flutter.dev/development/data-and-backend/google-apis/index.html"} {"id": "f4af05977518-2", "text": "Not only is the Api class the one you need to instantiate \u2013\u00a0see step 3 \u2013\u00a0but\nit also exposes the scopes that represent the permissions needed to use the API.\nLook under the\nConstants section\nof the YouTubeApi class and you\u2019ll see the available scopes. To request access\nto simply read (but not write) an end-users YouTube data, use the\nyoutubeReadonlyScope\nwhen authenticating the user.\n\n2. Enable the API\n\nTo use Google APIs you must have a Google account and a Google project. You also\nneed to enable your desired API.\n\nIn this example, you\u2019d enable\nYouTube Data API v3.\n\nFor details, see the\ngetting started instructions.\n\n3. Authenticate the user with the required scopes\n\nUse the google_sign_in package to\nauthenticate users with their Google identity. You will have to configure signin\nfor each platform you want to support.", "source": "https://docs.flutter.dev/development/data-and-backend/google-apis/index.html"} {"id": "f4af05977518-3", "text": "When you instantiate the\nGoogleSignIn\nclass, you provide the desired scopes as discussed in the previous section.\n\nFollow the instructions provided by\npackage:google_sign_in to allow a user to\nauthenticate.\n\nOnce authenticated, you must obtain an authenticated HTTP client.\n\n4. Obtain an authenticated HTTP client\n\nThe\nextension_google_sign_in_as_googleapis_auth\npackage provides an\nextension method on\nGoogleSignIn:\nauthenticatedClient.\n\nYou can listen to\nonCurrentUserChanged.\nWhen event value is not null, you can create an authenticated client.\n\nThis Client instance\nincludes the nessesary credentials when invoking Google API classes.\n\n5. Create and use the desired API class\n\nUse the API to create the desired API type and call methods, for instance:\n\nMore information", "source": "https://docs.flutter.dev/development/data-and-backend/google-apis/index.html"} {"id": "f4af05977518-4", "text": "More information\n\nThe\nextension_google_sign_in_as_googleapis_auth example\nis a working implementation of the concepts described on this page.", "source": "https://docs.flutter.dev/development/data-and-backend/google-apis/index.html"} {"id": "948500feffc0-0", "text": "Data & backend\n\nData & backend\n\nTopics:\n\nState management\n\nNetworking & http\n\nJSON and serialization\n\nFirebase", "source": "https://docs.flutter.dev/development/data-and-backend/index.html"} {"id": "de6d0c61b45b-0", "text": "JSON and serialization\n\nData & backend\n\nJSON and serialization\n\nWhich JSON serialization method is right for me?\n\nUse manual serialization for smaller projects\nUse code generation for medium to large projects\n\nIs there a GSON/Jackson/Moshi equivalent in Flutter?\n\nSerializing JSON manually using dart:convert\n\nSerializing JSON inline\nSerializing JSON inside model classes\n\nSerializing JSON using code generation libraries\n\nSetting up json_serializable in a project\nCreating model classes the json_serializable way\nRunning the code generation utility\n\nOne-time code generation\nGenerating code continuously\n\n\nConsuming json_serializable models\n\nGenerating code for nested classes\n\nFurther references", "source": "https://docs.flutter.dev/development/data-and-backend/json/index.html"} {"id": "de6d0c61b45b-1", "text": "Generating code for nested classes\n\nFurther references\n\nIt is hard to think of a mobile app that doesn\u2019t need to communicate with a\nweb server or easily store structured data at some point. When making\nnetwork-connected apps, the chances are that it needs to consume some good old\nJSON, sooner or later.\n\nThis guide looks into ways of using JSON with Flutter.\nIt covers which JSON solution to use in different scenarios, and why.\n\nTo avoid confusion, this doc uses \u201cserialization\u201d when referring to the\n overall process, and \u201cencoding\u201d and \u201cdecoding\u201d when specifically\n referring to those processes.\n\nWhich JSON serialization method is right for me?\n\nThis article covers two general strategies for working with JSON:\n\nManual serialization\n\nAutomated serialization using code generation", "source": "https://docs.flutter.dev/development/data-and-backend/json/index.html"} {"id": "de6d0c61b45b-2", "text": "Manual serialization\n\nAutomated serialization using code generation\n\nDifferent projects come with different complexities and use cases.\nFor smaller proof-of-concept projects or quick prototypes,\nusing code generators might be overkill.\nFor apps with several JSON models with more complexity,\nencoding by hand can quickly become tedious, repetitive,\nand lend itself to many small errors.\n\nUse manual serialization for smaller projects\n\nManual JSON decoding refers to using the built-in JSON decoder in\ndart:convert. It involves passing the raw JSON string to the jsonDecode()\nfunction, and then looking up the values you need in the resulting\nMap.\nIt has no external dependencies or particular setup process,\nand it\u2019s good for a quick proof of concept.", "source": "https://docs.flutter.dev/development/data-and-backend/json/index.html"} {"id": "de6d0c61b45b-3", "text": "Manual decoding does not perform well when your project becomes bigger.\nWriting decoding logic by hand can become hard to manage and error-prone.\nIf you have a typo when accessing a nonexistent JSON\nfield, your code throws an error during runtime.\n\nIf you do not have many JSON models in your project and are\nlooking to test a concept quickly,\nmanual serialization might be the way you want to start.\nFor an example of manual encoding, see\nSerializing JSON manually using dart:convert.\n\nUse code generation for medium to large projects\n\nJSON serialization with code generation means having an external library\ngenerate the encoding boilerplate for you. After some initial setup,\nyou run a file watcher that generates the code from your model classes.\nFor example, json_serializable and built_value are these\nkinds of libraries.", "source": "https://docs.flutter.dev/development/data-and-backend/json/index.html"} {"id": "de6d0c61b45b-4", "text": "This approach scales well for a larger project. No hand-written\nboilerplate is needed, and typos when accessing JSON fields are caught at\ncompile-time. The downside with code generation is that it requires some\ninitial setup. Also, the generated source files might produce visual clutter\nin your project navigator.\n\nYou might want to use generated code for JSON serialization when you have a\nmedium or a larger project. To see an example of code generation based JSON\nencoding, see Serializing JSON using code generation libraries.\n\nIs there a GSON/Jackson/Moshi equivalent in Flutter?\n\nThe simple answer is no.\n\nSuch a library would require using runtime reflection, which is disabled in\nFlutter. Runtime reflection interferes with tree shaking, which Dart has\nsupported for quite a long time. With tree shaking, you can \u201cshake off\u201d unused\ncode from your release builds. This optimizes the app\u2019s size significantly.", "source": "https://docs.flutter.dev/development/data-and-backend/json/index.html"} {"id": "de6d0c61b45b-5", "text": "Since reflection makes all code implicitly used by default, it makes tree\nshaking difficult. The tools cannot know what parts are unused at runtime, so\nthe redundant code is hard to strip away. App sizes cannot be easily optimized\nwhen using reflection.\n\nAlthough you cannot use runtime reflection with Flutter,\nsome libraries give you similarly easy-to-use APIs but are\nbased on code generation instead. This\napproach is covered in more detail in the\ncode generation libraries section.\n\nSerializing JSON manually using dart:convert\n\nBasic JSON serialization in Flutter is very simple. Flutter has a built-in\ndart:convert library that includes a straightforward JSON encoder and\ndecoder.\n\nThe following sample JSON implements a simple user model.\n\nWith dart:convert,\nyou can serialize this JSON model in two ways.\n\nSerializing JSON inline", "source": "https://docs.flutter.dev/development/data-and-backend/json/index.html"} {"id": "de6d0c61b45b-6", "text": "Serializing JSON inline\n\nBy looking at the dart:convert documentation,\nyou\u2019ll see that you can decode the JSON by calling the\njsonDecode() function, with the JSON string as the method argument.\n\nUnfortunately, jsonDecode() returns a Map, meaning\nthat you do not know the types of the values until runtime. With this approach,\nyou lose most of the statically typed language features: type safety,\nautocompletion and most importantly, compile-time exceptions. Your code will\nbecome instantly more error-prone.\n\nFor example, whenever you access the name or email fields, you could quickly\nintroduce a typo. A typo that the compiler doesn\u2019t know about since the\nJSON lives in a map structure.\n\nSerializing JSON inside model classes\n\nCombat the previously mentioned problems by introducing a plain model\nclass, called User in this example. Inside the User class, you\u2019ll find:\n\nA User.fromJson() constructor, for constructing a new User instance from a\nmap structure.", "source": "https://docs.flutter.dev/development/data-and-backend/json/index.html"} {"id": "de6d0c61b45b-7", "text": "A toJson() method, which converts a User instance into a map.\n\nWith this approach, the calling code can have type safety,\nautocompletion for the name and email fields, and compile-time exceptions.\nIf you make typos or treat the fields as ints instead of Strings,\nthe app won\u2019t compile, instead of crashing at runtime.\n\nuser.dart\n\nThe responsibility of the decoding logic is now moved inside the model\nitself. With this new approach, you can decode a user easily.\n\nTo encode a user, pass the User object to the jsonEncode() function.\nYou don\u2019t need to call the toJson() method, since jsonEncode()\nalready does it for you.", "source": "https://docs.flutter.dev/development/data-and-backend/json/index.html"} {"id": "de6d0c61b45b-8", "text": "With this approach, the calling code doesn\u2019t have to worry about JSON\nserialization at all. However, the model class still definitely has to.\nIn a production app, you would want to ensure that the serialization\nworks properly. In practice, the User.fromJson() and User.toJson()\nmethods both need to have unit tests in place to verify correct behavior.\n\nThe cookbook contains a more comprehensive worked example of using\n JSON model classes, using an isolate to parse\n the JSON file on a background thread. This approach is ideal if you\n need your app to remain responsive while the JSON file is being\n decoded.\n\nHowever, real-world scenarios are not always that simple.\nSometimes JSON API responses are more complex, for example since they \ncontain nested JSON objects that must be parsed through their own model\nclass.\n\nIt would be nice if there were something that handled the JSON encoding\nand decoding for you. Luckily, there is!\n\nSerializing JSON using code generation libraries", "source": "https://docs.flutter.dev/development/data-and-backend/json/index.html"} {"id": "de6d0c61b45b-9", "text": "Serializing JSON using code generation libraries\n\nAlthough there are other libraries available, this guide uses\njson_serializable, an automated source code generator that\ngenerates the JSON serialization boilerplate for you.\n\nFlutter Favorite packages\n on pub.dev that generate JSON serialization code,\n\njson_serializable and\n\nbuilt_value.\n How do you choose between these packages?\n The\n\nSince the serialization code is not handwritten or maintained manually\nanymore, you minimize the risk of having JSON serialization exceptions at\nruntime.\n\nSetting up json_serializable in a project\n\nTo include json_serializable in your project, you need one regular\ndependency, and two dev dependencies. In short, dev dependencies\nare dependencies that are not included in our app source code\u2014they\nare only used in the development environment.\n\nThe latest versions of these required dependencies can be seen by\nfollowing the pubspec file in the JSON serializable example.\n\npubspec.yaml", "source": "https://docs.flutter.dev/development/data-and-backend/json/index.html"} {"id": "de6d0c61b45b-10", "text": "pubspec.yaml\n\ndependencies\n\n# Your other regular dependencies here\n\njson_annotation\n\n\n\ndev_dependencies\n\n# Your other dev_dependencies here\n\nbuild_runner\n\n\n\njson_serializable\n\n\n\nRun flutter pub get inside your project root folder\n(or click Packages get in your editor)\nto make these new dependencies available in your project.\n\nCreating model classes the json_serializable way\n\nThe following shows how to convert the User class to a\njson_serializable class. For the sake of simplicity,\nthis code uses the simplified JSON model\nfrom the previous samples.\n\nuser.dart\n\nWith this setup, the source code generator generates code for encoding\nand decoding the name and email fields from JSON.", "source": "https://docs.flutter.dev/development/data-and-backend/json/index.html"} {"id": "de6d0c61b45b-11", "text": "If needed, it is also easy to customize the naming strategy.\nFor example, if the API returns objects with snake_case,\nand you want to use lowerCamelCase in your models,\nyou can use the @JsonKey annotation with a name parameter:\n\n/// Tell json_serializable that \"registration_date_millis\" should be\n\n/// mapped to this property.\n\n@JsonKey\n\nname:\n\n'registration_date_millis'\n\nfinal\n\nint\n\nregistrationDateMillis\n\nIt\u2019s best if both server and client follow the same naming strategy.\n@JsonSerializable() provides fieldRename enum for totally converting dart \nfields into JSON keys.\n\nModifying @JsonSerializable(fieldRename: FieldRename.snake) is equivalent to\nadding @JsonKey(name: '') to each field.", "source": "https://docs.flutter.dev/development/data-and-backend/json/index.html"} {"id": "de6d0c61b45b-12", "text": "Sometimes server data is uncertain, so it is necessary to verify and protect data\n on client.\nOther commonly used @JsonKey annotations include:\n\n/// Tell json_serializable to use \"defaultValue\" if the JSON doesn't\n\n/// contain this key or if the value is `null`.\n\n@JsonKey\n\ndefaultValue:\n\nfalse\n\nfinal\n\nbool\n\nisAdult\n\n/// When `true` tell json_serializable that JSON must contain the key,\n\n/// If the key doesn't exist, an exception is thrown.\n\n@JsonKey\n\nrequired\n\ntrue\n\nfinal\n\nString\n\nid\n\n/// When `true` tell json_serializable that generated code should\n\n/// ignore this field completely.\n\n@JsonKey\n\nignore:\n\ntrue\n\nfinal", "source": "https://docs.flutter.dev/development/data-and-backend/json/index.html"} {"id": "de6d0c61b45b-13", "text": "ignore:\n\ntrue\n\nfinal\n\nString\n\nverificationCode\n\nRunning the code generation utility\n\nWhen creating json_serializable classes the first time,\nyou\u2019ll get errors similar to what is shown in the image below.\n\nThese errors are entirely normal and are simply because the generated code for\nthe model class does not exist yet. To resolve this, run the code\ngenerator that generates the serialization boilerplate.\n\nThere are two ways of running the code generator.\n\nOne-time code generation\n\nBy running flutter pub run build_runner build --delete-conflicting-outputs in the project root,\nyou generate JSON serialization code for your models whenever they are needed.\nThis triggers a one-time build that goes through the source files, picks the\nrelevant ones, and generates the necessary serialization code for them.", "source": "https://docs.flutter.dev/development/data-and-backend/json/index.html"} {"id": "de6d0c61b45b-14", "text": "While this is convenient, it would be nice if you did not have to run the\nbuild manually every time you make changes in your model classes.\n\nGenerating code continuously\n\nA watcher makes our source code generation process more convenient. It\nwatches changes in our project files and automatically builds the necessary\nfiles when needed. Start the watcher by running\nflutter pub run build_runner watch --delete-conflicting-outputs in the project root.\n\nIt is safe to start the watcher once and leave it running in the background.\n\nConsuming json_serializable models\n\nTo decode a JSON string the json_serializable way,\nyou do not have actually to make any changes to our previous code.\n\nThe same goes for encoding. The calling API is the same as before.", "source": "https://docs.flutter.dev/development/data-and-backend/json/index.html"} {"id": "de6d0c61b45b-15", "text": "The same goes for encoding. The calling API is the same as before.\n\nWith json_serializable,\nyou can forget any manual JSON serialization in the User class.\nThe source code generator creates a file called user.g.dart,\nthat has all the necessary serialization logic.\nYou no longer have to write automated tests to ensure\nthat the serialization works\u2014it\u2019s now\nthe library\u2019s responsibility to make sure the serialization works\nappropriately.\n\nGenerating code for nested classes\n\nYou might have code that has nested classes within a class.\nIf that is the case, and you have tried to pass the class in JSON format\nas an argument to a service (such as Firebase, for example),\nyou might have experienced an Invalid argument error.\n\nConsider the following Address class:\n\nThe Address class is nested inside the User class:", "source": "https://docs.flutter.dev/development/data-and-backend/json/index.html"} {"id": "de6d0c61b45b-16", "text": "The Address class is nested inside the User class:\n\nRunning \nflutter pub run build_runner build --delete-conflicting-outputs\nin the terminal creates\nthe *.g.dart file, but the private _$UserToJson() function\nlooks something like the following:\n\nMap\n\nString\n\ndynamic\n\n_$UserToJson\n\nUser\n\ninstance\n\nString\n\ndynamic\n\n>{\n\n'name'\n\ninstance\n\nname\n\n'address'\n\ninstance\n\naddress\n\n};\n\nAll looks fine now, but if you do a print() on the user object:\n\nThe result is:\n\nname:\n\nJohn\n\naddress:\n\nInstance\n\nof\n\n'address'", "source": "https://docs.flutter.dev/development/data-and-backend/json/index.html"} {"id": "de6d0c61b45b-17", "text": "Instance\n\nof\n\n'address'\n\nWhen what you probably want is output like the following:\n\nname:\n\nJohn\n\naddress:\n\nstreet:\n\nMy\n\nst.\n\ncity:\n\nNew\n\nYork\n\n}}\n\nTo make this work, pass explicitToJson: true in the @JsonSerializable()\nannotation over the class declaration. The User class now looks as follows:\n\nFor more information, see explicitToJson in the\nJsonSerializable class for the json_annotation package.\n\nFurther references\n\nFor more information, see the following resources:\n\nThe dart:convert and JsonCodec documentation\n\nThe json_serializable package on pub.dev\n\nThe json_serializable examples on GitHub", "source": "https://docs.flutter.dev/development/data-and-backend/json/index.html"} {"id": "4f3f0c961955-0", "text": "Networking\n\nData & backend\n\nNetworking\n\nCross-platform http networking\n\nPlatform notes\n\nAndroid\nmacOS\n\nSamples\n\nCross-platform http networking\n\nThe http package provides the simplest way to issue http requests. This\npackage is supported on Android, iOS, macOS, Windows, Linux and the web.\n\nPlatform notes\n\nSome platforms require additional steps, as detailed below.\n\nAndroid\n\nAndroid apps must declare their use of the internet in the Android\nmanifest (AndroidManifest.xml ):\n\nmacOS\n\nmacOS apps must allow network access in the relevant .entitlements files.\n\nLearn more about setting up entitlements.\n\nSamples\n\nFor a practical sample of various networking tasks (incl. fetching data,\nWebSockets, and parsing data in the background) see the \nnetworking cookbook.", "source": "https://docs.flutter.dev/development/data-and-backend/networking/index.html"} {"id": "6d4998fdd451-0", "text": "Intro\n\nEphemeral versus app state\n\nStart thinking declaratively\n\nData & backend\n\nState management\n\nStart thinking declaratively\n\nIf you\u2019re coming to Flutter from an imperative framework\n(such as Android SDK or iOS UIKit), you need to start\nthinking about app development from a new perspective.\n\nMany assumptions that you might have don\u2019t apply to Flutter. For example, in\nFlutter it\u2019s okay to rebuild parts of your UI from scratch instead of modifying\nit. Flutter is fast enough to do that, even on every frame if needed.\n\nFlutter is declarative. This means that Flutter builds its user interface to\nreflect the current state of your app:", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/declarative/index.html"} {"id": "6d4998fdd451-1", "text": "When the state of your app changes\n(for example, the user flips a switch in the settings screen),\nyou change the state, and that triggers a redraw of the user interface.\nThere is no imperative changing of the UI itself\n(like widget.setText)\u2014you change the state,\nand the UI rebuilds from scratch.\n\nRead more about the declarative approach to UI programming\nin the get started guide.\n\nThe declarative style of UI programming has many benefits.\nRemarkably, there is only one code path for any state of the UI.\nYou describe what the UI should look\nlike for any given state, once\u2014and that is it.\n\nAt first,\nthis style of programming might not seem as intuitive as the\nimperative style. This is why this section is here. Read on.\n\nIntro\n\nEphemeral versus app state", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/declarative/index.html"} {"id": "4a586bd4a152-0", "text": "Start thinking declaratively\n\nSimple app state management\n\nDifferentiate between ephemeral state and app state\n\nData & backend\n\nState management\n\nDifferentiate between ephemeral state and app state\n\nEphemeral state\n\nApp state\n\nThere is no clear-cut rule\n\nThis doc introduces app state, ephemeral state,\nand how you might manage each in a Flutter app.\n\nIn the broadest possible sense, the state of an app is everything that\nexists in memory when the app is running. This includes the app\u2019s assets,\nall the variables that the Flutter framework keeps about the UI,\nanimation state, textures, fonts, and so on. While this broadest\npossible definition of state is valid, it\u2019s not very useful for\narchitecting an app.", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/ephemeral-vs-app/index.html"} {"id": "4a586bd4a152-1", "text": "First, you don\u2019t even manage some state (like textures).\nThe framework handles those for you. So a more useful definition of\nstate is \u201cwhatever data you need in order to rebuild your UI at any\nmoment in time\u201d. Second, the state that you do manage yourself can\nbe separated into two conceptual types: ephemeral state and app state.\n\nEphemeral state\n\nEphemeral state (sometimes called UI state or local state)\nis the state you can neatly contain in a single widget.\n\nThis is, intentionally, a vague definition, so here are a few examples.\n\ncurrent page in a PageView\n\ncurrent progress of a complex animation\n\ncurrent selected tab in a BottomNavigationBar\n\nOther parts of the widget tree seldom need to access this kind of state.\nThere is no need to serialize it, and it doesn\u2019t change in complex ways.", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/ephemeral-vs-app/index.html"} {"id": "4a586bd4a152-2", "text": "In other words, there is no need to use state management techniques\n(ScopedModel, Redux, etc.) on this kind of state.\nAll you need is a StatefulWidget.\n\nBelow, you see how the currently selected item in a bottom navigation bar is\nheld in the _index field of the _MyHomepageState class.\nIn this example, _index is ephemeral state.\n\nHere, using setState() and a field inside the StatefulWidget\u2019s State\nclass is completely natural. No other part of your app needs to access\n_index. The variable only changes inside the MyHomepage widget.\nAnd, if the user closes and restarts the app,\nyou don\u2019t mind that _index resets to zero.\n\nApp state\n\nState that is not ephemeral,\nthat you want to share across many parts of your app,\nand that you want to keep between user sessions,\nis what we call application state\n(sometimes also called shared state).\n\nExamples of application state:", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/ephemeral-vs-app/index.html"} {"id": "4a586bd4a152-3", "text": "Examples of application state:\n\nUser preferences\n\nLogin info\n\nNotifications in a social networking app\n\nThe shopping cart in an e-commerce app\n\nRead/unread state of articles in a news app\n\nFor managing app state, you\u2019ll want to research your options.\nYour choice depends on the complexity and nature of your app,\nyour team\u2019s previous experience, and many other aspects. Read on.\n\nThere is no clear-cut rule\n\nTo be clear, you can use State and setState() to manage all of\nthe state in your app. In fact, the Flutter team does this in many\nsimple app samples (including the starter app that you get with every\nflutter create).", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/ephemeral-vs-app/index.html"} {"id": "4a586bd4a152-4", "text": "It goes the other way, too. For example, you might decide that\u2014in\nthe context of your particular app\u2014the selected tab in a bottom\nnavigation bar is not ephemeral state. You might need to change it\nfrom outside the class, keep it between sessions, and so on.\nIn that case, the _index variable is app state.\n\nThere is no clear-cut, universal rule to distinguish\nwhether a particular variable is ephemeral or app state.\nSometimes, you\u2019ll have to refactor one into another.\nFor example, you\u2019ll start with some clearly ephemeral state,\nbut as your application grows in features,\nit might need to be moved to app state.\n\nFor that reason, take the following diagram with a large grain of salt:\n\nWhen asked about React\u2019s setState versus Redux\u2019s store, the author of Redux,\nDan Abramov, replied:\n\n\u201cThe rule of thumb is: Do whatever is less awkward.\u201d", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/ephemeral-vs-app/index.html"} {"id": "4a586bd4a152-5", "text": "\u201cThe rule of thumb is: Do whatever is less awkward.\u201d\n\nIn summary, there are two conceptual types of state in any Flutter app.\nEphemeral state can be implemented using State and setState(),\nand is often local to a single widget. The rest is your app state.\nBoth types have their place in any Flutter app, and the split between\nthe two depends on your own preference and the complexity of the app.\n\nStart thinking declaratively\n\nSimple app state management", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/ephemeral-vs-app/index.html"} {"id": "da9325f90071-0", "text": "State management\n\nData & backend\n\nState management\n\nTopics:\n\nIntroduction\n\nThink declaratively\n\nEphemeral vs app state\n\nSimple app state management\n\nOptions", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/index.html"} {"id": "fb8405030d4b-0", "text": "Start thinking declaratively\n\nState management\n\nData & backend\n\nState management\n\nState management\n\nIf you are already familiar with state management in reactive apps,\nyou can skip this section, though you might want to review the\nlist of different approaches.\n\nAs you explore Flutter,\nthere comes a time when you need to share application\nstate between screens, across your app.\nThere are many approaches you can take,\nand many questions to think about.\n\nIn the following pages,\nyou will learn the basics of dealing with state in Flutter apps.\n\nStart thinking declaratively", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/intro/index.html"} {"id": "96fe42bb37dc-0", "text": "Simple app state management\n\nList of state management approaches\n\nData & backend\n\nState management\n\nList of state management approaches\n\nGeneral overview\n\nProvider\n\nRiverpod\n\nsetState\n\nInheritedWidget & InheritedModel\n\nRedux\n\nFish-Redux\n\nBLoC / Rx\n\nGetIt\n\nMobX\n\nFlutter Commands\n\nBinder\n\nGetX\n\nstates_rebuilder\n\nTriple Pattern (Segmented State Pattern)\n\nsolidart\n\nflutter_reactive_widget\n\nState management is a complex topic.\nIf you feel that some of your questions haven\u2019t been answered,\nor that the approach described on these pages\nis not viable for your use cases, you are probably right.", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/options/index.html"} {"id": "96fe42bb37dc-1", "text": "Learn more at the following links,\nmany of which have been contributed by the Flutter community:\n\nGeneral overview\n\nThings to review before selecting an approach.\n\nIntroduction to state management,\nwhich is the beginning of this very section\n(for those of you who arrived directly to this Options page \nand missed the previous pages)\n\nPragmatic State Management in Flutter,\na video from Google I/O 2019\n\nFlutter Architecture Samples, by Brian Egan\n\nProvider\n\nSimple app state management, the previous page in this section\n\nProvider package\n\nRiverpod\n\nRiverpod, another good choice, is\nsimilar to Provider and is compile-safe and testable.\nRiverpod doesn\u2019t have a dependency on the Flutter SDK.\n\nRiverpod homepage\n\nGetting started with Riverpod\n\nsetState", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/options/index.html"} {"id": "96fe42bb37dc-2", "text": "Getting started with Riverpod\n\nsetState\n\nThe low-level approach to use for widget-specific, ephemeral state.\n\nAdding interactivity to your Flutter app, a Flutter tutorial\n\nBasic state management in Google Flutter, by Agung Surya\n\nInheritedWidget & InheritedModel\n\nThe low-level approach used to communicate between ancestors and children\nin the widget tree. This is what provider and many other approaches\nuse under the hood.\n\nThe following instructor-led video workshop covers how to\nuse InheritedWidget:\n\nOther useful docs include:\n\nInheritedWidget docs\n\nManaging Flutter Application State With InheritedWidgets,\nby Hans Muller\n\nInheriting Widgets, by Mehmet Fidanboylu\n\nUsing Flutter Inherited Widgets Effectively, by Eric Windmill", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/options/index.html"} {"id": "96fe42bb37dc-3", "text": "Using Flutter Inherited Widgets Effectively, by Eric Windmill\n\nWidget - State - Context - InheritedWidget, by Didier Bolelens\n\nRedux\n\nA state container approach familiar to many web developers.\n\nAnimation Management with Redux and Flutter,\na video from DartConf 2018 Accompanying article on Medium\n\nFlutter Redux package\n\nRedux Saga Middleware Dart and Flutter, by Bilal Uslu\n\nIntroduction to Redux in Flutter, by Xavi Rigau\n\nFlutter + Redux\u2014How to make a shopping list app,\nby Paulina Szklarska on Hackernoon\n\nBuilding a TODO application (CRUD) in Flutter with Redux\u2014Part 1,\na video by Tensor Programming\n\nFlutter Redux Thunk, an example, by Jack Wong", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/options/index.html"} {"id": "96fe42bb37dc-4", "text": "Flutter Redux Thunk, an example, by Jack Wong\n\nBuilding a (large) Flutter app with Redux, by Hillel Coren\n\nFish-Redux\u2013An assembled flutter application framework based on Redux,\nby Alibaba\n\nAsync Redux\u2013Redux without boilerplate. Allows for both sync and async reducers,\nby Marcelo Glasberg\n\nFlutter meets Redux: The Redux way of managing Flutter applications state,\nby Amir Ghezelbash\n\nRedux and epics for better-organized code in Flutter apps, by Nihad Delic\n\nFlutter_Redux_Gen - VS Code Plugin to generate boiler plate code, by Balamurugan Muthusamy (BalaDhruv)\n\nFish-Redux\n\nFish Redux is an assembled flutter application framework\nbased on Redux state management. \nIt is suitable for building medium and large applications.", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/options/index.html"} {"id": "96fe42bb37dc-5", "text": "Fish-Redux-Library package, by Alibaba\n\nFish-Redux-Source, project code\n\nFlutter-Movie, A non-trivial example demonstrating how\nto use Fish Redux, with more than 30 screens, graphql,\npayment api, and media player.\n\nBLoC / Rx\n\nA family of stream/observable based patterns.\n\nArchitect your Flutter project using BLoC pattern,\nby Sagar Suri\n\nBloC Library, by Felix Angelov\n\nReactive Programming - Streams - BLoC - Practical Use Cases,\nby Didier Boelens\n\nGetIt\n\nA service locator based state management approach that\ndoesn\u2019t need a BuildContext.\n\nGetIt package, the service locator.\nIt can also be used together with BloCs.\n\nGetIt Mixin package, a mixin that completes\nGetIt to a full state management solution.", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/options/index.html"} {"id": "96fe42bb37dc-6", "text": "GetIt Hooks package, same as the mixin in\ncase you already use flutter_hooks.\n\nFlutter state management for minimalists, by Suragch\n\nNote:\n To learn more, watch this short Package of the Week video on the GetIt package:\n\nMobX\n\nA popular library based on observables and reactions.\n\nMobX.dart, Hassle free state-management for your Dart and Flutter apps\n\nGetting started with MobX.dart\n\nFlutter: State Management with Mobx, a video by Paul Halliday\n\nFlutter Commands\n\nReactive state management that uses the Command Pattern\nand is based on ValueNotifiers. Best in combination with\nGetIt, but can be used with Provider or other\nlocators too.\n\nFlutter Command package\n\nRxCommand package, Stream based implementation.\n\nBinder", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/options/index.html"} {"id": "96fe42bb37dc-7", "text": "RxCommand package, Stream based implementation.\n\nBinder\n\nA state management package that uses InheritedWidget\nat its core. Inspired in part by recoil.\nThis package promotes the separation of concerns.\n\nBinder package\n\nBinder examples\n\nBinder snippets, vscode snippets to be even more\nproductive with Binder\n\nGetX\n\nA simplified reactive state management solution.\n\nGetX package\n\nComplete GetX State Management, a video by Tadas Petra\n\nGetX Flutter Firebase Auth Example, by Jeff McMorris\n\nstates_rebuilder\n\nAn approach that combines state management with a\ndependency injection solution and an integrated router.\nFor more information, see the following info:\n\nStates Rebuilder project code\n\nStates Rebuilder documentation\n\nTriple Pattern (Segmented State Pattern)\n\nSegmented State pattern.", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/options/index.html"} {"id": "96fe42bb37dc-8", "text": "Segmented State pattern.\n\nFor more information, refer to the following resources:\n\nTriple documentation\n\nFlutter Triple package\n\nTriple Pattern: A new pattern for state management in Flutter\n(blog post written in Portuguese but can be auto-translated)\n\nVIDEO: Flutter Triple Pattern by Kevlin Ossada (recorded in English)\n\nsolidart\n\nA simple but powerful state management solution inspired by SolidJS.\n\nOfficial Documentation\n\nsolidart package\n\nflutter_solidart package\n\nflutter_reactive_widget\n\nAlso includes a definition for PersistentReactiveValue, a subclass\nof ReactiveValue whose latest value persists, surviving app\nrestarts.\n\nflutter_reactive_widget source and documentation\n\nSimple app state management", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/options/index.html"} {"id": "6232898c8832-0", "text": "Ephemeral versus app state\n\nList of approaches\n\nSimple app state management\n\nData & backend\n\nState management\n\nSimple app state management\n\nOur example\n\nLifting state up\n\nAccessing the state\n\nChangeNotifier\n\nChangeNotifierProvider\n\nConsumer\n\nProvider.of\n\nPutting it all together\n\nNow that you know about declarative UI programming\nand the difference between ephemeral and app state,\nyou are ready to learn about simple app state management.\n\nOn this page, we are going to be using the provider package.\nIf you are new to Flutter and you don\u2019t have a strong reason to choose\nanother approach (Redux, Rx, hooks, etc.), this is probably the approach\nyou should start with. The provider package is easy to understand\nand it doesn\u2019t use much code.\nIt also uses concepts that are applicable in every other approach.", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/simple/index.html"} {"id": "6232898c8832-1", "text": "That said, if you have a strong background in\nstate management from other reactive frameworks,\nyou can find packages and tutorials listed on the options page.\n\nOur example\n\nFor illustration, consider the following simple app.\n\nThe app has two separate screens: a catalog,\nand a cart (represented by the MyCatalog,\nand MyCart widgets, respectively). It could be a shopping app,\nbut you can imagine the same structure in a simple social networking\napp (replace catalog for \u201cwall\u201d and cart for \u201cfavorites\u201d).\n\nThe catalog screen includes a custom app bar (MyAppBar)\nand a scrolling view of many list items (MyListItems).\n\nHere\u2019s the app visualized as a widget tree.\n\nSo we have at least 5 subclasses of Widget. Many of them need\naccess to state that \u201cbelongs\u201d elsewhere. For example, each\nMyListItem needs to be able to add itself to the cart.\nIt might also want to see whether the currently displayed item\nis already in the cart.", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/simple/index.html"} {"id": "6232898c8832-2", "text": "This takes us to our first question: where should we put the current\nstate of the cart?\n\nLifting state up\n\nIn Flutter,\nit makes sense to keep the state above the widgets that use it.\n\nWhy? In declarative frameworks like Flutter, if you want to change the UI,\nyou have to rebuild it. There is no easy way to have\nMyCart.updateWith(somethingNew). In other words, it\u2019s hard to\nimperatively change a widget from outside, by calling a method on it.\nAnd even if you could make this work, you would be fighting the\nframework instead of letting it help you.\n\n// BAD: DO NOT DO THIS\n\nvoid\n\nmyTapHandler\n\n()\n\nvar\n\ncartWidget\n\nsomehowGetMyCartWidget\n\n();\n\ncartWidget\n\nupdateWith\n\nitem\n\n);", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/simple/index.html"} {"id": "6232898c8832-3", "text": "updateWith\n\nitem\n\n);\n\nEven if you get the above code to work,\nyou would then have to deal\nwith the following in the MyCart widget:\n\n// BAD: DO NOT DO THIS\n\nWidget\n\nbuild\n\nBuildContext\n\ncontext\n\nreturn\n\nSomeWidget\n\n// The initial state of the cart.\n\n);\n\nvoid\n\nupdateWith\n\nItem\n\nitem\n\n// Somehow you need to change the UI from here.\n\nYou would need to take into consideration the current state of the UI\nand apply the new data to it. It\u2019s hard to avoid bugs this way.", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/simple/index.html"} {"id": "6232898c8832-4", "text": "In Flutter, you construct a new widget every time its contents change.\nInstead of MyCart.updateWith(somethingNew) (a method call)\nyou use MyCart(contents) (a constructor). Because you can only\nconstruct new widgets in the build methods of their parents,\nif you want to change contents, it needs to live in MyCart\u2019s\nparent or above.\n\nNow MyCart has only one code path for building any version of the UI.\n\nThis is what we mean when we say that widgets are immutable.\nThey don\u2019t change\u2014they get replaced.\n\nNow that we know where to put the state of the cart, let\u2019s see how\nto access it.\n\nAccessing the state\n\nWhen a user clicks on one of the items in the catalog,\nit\u2019s added to the cart. But since the cart lives above MyListItem,\nhow do we do that?", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/simple/index.html"} {"id": "6232898c8832-5", "text": "A simple option is to provide a callback that MyListItem can call\nwhen it is clicked. Dart\u2019s functions are first class objects,\nso you can pass them around any way you want. So, inside\nMyCatalog you can define the following:\n\nThis works okay, but for an app state that you need to modify from\nmany different places, you\u2019d have to pass around a lot of\ncallbacks\u2014which gets old pretty quickly.\n\nFortunately, Flutter has mechanisms for widgets to provide data and\nservices to their descendants (in other words, not just their children,\nbut any widgets below them). As you would expect from Flutter,\nwhere Everything is a Widget\u2122, these mechanisms are just special\nkinds of widgets\u2014InheritedWidget, InheritedNotifier,\nInheritedModel, and more. We won\u2019t be covering those here,\nbecause they are a bit low-level for what we\u2019re trying to do.", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/simple/index.html"} {"id": "6232898c8832-6", "text": "Instead, we are going to use a package that works with the low-level\nwidgets but is simple to use. It\u2019s called provider.\n\nBefore working with provider,\ndon\u2019t forget to add the dependency on it to your pubspec.yaml.\n\nname\n\nmy_name\n\ndescription\n\nBlah blah blah.\n\n# ...\n\ndependencies\n\nflutter\n\nsdk\n\nflutter\n\nprovider\n\n^6.0.0\n\ndev_dependencies\n\n# ...\n\nNow you can import 'package:provider/provider.dart';\nand start building.\n\nWith provider, you don\u2019t need to worry about callbacks or\nInheritedWidgets. But you do need to understand 3 concepts:\n\nChangeNotifier\n\nChangeNotifierProvider\n\nConsumer\n\nChangeNotifier", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/simple/index.html"} {"id": "6232898c8832-7", "text": "ChangeNotifierProvider\n\nConsumer\n\nChangeNotifier\n\nChangeNotifier is a simple class included in the Flutter SDK which provides\nchange notification to its listeners. In other words, if something is\na ChangeNotifier, you can subscribe to its changes. (It is a form of\nObservable, for those familiar with the term.)\n\nIn our shopping app example, we want to manage the state of the cart in a\nChangeNotifier. We create a new class that extends it, like so:\n\nChangeNotifier {\n /// Internal, private state of the cart.\n final List _items = [];\n\n /// An unmodifiable view of the items in the cart.\n UnmodifiableListView get items => UnmodifiableListView(_items);\n\n /// The current total price of all items (assuming all items cost $42).\n int get totalPrice => _items.length * 42;", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/simple/index.html"} {"id": "6232898c8832-8", "text": "/// Adds [item] to cart. This and [removeAll] are the only ways to modify the\n /// cart from the outside.\n void add(Item item) {\n _items.add(item);\n // This call tells the widgets that are listening to this model to rebuild.\n\nnotifyListeners();\n }\n\n /// Removes all items from the cart.\n void removeAll() {\n _items.clear();\n // This call tells the widgets that are listening to this model to rebuild.\n\nnotifyListeners();\n }\n}\n\nThe only code that is specific to ChangeNotifier is the call\nto notifyListeners(). Call this method any time the model changes in a way\nthat might change your app\u2019s UI. Everything else in CartModel is the\nmodel itself and its business logic.", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/simple/index.html"} {"id": "6232898c8832-9", "text": "ChangeNotifier is part of flutter:foundation and doesn\u2019t depend on\nany higher-level classes in Flutter. It\u2019s easily testable (you don\u2019t even need\nto use widget testing for it). For example,\nhere\u2019s a simple unit test of CartModel:\n\nChangeNotifierProvider\n\nChangeNotifierProvider is the widget that provides an instance of\na ChangeNotifier to its descendants. It comes from the provider package.\n\nWe already know where to put ChangeNotifierProvider: above the widgets that\nneed to access it. In the case of CartModel, that means somewhere\nabove both MyCart and MyCatalog.\n\nYou don\u2019t want to place ChangeNotifierProvider higher than necessary\n(because you don\u2019t want to pollute the scope). But in our case,\nthe only widget that is on top of both MyCart and MyCatalog is MyApp.\n\nChangeNotifierProvider(\n create: (context) => CartModel(),\n child: const MyApp(),\n ),\n );\n}", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/simple/index.html"} {"id": "6232898c8832-10", "text": "If you want to provide more than one class, you can use MultiProvider:\n\nMultiProvider(\n providers: [\n ChangeNotifierProvider(create: (context) => CartModel()),\n Provider(create: (context) => SomeOtherClass()),\n ],\n child: const MyApp(),\n ),\n );\n}\n\nConsumer\n\nNow that CartModel is provided to widgets in our app through the\nChangeNotifierProvider declaration at the top, we can start using it.\n\nThis is done through the Consumer widget.\n\nConsumer(\n builder: (context, cart, child) {\n return Text('Total price: ${cart.totalPrice}');\n },\n);", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/simple/index.html"} {"id": "6232898c8832-11", "text": "We must specify the type of the model that we want to access.\nIn this case, we want CartModel, so we write\nConsumer. If you don\u2019t specify the generic (),\nthe provider package won\u2019t be able to help you. provider is based on types,\nand without the type, it doesn\u2019t know what you want.\n\nThe only required argument of the Consumer widget\nis the builder. Builder is a function that is called whenever the\nChangeNotifier changes. (In other words, when you call notifyListeners()\nin your model, all the builder methods of all the corresponding\nConsumer widgets are called.)\n\nThe builder is called with three arguments. The first one is context,\nwhich you also get in every build method.\n\nThe second argument of the builder function is the instance of\nthe ChangeNotifier. It\u2019s what we were asking for in the first place.\nYou can use the data in the model to define what the UI should look like\nat any given point.", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/simple/index.html"} {"id": "6232898c8832-12", "text": "The third argument is child, which is there for optimization.\nIf you have a large widget subtree under your Consumer\nthat doesn\u2019t change when the model changes, you can construct it\nonce and get it through the builder.\n\nchild) => Stack(\n children: [\n // Use SomeExpensiveWidget here, without rebuilding every time.\n if (\n\nchild != null)\n\nchild,\n Text('Total price: ${cart.totalPrice}'),\n ],\n ),\n // Build the expensive widget here.\n\nchild: const SomeExpensiveWidget(),\n);\n\nIt is best practice to put your Consumer widgets as deep in the tree\nas possible. You don\u2019t want to rebuild large portions of the UI\njust because some detail somewhere changed.\n\nInstead:\n\nProvider.of", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/simple/index.html"} {"id": "6232898c8832-13", "text": "Instead:\n\nProvider.of\n\nSometimes, you don\u2019t really need the data in the model to change the\nUI but you still need to access it. For example, a ClearCart\nbutton wants to allow the user to remove everything from the cart.\nIt doesn\u2019t need to display the contents of the cart,\nit just needs to call the clear() method.\n\nWe could use Consumer for this,\nbut that would be wasteful. We\u2019d be asking the framework to\nrebuild a widget that doesn\u2019t need to be rebuilt.\n\nFor this use case, we can use Provider.of,\nwith the listen parameter set to false.\n\nlisten: false).removeAll();\n\nUsing the above line in a build method won\u2019t cause this widget to\nrebuild when notifyListeners is called.\n\nPutting it all together", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/simple/index.html"} {"id": "6232898c8832-14", "text": "Putting it all together\n\nYou can check out the example covered in this article.\nIf you want something simpler,\nsee what the simple Counter app looks like when\nbuilt with provider.\n\nBy following along with these articles, you\u2019ve greatly \nimproved your ability to create state-based applications. \nTry building an application with provider yourself to \nmaster these skills.\n\nEphemeral versus app state\n\nList of approaches", "source": "https://docs.flutter.dev/development/data-and-backend/state-mgmt/simple/index.html"} {"id": "42c74e18858f-0", "text": "Background processes\n\nPackages & plugins\n\nBackground processes\n\nHave you ever wanted to execute Dart code in the\nbackground\u2014even if your app wasn\u2019t the currently active app?\nPerhaps you wanted to implement a process that watches the time,\nor that catches camera movement.\nIn Flutter, you can execute Dart code in the background.\n\nThe mechanism for this feature involves setting up an isolate.\nIsolates are Dart\u2019s model for multithreading,\nthough an isolate differs from a conventional thread\nin that it doesn\u2019t share memory with the main program.\nYou\u2019ll set up your isolate for background execution using\ncallbacks and a callback dispatcher.\n\nAdditionally, the WorkManager plugin enables persistent background processing \nthat keeps tasks scheduled through app restarts and system reboots.", "source": "https://docs.flutter.dev/development/packages-and-plugins/background-processes/index.html"} {"id": "42c74e18858f-1", "text": "For more information and a geofencing example that uses background\nexecution of Dart code, see the Medium article by Ben Konyi,\nExecuting Dart in the Background with Flutter Plugins and\nGeofencing. At the end of this article,\nyou\u2019ll find links to example code, and relevant documentation for Dart,\niOS, and Android.\n\nSee the Happy paths recommendations for more information \non background processing.", "source": "https://docs.flutter.dev/development/packages-and-plugins/background-processes/index.html"} {"id": "9cbca39b081a-0", "text": "Developing packages & plugins\n\nPackages & plugins\n\nDeveloping\n\nPackage introduction\n\nPackage types\n\nDeveloping Dart packages\n\nStep 1: Create the package\nStep 2: Implement the package\n\nDeveloping plugin packages\n\nFederated plugins\n\nEndorsed federated plugin\nNon-endorsed federated plugin\n\n\nSpecifying a plugin\u2019s supported platforms\n\nFederated platform packages\nEndorsed implementations\n\n\nStep 1: Create the package\nStep 2: Implement the package", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-1", "text": "Step 1: Create the package\nStep 2: Implement the package\n\nStep 2a: Define the package API (.dart)\nStep 2b: Add Android platform code (.kt/.java)\nStep 2c: Add iOS platform code (.swift/.h+.m)\nStep 2d: Add Linux platform code (.h+.cc)\nStep 2e: Add macOS platform code (.swift)\nStep 2f: Add Windows platform code (.h+.cpp)\nStep 2g: Connect the API and the platform code\n\n\nAdd support for platforms in an existing plugin project\nDart platform implementations\n\nDart-only platform implementations\nHybrid platform implementations\n\n\nTesting your plugin\n\nDeveloping FFI plugin packages\n\nStep 1: Create the package\nStep 2: Building and bundling native code\nStep 3: Binding to native code\nStep 4: Invoking native code\n\nAdding documentation", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-2", "text": "Adding documentation\n\nAPI documentation\nAdding licenses to the LICENSE file\n\nPublishing your package\n\nHandling package interdependencies\n\nAndroid\niOS\nWeb\n\nPackage introduction\n\nPackages enable the creation of modular code that can be shared easily.\nA minimal package consists of the following:\n\nA metadata file that declares the package name,\nversion, author, and so on.\n\nThe lib directory contains the public code in\nthe package, minimally a single .dart file.\n\nNote:\n For a list of dos and don\u2019ts when writing an effective plugin,\n see the Medium article by Mehmet Fidanboylu,\n Writing a good plugin.\n\nPackage types\n\nPackages can contain more than one kind of content:", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-3", "text": "Package types\n\nPackages can contain more than one kind of content:\n\nGeneral packages written in Dart,\nfor example the path package.\nSome of these might contain Flutter specific\nfunctionality and thus have a dependency on the\nFlutter framework, restricting their use to Flutter only,\nfor example the fluro package.\n\nA specialized Dart package that contains an API written in\nDart code combined with one or more platform-specific\nimplementations.\n\n Plugin packages can be written for Android\n(using Kotlin or Java), iOS (using Swift or Objective-C),\nweb, macOS, Windows, or Linux, or any combination\nthereof.\n\n A concrete example is the url_launcher plugin package.\nTo see how to use the url_launcher package, and how it\nwas extended to implement support for web,\nsee the Medium article by Harry Terkelsen,\nHow to Write a Flutter Web Plugin, Part 1.", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-4", "text": "A specialized Dart package that contains an API written in\nDart code combined with one or more platform-specific\nimplementations that use Dart FFI(Android, iOS, macOS).\n\nDeveloping Dart packages\n\nThe following instructions explain how to write a Flutter\npackage.\n\nStep 1: Create the package\n\nTo create a starter Flutter package,\nuse the --template=package flag with flutter create:\n\nflutter create\n\n-template\n\n=package hello\n\nThis creates a package project in the hello\nfolder with the following content:\n\nA (mostly) empty license text file.\n\nThe unit tests for the package.\n\nA configuration file used by the IntelliJ IDEs.\n\nA hidden file that tells Git which files or\nfolders to ignore in a project.\n\nA hidden file used by IDEs to track the properties\nof the Flutter project.", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-5", "text": "A hidden file used by IDEs to track the properties\nof the Flutter project.\n\nA yaml file containing metadata that specifies\nthe package\u2019s dependencies. Used by the pub tool.\n\nA starter markdown file that briefly describes\nthe package\u2019s purpose.\n\nA starter app containing Dart code for the package.\n\nA hidden folder containing configuration files\nfor the IntelliJ IDEs.\n\nA (mostly) empty markdown file for tracking\nversion changes to the package.\n\nStep 2: Implement the package\n\nFor pure Dart packages, simply add the functionality\ninside the main lib/.dart file,\nor in several files in the lib directory.\n\nTo test the package, add unit tests\nin a test directory.\n\nFor additional details on how to organize the\npackage contents,\nsee the Dart library package documentation.\n\nDeveloping plugin packages", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-6", "text": "Developing plugin packages\n\nIf you want to develop a package that calls into\nplatform-specific APIs,\nyou need to develop a plugin package.\n\nThe API is connected to the platform-specific\nimplementation(s) using a platform channel.\n\nFederated plugins\n\nFederated plugins are a way of splitting support for\ndifferent platforms into separate packages.\nSo, a federated plugin can use one package for iOS,\nanother for Android, another for web,\nand yet another for a car (as an example of an IoT device).\nAmong other benefits, this approach allows a domain expert\nto extend an existing plugin to work for the platform they know best.\n\nA federated plugin requires the following packages:\n\nThe package that plugin users depend on to use the plugin.\nThis package specifies the API used by the Flutter app.", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-7", "text": "One or more packages that contain the platform-specific\nimplementation code. The app-facing package calls into\nthese packages\u2014they aren\u2019t included into an app,\nunless they contain platform-specific functionality\naccessible to the end user.\n\nThe package that glues the app-facing packing\nto the platform package(s). This package declares an\ninterface that any platform package must implement to\nsupport the app-facing package. Having a single package\nthat defines this interface ensures that all platform\npackages implement the same functionality in a uniform way.\n\nEndorsed federated plugin\n\nIdeally, when adding a platform implementation to\na federated plugin, you will coordinate with the package\nauthor to include your implementation.\nIn this way, the original author endorses your\nimplementation.", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-8", "text": "For example, say you write a foobar_windows\nimplementation for the (imaginary) foobar plugin.\nIn an endorsed plugin, the original foobar author\nadds your Windows implementation as a dependency\nin the pubspec for the app-facing package.\nThen, when a developer includes the foobar plugin\nin their Flutter app, the Windows implementation,\nas well as the other endorsed implementations,\nare automatically available to the app.\n\nNon-endorsed federated plugin\n\nIf you can\u2019t, for whatever reason, get your implementation\nadded by the original plugin author, then your plugin\nis not endorsed. A developer can still use your\nimplementation, but must manually add the plugin\nto the app\u2019s pubspec file. So, the developer\nmust include both the foobar dependency and\nthe foobar_windows dependency in order to achieve\nfull functionality.", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-9", "text": "For more information on federated plugins,\nwhy they are useful, and how they are\nimplemented, see the Medium article by Harry Terkelsen,\nHow To Write a Flutter Web Plugin, Part 2.\n\nSpecifying a plugin\u2019s supported platforms\n\nPlugins can specify the platforms they support by\nadding keys to the platforms map in the\npubspec.yaml file. For example,\nthe following pubspec file shows the\nflutter: map for the hello plugin,\nwhich supports only iOS and Android:\n\nflutter\n\nplugin\n\nplatforms\n\nandroid\n\npackage\n\ncom.example.hello\n\npluginClass\n\nHelloPlugin\n\nios\n\npluginClass\n\nHelloPlugin\n\nenvironment\n\nsdk\n\n>=2.1.0\n\n<3.0.0\"", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-10", "text": ">=2.1.0\n\n<3.0.0\"\n\n# Flutter versions prior to 1.12 did not support the\n\n# flutter.plugin.platforms map.\n\nflutter\n\n>=1.12.0\"\n\nWhen adding plugin implementations for more platforms,\nthe platforms map should be updated accordingly.\nFor example, here\u2019s the map in the pubspec file\nfor the hello plugin,\nwhen updated to add support for macOS and web:\n\nflutter\n\nplugin\n\nplatforms\n\nandroid\n\npackage\n\ncom.example.hello\n\npluginClass\n\nHelloPlugin\n\nios\n\npluginClass\n\nHelloPlugin\n\nmacos\n\npluginClass\n\nHelloPlugin\n\nweb\n\npluginClass\n\nHelloPlugin\n\nfileName", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-11", "text": "pluginClass\n\nHelloPlugin\n\nfileName\n\nhello_web.dart\n\nenvironment\n\nsdk\n\n>=2.1.0\n\n<3.0.0\"\n\n# Flutter versions prior to 1.12 did not support the\n\n# flutter.plugin.platforms map.\n\nflutter\n\n>=1.12.0\"\n\nFederated platform packages\n\nA platform package uses the same format,\nbut includes an implements entry indicating\nwhich app-facing package it implements. For example,\na hello_windows plugin containing the Windows\nimplementation for hello\nwould have the following flutter: map:\n\nflutter\n\nplugin\n\nimplements\n\nhello\n\nplatforms\n\nwindows\n\npluginClass\n\nHelloPlugin\n\nEndorsed implementations", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-12", "text": "pluginClass\n\nHelloPlugin\n\nEndorsed implementations\n\nAn app facing package can endorse a platform package by adding a\ndependency on it, and including it as a default_package in the\nplatforms: map. If the hello plugin above endorsed hello_windows,\nit would look as follows:\n\nflutter\n\nplugin\n\nplatforms\n\nandroid\n\npackage\n\ncom.example.hello\n\npluginClass\n\nHelloPlugin\n\nios\n\npluginClass\n\nHelloPlugin\n\nwindows\n\ndefault_package\n\nhello_windows\n\ndependencies\n\nhello_windows\n\n^1.0.0\n\nNote that as shown here, an app-facing package can have\nsome platforms implemented within the package,\nand others in endorsed federated implementations.\n\nStep 1: Create the package", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-13", "text": "Step 1: Create the package\n\nTo create a plugin package, use the --template=plugin\nflag with flutter create.\n\nUse the --org option to specify your organization,\nusing reverse domain name notation. This value is used\nin various package and bundle identifiers in the\ngenerated plugin code.\n\nUse the -a option to specify the language for android\nor the -i option to specify the language for ios.\nPlease choose one of the following:\n\nflutter create\n\n-org com.example\n\n-template\n\n=plugin\n\n-platforms\n\n=android,ios,linux,macos,windows\n\na kotlin hello\n\nflutter create\n\n-org com.example\n\n-template\n\n=plugin\n\n-platforms\n\n=android,ios,linux,macos,windows\n\na java hello\n\nflutter create", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-14", "text": "a java hello\n\nflutter create\n\n-org com.example\n\n-template\n\n=plugin\n\n-platforms\n\n=android,ios,linux,macos,windows\n\ni objc hello\n\nflutter create\n\n-org com.example\n\n-template\n\n=plugin\n\n-platforms\n\n=android,ios,linux,macos,windows\n\ni swift hello\n\nThis creates a plugin project in the hello folder\nwith the following specialized content:\n\nThe Dart API for the plugin.\n\nThe Android platform-specific implementation of the plugin API\nin Kotlin.\n\nThe iOS-platform specific implementation of the plugin API\nin Objective-C.\n\nA Flutter app that depends on the plugin,\nand illustrates how to use it.", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-15", "text": "A Flutter app that depends on the plugin,\nand illustrates how to use it.\n\nBy default, the plugin project uses Swift for iOS code and\nKotlin for Android code. If you prefer Objective-C or Java,\nyou can specify the iOS language using -i and the\nAndroid language using -a. For example:\n\nflutter create\n\n-template\n\n=plugin\n\n-platforms\n\n=android,ios\n\ni objc hello\n\nflutter create\n\n-template\n\n=plugin\n\n-platforms\n\n=android,ios\n\na java hello\n\nStep 2: Implement the package\n\nAs a plugin package contains code for several platforms\nwritten in several programming languages,\nsome specific steps are needed to ensure a smooth experience.\n\nStep 2a: Define the package API (.dart)", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-16", "text": "Step 2a: Define the package API (.dart)\n\nThe API of the plugin package is defined in Dart code.\nOpen the main hello/ folder in your favorite Flutter editor.\nLocate the file lib/hello.dart.\n\nStep 2b: Add Android platform code (.kt/.java)\n\nWe recommend you edit the Android code using Android Studio.\n\nThen use the following steps:\n\nLaunch Android Studio.\n\nSelect Open an existing Android Studio Project\nin the Welcome to Android Studio dialog,\nor select File > Open from the menu,\nand select the hello/example/android/build.gradle file.\n\nIn the Gradle Sync dialog, select OK.\n\nIn the Android Gradle Plugin Update dialog,\nselect Don\u2019t remind me again for this project.\n\nThe Android platform code of your plugin is located in\nhello/java/com.example.hello/HelloPlugin.", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-17", "text": "You can run the example app from Android Studio by\npressing the run (\u25b6) button.\n\nStep 2c: Add iOS platform code (.swift/.h+.m)\n\nWe recommend you edit the iOS code using Xcode.\n\nBefore editing the iOS platform code in Xcode,\nfirst make sure that the code has been built at least once\n(in other words, run the example app from your IDE/editor,\nor in a terminal execute\ncd hello/example; flutter build ios --no-codesign).\n\nThen use the following steps:\n\nLaunch Xcode.\n\nSelect File > Open, and select the\nhello/example/ios/Runner.xcworkspace file.\n\nThe iOS platform code for your plugin is located in\nPods/Development Pods/hello/../../example/ios/.symlinks/plugins/hello/ios/Classes\nin the Project Navigator.\n\nYou can run the example app by pressing the run (\u25b6) button.", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-18", "text": "You can run the example app by pressing the run (\u25b6) button.\n\nStep 2d: Add Linux platform code (.h+.cc)\n\nWe recommend you edit the Linux code using an IDE with\nC++ integration. The instructions below are for\nVisual Studio Code with the \u201cC/C++\u201d and \u201cCMake\u201d extensions\ninstalled, but can be adjusted for other IDEs.\n\nBefore editing the Linux platform code in an IDE,\nfirst make sure that the code has been built at least once\n(in other words, run the example app from your Flutter\nIDE/editor, or in a terminal execute\ncd hello/example; flutter build linux).\n\nThen use the following steps:\n\nLaunch Visual Studio Code.\n\nOpen the hello/example/linux/ directory.\n\nChoose Yes in the prompt asking:\nWould you like to configure project \"linux\"?.\nThis will allow C++ autocomplete to work.", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-19", "text": "The Linux platform code for your plugin is located in\nflutter/ephemeral/.plugin_symlinks/hello/linux/.\n\nYou can run the example app using flutter run.\nNote: Creating a runnable Flutter application\non Linux requires steps that are part of the flutter\ntool, so even if your editor provides CMake\nintegration building and running that way won\u2019t\nwork correctly.\n\nStep 2e: Add macOS platform code (.swift)\n\nWe recommend you edit the macOS code using Xcode.\n\nBefore editing the macOS platform code in Xcode,\nfirst make sure that the code has been built at least once\n(in other words, run the example app from your IDE/editor,\nor in a terminal execute\ncd hello/example; flutter build macos).\n\nThen use the following steps:\n\nLaunch Xcode.\n\nSelect File > Open, and select the\nhello/example/macos/Runner.xcworkspace file.", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-20", "text": "The macOS platform code for your plugin is located in\nPods/Development Pods/hello/../../example/macos/Flutter/ephemeral/.symlinks/plugins/hello/macos/Classes\nin the Project Navigator.\n\nYou can run the example app by pressing the run (\u25b6) button.\n\nStep 2f: Add Windows platform code (.h+.cpp)\n\nWe recommend you edit the Windows code using Visual Studio.\n\nBefore editing the Windows platform code in Visual Studio,\nfirst make sure that the code has been built at least once\n(in other words, run the example app from your IDE/editor,\nor in a terminal execute\ncd hello/example; flutter build windows).\n\nThen use the following steps:\n\nLaunch Visual Studio.\n\nSelect Open a project or solution, and select the\nhello/example/build/windows/hello_example.sln file.", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-21", "text": "The Windows platform code for your plugin is located in\nhello_plugin/Source Files and hello_plugin/Header Files in\nthe Solution Explorer.\n\nYou can run the example app by right-clicking hello_example in\nthe Solution Explorer and selecting Set as Startup Project,\nthen pressing the run (\u25b6) button. Important: After\nmaking changes to plugin code, you must select\nBuild > Build Solution before running again, otherwise\nan outdated copy of the built plugin will be run instead\nof the latest version containing your changes.\n\nStep 2g: Connect the API and the platform code\n\nFinally, you need to connect the API written in Dart code with\nthe platform-specific implementations.\nThis is done using a platform channel,\nor through the interfaces defined in a platform\ninterface package.\n\nAdd support for platforms in an existing plugin project\n\nTo add support for specific platforms to an\nexisting plugin project, run flutter create with\nthe --template=plugin flag again in the project directory.\nFor example, to add web support in an existing plugin, run:", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-22", "text": "flutter create\n\n-template\n\n=plugin\n\n-platforms\n\n=web\n\nIf this command displays a message about updating the\npubspec.yaml file, follow the provided instructions.\n\nDart platform implementations\n\nIn many cases, non-web platform implementations only use the\nplatform-specific implementation language, as shown above. However,\nplatform implementations can also use platform-specific Dart as well.\n\nNote:\n The examples below only apply to non-web platforms. Web\n plugin implementations are always written in Dart, and use\n pluginClass and fileName for their Dart implementations\n as shown above.\n\nDart-only platform implementations", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-23", "text": "Dart-only platform implementations\n\nIn some cases, some platforms can be\nimplemented entirely in Dart (for example, using FFI).\nFor a Dart-only platform implementation on a platform other than web,\nreplace the pluginClass in pubspec.yaml with a dartPluginClass.\nHere is the hello_windows example above modified for a\nDart-only implementation:\n\nflutter\n\nplugin\n\nimplements\n\nhello\n\nplatforms\n\nwindows\n\ndartPluginClass\n\nHelloPluginWindows\n\nIn this version you would have no C++ Windows code, and would instead\nsubclass the hello plugin\u2019s Dart platform interface class with a\nHelloPluginWindows class that includes a static\nregisterWith() method. This method is called during startup,\nand can be used to register the Dart implementation:\n\nclass\n\nHelloPluginWindows\n\nextends\n\nHelloPluginPlatform", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-24", "text": "HelloPluginWindows\n\nextends\n\nHelloPluginPlatform\n\n/// Registers this class as the default instance of [HelloPluginPlatform].\n\nstatic\n\nvoid\n\nregisterWith\n\n()\n\nHelloPluginPlatform\n\ninstance\n\nHelloPluginWindows\n\n();\n\nHybrid platform implementations\n\nPlatform implementations can also use both Dart and a platform-specific\nlanguage. For example, a plugin could use a different platform channel\nfor each platform so that the channels can be customized per platform.\n\nA hybrid implementation uses both of the registration systems\ndescribed above. Here is the hello_windows example above modified for a\nhybrid implementation:\n\nflutter\n\nplugin\n\nimplements\n\nhello\n\nplatforms\n\nwindows\n\ndartPluginClass\n\nHelloPluginWindows\n\npluginClass\n\nHelloPlugin", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-25", "text": "HelloPluginWindows\n\npluginClass\n\nHelloPlugin\n\nThe Dart HelloPluginWindows class would use the registerWith()\nshown above for Dart-only implementations, while the C++ HelloPlugin\nclass would be the same as in a C++-only implementation.\n\nTesting your plugin\n\nWe encourage you test your plugin with automated tests\nto ensure that functionality doesn\u2019t regress\nas you make changes to your code.\n\nTo learn more about testing your plugins,\ncheck out Testing plugins.\nIf you are writing tests for your Flutter app\nand plugins are causing crashes,\ncheck out Flutter in plugin tests.\n\nDeveloping FFI plugin packages\n\nIf you want to develop a package that calls into native APIs using\nDart\u2019s FFI, you need to develop an FFI plugin package.", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-26", "text": "Both FFI plugin packages and (non-FFI) plugin packages support\nbundling native code, but FFI plugin packages do not support\nmethod channels and do include method channel registration code.\nIf you want to implement a plugin that uses both method channels\nand FFI, use a (non-FFI) plugin. You can chose per platform to\nuse an FFI or (non-FFI) plugin.\n\nFFI plugin packages were introduced in Flutter 3.0, if you\u2019re\ntargeting older Flutter versions, you can use a (non-FFI) plugin.\n\nStep 1: Create the package\n\nTo create a starter FFI plugin package,\nuse the --template=plugin_ffi flag with flutter create:\n\nflutter create\n\n-template\n\n=plugin_ffi hello\n\nThis creates an FFI plugin project in the hello\nfolder with the following specialized content:", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-27", "text": "This creates an FFI plugin project in the hello\nfolder with the following specialized content:\n\nlib: The Dart code that defines the API of the plugin,\n and which calls into the native code using dart:ffi.\n\nsrc: The native source code, and a CmakeFile.txt\n file for building that source code into a dynamic library.\n\nplatform folders (android, ios, windows, etc.): The\n build files for building and bundling the native code\n library with the platform application.\n\nStep 2: Building and bundling native code\n\nThe pubspec.yaml specifies FFI plugins as follows:\n\nplugin\n\nplatforms\n\nsome_platform\n\nffiPlugin\n\ntrue\n\nThis configuration invokes the native build\nfor the various target platforms and bundles\nthe binaries in Flutter applications using these FFI plugins.", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-28", "text": "This can be combined with dartPluginClass,\nsuch as when FFI is used for the\nimplementation of one platform in a federated plugin:\n\nplugin\n\nimplements\n\nsome_other_plugin\n\nplatforms\n\nsome_platform\n\ndartPluginClass\n\nSomeClass\n\nffiPlugin\n\ntrue\n\nA plugin can have both FFI and method channels:\n\nplugin\n\nplatforms\n\nsome_platform\n\npluginClass\n\nSomeName\n\nffiPlugin\n\ntrue\n\nThe native build systems that are invoked by FFI\n(and method channels) plugins are:\n\nFor Android: Gradle, which invokes the Android NDK for native builds.\n \n See the documentation in android/build.gradle.", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-29", "text": "For iOS and macOS: Xcode, via CocoaPods.\n \n See the documentation in ios/hello.podspec.\n See the documentation in macos/hello.podspec.\n\nFor Linux and Windows: CMake.\n \n See the documentation in linux/CMakeLists.txt.\n See the documentation in windows/CMakeLists.txt.\n\nStep 3: Binding to native code\n\nTo use the native code, bindings in Dart are needed.\n\nTo avoid writing these by hand, they are generated from the header file\n(src/hello.h) by package:ffigen.\nRegenerate the bindings by running the following:\n\nflutter pub run ffigen\n\n-config ffigen.yaml\n\nStep 4: Invoking native code\n\nVery short-running native functions can be directly\ninvoked from any isolate.\nFor an example, see sum in lib/hello.dart.", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-30", "text": "Longer-running functions should be invoked on a\nhelper isolate to avoid dropping frames in\nFlutter applications.\nFor an example, see sumAsync in lib/hello.dart.\n\nAdding documentation\n\nIt is recommended practice to add the following documentation\nto all packages:\n\nA README.md file that introduces the package\n\nA CHANGELOG.md file that documents changes in each version\n\nA LICENSE file containing the terms under which the package\nis licensed\n\nAPI documentation for all public APIs (see below for details)\n\nAPI documentation\n\nWhen you publish a package,\nAPI documentation is automatically generated and\npublished to pub.dev/documentation.\nFor example, see the docs for device_info.\n\nIf you wish to generate API documentation locally on\nyour development machine, use the following commands:\n\nChange directory to the location of your package:\n\n \ncd ~/dev/mypackage", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-31", "text": "cd ~/dev/mypackage\n\nTell the documentation tool where the\n Flutter SDK is located (change the following commands to reflect\n where you placed it):\n\n \n export FLUTTER_ROOT=~/dev/flutter # on macOS or Linux\n\n set FLUTTER_ROOT=~/dev/flutter # on Windows\n\nRun the dartdoc tool\n (included as part of the Flutter SDK), as follows:\n\n \n $FLUTTER_ROOT/bin/cache/dart-sdk/bin/dartdoc # on macOS or Linux\n\n %FLUTTER_ROOT%\\bin\\cache\\dart-sdk\\bin\\dartdoc # on Windows\n\nFor tips on how to write API documentation, see\nEffective Dart Documentation.\n\nAdding licenses to the LICENSE file", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-32", "text": "Adding licenses to the LICENSE file\n\nIndividual licenses inside each LICENSE file\nshould be separated by 80 hyphens\non their own on a line.\n\nIf a LICENSE file contains more than one\ncomponent license, then each component\nlicense must start with the names of the\npackages to which the component license applies,\nwith each package name on its own line,\nand the list of package names separated from\nthe actual license text by a blank line.\n(The packages need not match the names of\nthe pub package. For example, a package might itself contain\ncode from multiple third-party sources,\nand might need to include a license for each one.)\n\nThe following example shows a well-organized license file:\n\nHere is another example of a well-organized license file:\n\nHere is an example of a poorly-organized license file:\n\nAnother example of a poorly-organized license file:\n\nPublishing your package", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-33", "text": "Publishing your package\n\nTip:\n Have you noticed that some of the packages and plugins\n on pub.dev are designated as Flutter Favorites?\n These are the packages published by verified developers\n and are identified as the packages and plugins you\n should first consider using when writing your app.\n To learn more,\n see the Flutter Favorites program.\n\nOnce you have implemented a package, you can publish it on\npub.dev, so that other developers can easily use it.\n\nPrior to publishing, make sure to review the pubspec.yaml,\nREADME.md, and CHANGELOG.md files to make sure their\ncontent is complete and correct. Also, to improve the\nquality and usability of your package (and to make it\nmore likely to achieve the status of a Flutter Favorite),\nconsider including the following items:\n\nDiverse code usage examples\n\nScreenshots, animated gifs, or videos\n\nA link to the corresponding code repository", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-34", "text": "A link to the corresponding code repository\n\nNext, run the publish command in dry-run mode\nto see if everything passes analysis:\n\nflutter pub publish\n\n-dry-run\n\nThe next step is publishing to pub.dev,\nbut be sure that you are ready because\npublishing is forever:\n\nflutter pub publish\n\nFor more details on publishing, see the\npublishing docs on dart.dev.\n\nHandling package interdependencies\n\nIf you are developing a package hello that depends on\nthe Dart API exposed by another package, you need to add\nthat package to the dependencies section of your\npubspec.yaml file. The code below makes the Dart API\nof the url_launcher plugin available to hello:\n\ndependencies\n\nurl_launcher\n\n^5.0.0", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-35", "text": "url_launcher\n\n^5.0.0\n\nYou can now import 'package:url_launcher/url_launcher.dart'\nand launch(someUrl) in the Dart code of hello.\n\nThis is no different from how you include packages in\nFlutter apps or any other Dart project.\n\nBut if hello happens to be a plugin package\nwhose platform-specific code needs access\nto the platform-specific APIs exposed by url_launcher,\nyou also need to add suitable dependency declarations\nto your platform-specific build files, as shown below.\n\nAndroid\n\nThe following example sets a dependency for\nurl_launcher in hello/android/build.gradle:\n\nandroid\n\n// lines skipped\n\ndependencies\n\ncompileOnly\n\nrootProject\n\nfindProject\n\n\":url_launcher\"", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-36", "text": "findProject\n\n\":url_launcher\"\n\nYou can now import io.flutter.plugins.urllauncher.UrlLauncherPlugin\nand access the UrlLauncherPlugin\nclass in the source code at hello/android/src.\n\nFor more information on build.gradle files, see the\nGradle Documentation on build scripts.\n\niOS\n\nThe following example sets a dependency for\nurl_launcher in hello/ios/hello.podspec:\n\nPod\n\n::\n\nSpec\n\nnew\n\ndo\n\n# lines skipped\n\ndependency\n\n'url_launcher'\n\nYou can now #import \"UrlLauncherPlugin.h\" and\naccess the UrlLauncherPlugin class in the source code\nat hello/ios/Classes.\n\nFor additional details on .podspec files, see the\nCocoaPods Documentation on them.\n\nWeb", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "9cbca39b081a-37", "text": "Web\n\nAll web dependencies are handled by the pubspec.yaml\nfile like any other Dart package.", "source": "https://docs.flutter.dev/development/packages-and-plugins/developing-packages/index.html"} {"id": "483e6748ad0b-0", "text": "Flutter Favorite program\n\nPackages & plugins\n\nFlutter Favorite program\n\nMetrics\n\nFlutter Ecosystem Committee\n\nFlutter Favorite usage guidelines\n\nWhat\u2019s next\n\nFlutter Favorites\n\nNote:\n Due to limited staffing resources,\n we are pausing the\n Flutter Favorites and Happy Path programs.\n We will update (and possibly combine)\n these programs as soon as possible.\n\nThe aim of the Flutter Favorite program is to identify\npackages and plugins that you should first consider when\nbuilding your app.\nThis is not a guarantee of quality or suitability to your\nparticular situation\u2014you should always perform your\nown evaluation of packages and plugins for your project.\n\nYou can see the complete list of\nFlutter Favorite packages on pub.dev.", "source": "https://docs.flutter.dev/development/packages-and-plugins/favorites/index.html"} {"id": "483e6748ad0b-1", "text": "You can see the complete list of\nFlutter Favorite packages on pub.dev.\n\nNote:\n Looking to add more functionality to your app?\n The Happy paths project guides you with\n opinionated recommendations for \n plugins and packages that can take your app\n to the next level.\n\nMetrics\n\nFlutter Favorite packages have passed high quality standards\nusing the following metrics:\n\nOverall package score\n\nPermissive license,\nincluding (but not limited to)\nApache, Artistic, BSD, CC BY, MIT, MS-PL and W3C\n\nGitHub version tag matches the current version from\npub.dev, so you can see exactly what source is in the package\n\nFeature completeness\u2014and not marked as incomplete\n(for example, with labels like \u201cbeta\u201d or \u201cunder construction\u201d)\n\nVerified publisher\n\nGeneral usability when it comes to the overview,\ndocs, sample/example code, and API quality", "source": "https://docs.flutter.dev/development/packages-and-plugins/favorites/index.html"} {"id": "483e6748ad0b-2", "text": "Good runtime behavior in terms of CPU and memory usage\n\nHigh quality dependencies\n\nFlutter Ecosystem Committee\n\nThe Flutter Ecosystem Committee is comprised of Flutter\nteam members and Flutter community members spread\nacross its ecosystem.\nOne of their jobs is to decide when a package\nhas met the quality bar to become a Flutter Favorite.\n\nThe current committee members\n(ordered alphabetically by last name)\nare as follows:\n\nPooja Bhaumik\n\nHillel Coren\n\nSimon Lightfoot\n\nLara Mart\u00edn\n\nJohn Ryan\n\nDiego Velasquez\n\nKyle Wang\n\nIf you\u2019d like to nominate a package or plugin as a\npotential future Flutter Favorite, or would like\nto bring any other issues to the attention of the committee,\nsend the committee an email.\n\nFlutter Favorite usage guidelines", "source": "https://docs.flutter.dev/development/packages-and-plugins/favorites/index.html"} {"id": "483e6748ad0b-3", "text": "Flutter Favorite usage guidelines\n\nFlutter Favorite packages are labeled as such on pub.dev\nby the Flutter team.\nIf you own a package that has been designated as a Flutter Favorite,\nyou must adhere to the following guidelines:\n\nFlutter Favorite package authors may place the Flutter Favorite\nlogo in the package\u2019s GitHub README, on the package\u2019s\npub.dev Overview tab,\nand on social media as related to posts about that package.\n\nWe encourage you to use the #FlutterFavorite\nhashtag in social media.\n\nWhen using the Flutter Favorite logo,\nthe author must link to (this) Flutter Favorite landing page,\nto provide context for the designation.", "source": "https://docs.flutter.dev/development/packages-and-plugins/favorites/index.html"} {"id": "483e6748ad0b-4", "text": "If a Flutter Favorite package loses its Flutter Favorite status,\nthe author will be notified,\nat which point the author must immediately remove all uses\nof \u201cFlutter Favorite\u201d and the Flutter Favorite logo from\nthe affected package.\n\nDon\u2019t alter, distort,\nor modify the Flutter Favorite logo in any way,\nincluding displaying the logo with color variations\nor unapproved visual elements.\n\nDon\u2019t display the Flutter Favorite logo in a manner that\nis misleading, unfair, defamatory, infringing, libelous,\ndisparaging, obscene, or otherwise objectionable to Google.\n\nWhat\u2019s next", "source": "https://docs.flutter.dev/development/packages-and-plugins/favorites/index.html"} {"id": "483e6748ad0b-5", "text": "What\u2019s next\n\nYou should expect the list of Flutter Favorite packages\nto grow and change as the ecosystem continues to thrive.\nThe committee will continue working with package authors\nto increase quality, as well as consider other areas of the\necosystem that could benefit from the Flutter Favorite program,\nsuch as tools, consulting firms, and prolific Flutter contributors.\n\nAs the Flutter ecosystem grows,\nwe\u2019ll be looking at expanding the set of metrics,\nwhich might include the following:\n\nUse of the new pubspec.yaml format that clearly\nindicates which platforms are supported.\n\nSupport for the latest stable version of Flutter.\n\nSupport for AndroidX.\n\nSupport for multiple platforms, such as web, macOS,\nWindows, Linux, etc.\n\nIntegration as well as unit test coverage.\n\nFlutter Favorites", "source": "https://docs.flutter.dev/development/packages-and-plugins/favorites/index.html"} {"id": "483e6748ad0b-6", "text": "Integration as well as unit test coverage.\n\nFlutter Favorites\n\nYou can see the complete list of\nFlutter Favorite packages on pub.dev.", "source": "https://docs.flutter.dev/development/packages-and-plugins/favorites/index.html"} {"id": "c59ce75ad41c-0", "text": "Happy paths project\n\nPackages & plugins\n\nHappy paths project\n\nNote:\n Due to limited staffing resources,\n we are pausing the\n Flutter Favorites and Happy Path programs.\n We will update (and possibly combine)\n these programs as soon as possible.\n\nOnce you\u2019ve learned Flutter basics and are ready to move on\nto developing more advanced apps, how do you make that leap?\nThe pub.dev website lists thousands of packages and plugins\nfor Dart and Flutter.\n\nSo how do you choose?\n\nPerhaps you suffer from analysis paralysis.", "source": "https://docs.flutter.dev/development/packages-and-plugins/happy-paths/index.html"} {"id": "c59ce75ad41c-1", "text": "Perhaps you suffer from analysis paralysis.\n\nThe Happy paths project is here to help.\nWe\u2019ve created Happy paths recommendations to help \nyou make informed decisions on how to add various\ntypes of functionality to your app.\nThere are many packages that can help you achieve your goals, \nbut we wanted to provide some guidance for newer Flutter\ndevelopers as you ramp up to building larger and more complex apps.\nKeep in mind that these are not the only paths that you can choose,\nbut are solutions that we can recommend.\n\nIn future, we plan to add more happy path recommendations\nfor different areas of functionality. If there\u2019s a specific\nhappy path recommendation that you would like to see, \nfile an issue to let us know.\n\nAds\n Monetize your mobile app with in-app ads.\n\nBackground processing\n Enable headless execution of Dart code.\n\nGeolocation\n Determine a user's location for enhanced app functionality.", "source": "https://docs.flutter.dev/development/packages-and-plugins/happy-paths/index.html"} {"id": "c59ce75ad41c-2", "text": "Geolocation\n Determine a user's location for enhanced app functionality.\n\nImmutable data\n Handle immutable data structures.\n\nStructured local storage\n Maintain and preserve data.\n\nWeb sockets\n Handle client and server connections.", "source": "https://docs.flutter.dev/development/packages-and-plugins/happy-paths/index.html"} {"id": "b0b4e36649ae-0", "text": "Happy paths recommendations\n\nPackages & plugins\n\nHappy paths project\n\nHappy paths recommendations\n\nAds\n\nBackground processing\n\nGeolocation\n\nImmutable data\n\nStructured local storage\n\nWeb sockets\n\nAds\n\nAre you looking to monetize your mobile app?\nYou can do that by adding in-app ads using the\ngoogle_mobile_ads package. You\u2019ll need to register a free \naccount with AdMob and you can then leverage\none or more AdMob features, including the following:\n\nSeveral ad formats: Banner, full-screen, native, and rewarded.\n\nControl over when ads display. For example,\nin between levels of a game, after completing a task,\nor before starting a new game\n\nMonetization reports to help you make decisions about your app.\n\nUseful links", "source": "https://docs.flutter.dev/development/packages-and-plugins/happy-paths/recommended/index.html"} {"id": "b0b4e36649ae-1", "text": "Useful links\n\nGet started with the AdMob guide\n\nCreate an AdMob account tutorial\n\ngoogle_mobile_ads package on pub.dev\n\nBackground processing\n\nThe background processing path shows you how to\nrun a Dart function in the background on mobile devices.\nWith background processing, \nyou can perform tasks like making an HTTP request,\nrunning an expensive calculation,\nor displaying a notification in another isolate\n(similar to a lightweight thread).\n\nThere are a of couple ways to incorporate background processing \ninto your mobile app. One way is through a Dart isolate. \nWith a Dart isolate, you can create a separate thread to \nrun tasks concurrently in the background.\n\nAnother way to incorporate background processing is through the \nWorkManager plugin. \nWith this plugin, you can enable persistent headless execution of Dart code.\nYour tasks remain scheduled through app restarts and system reboots.", "source": "https://docs.flutter.dev/development/packages-and-plugins/happy-paths/recommended/index.html"} {"id": "b0b4e36649ae-2", "text": "Is there a difference between a package and a plugin?\n Yes, there is! Both are packages,\n but a plugin is a type of package that contains \n platform-specific code (such as Kotlin, Java, Swift, Objective C)\n that communicates with the underlying platform.\n For more information, see Using packages.\n\nSome features of WorkManager include:\n\nPersistent work handling\n\nFlexible scheduling\n\nAbility to apply constraints on jobs like checking for a network connection, \nonly running when the device is charging, or only running when a device is \nidle (Android only)\n\nUseful links\n\nAndroid setup\n\niOS setup\n\nDart concurrency\n\nGeolocation", "source": "https://docs.flutter.dev/development/packages-and-plugins/happy-paths/recommended/index.html"} {"id": "b0b4e36649ae-3", "text": "iOS setup\n\nDart concurrency\n\nGeolocation\n\nGeolocation, the ability to determine where in\nthe world a user is located, is critical functionality\nfor many applications; for example, shopping apps need \nto calculate shipping, fitness apps need to track\ndistance traveled, and so on. \nThe plugins in Flutter\u2019s ecosystem offer a number\nof features to help build these experiences.\n\nA plugin that provides this functionality is the \ngeolocator plugin, rated as a Flutter favorite. \nWith this plugin, you can check and request permission,\nfetch a one-time location, and even provide a stream\nof constantly updated values as a user moves about.\n\nFeatures include:\n\nAbility to get a device\u2019s current location\n\nReceive location updates\n\nAbility to determine whether a devices\u2019s\nlocation services are enabled\n\nUseful links", "source": "https://docs.flutter.dev/development/packages-and-plugins/happy-paths/recommended/index.html"} {"id": "b0b4e36649ae-4", "text": "Useful links\n\nHow to get a user\u2019s location with the\ngeolocator plugin tutorial\n\ngeolocator plugin\n\nImmutable data\n\nFor an easy way to represent immutable application data, \ncheck out two plugins that provide ways to handle and manipulate \nimmutable data: freezed and json_serializable,\nboth rated as Flutter favorites.\n\nThese plugins can be used independently, \nbut are also great when used together. \nThe freezed package handles in-memory objects \nand json_serializable maps those immutable \nobjects to and from the JSON format.\n\nUseful links\n\nFreezed\n \n \nfreezed package video\n \nfreezed package\n\njson_serializable\n \n Serializing JSON using json_serializable\n \njson_serializable example on GitHub\n \njson_serializable package\n\nStructured local storage", "source": "https://docs.flutter.dev/development/packages-and-plugins/happy-paths/recommended/index.html"} {"id": "b0b4e36649ae-5", "text": "Structured local storage\n\nStructured local storage increases app performance and\nimproves the user experience by selectively saving expensive\nor slow data on a user\u2019s device. \nThis path suggests two plugins for local persistence:\ndrift and hive. \nWhich plugin you choose depends on your needs.\n\nDrift, rated a Flutter favorite,\noffers a fully-typed object relational mapping (ORM)\naround SQLite, with support on all Flutter platforms.\nDevelopers who require a fully relational database on\ntheir users\u2019 device will benefit most from this package.\n\nHive offers a fully-typed object document mapping (ODM)\naround a custom storage solution, with support on all\nFlutter platforms. Developers who do not require a fully\nrelational database, especially if they use document-based\nstorage on their server (like Cloud Firestore)\nwill benefit most from this package.\n\nUseful links", "source": "https://docs.flutter.dev/development/packages-and-plugins/happy-paths/recommended/index.html"} {"id": "b0b4e36649ae-6", "text": "Useful links\n\nDrift:\n \n \nThe boring flutter development show using Drift video\n \nFluent sqlite database video that references Drift\u2019s\nprevious name, Moor\n \ndrift package\n\nHive:\n \n \nHive NoSQL Database IN 16 Minutes video\n \nhive package\n\nWeb sockets\n\nWeb sockets enable communication between Flutter clients and servers. \nThis path suggests two packages to use when installing\nand using web sockets.\n\nUse the web_socket_channel package for client-side\nweb socket connections,\nand the web_socket_connections package \nfor server-side Dart web sockets.\n\nUseful links\n\nweb_socket_channel:\n \n \nWork with WebSockets cookbook recipe\n \nweb_socket_channel package\n\nshelf_web_socket\n \n \nshelf_web_socket example\n \nshelf_web_socket package", "source": "https://docs.flutter.dev/development/packages-and-plugins/happy-paths/recommended/index.html"} {"id": "bf90ee36c503-0", "text": "Packages & plugins\n\nPackages & plugins\n\nTopics:\n\nBackground processes\n\nDeveloping packages & plugins\n\nFlutter Favorites program\n\nHappy paths project\n\nHappy paths recommendations\n\nPlugins in Flutter tests\n\nUsing packages\n\nPackage site", "source": "https://docs.flutter.dev/development/packages-and-plugins/index.html"} {"id": "e8880d00d32d-0", "text": "Plugins in Flutter tests\n\nPackages & plugins\n\nPlugin tests\n\nWrap the plugin\n\nMock the plugin\u2019s public API\n\nMock the plugin\u2019s platform interface\n\nMock the platform channel\n\nNote:\n To learn how to avoid crashes from a plugin when\n testing your Flutter app, read on.\n To learn how to test your plugin code, check out\n Testing plugins.\n\nAlmost all Flutter plugins have two parts:\n\nDart code, which provides the API your code calls.\n\nCode written in a platform-specific (or \u201chost\u201d) language,\nsuch as Kotlin or Swift, which implements those APIs.\n\nIn fact, the native (or host) language code distinguishes\na plugin package from a standard package.", "source": "https://docs.flutter.dev/development/packages-and-plugins/plugins-in-tests/index.html"} {"id": "e8880d00d32d-1", "text": "Building and registering the host portion of a plugin\nis part of the Flutter application build process,\nso plugins only work when your code is running\nin your application, such as with flutter run\nor when running integration tests.\nWhen running Dart unit tests or\nwidget tests, the host code isn\u2019t available.\nIf the code you are testing calls any plugins,\nthis often results in errors like the following:\n\nMissingPluginException(No implementation found for method someMethodName on channel some_channel_name)\n\nNote:\n Plugin implementations that only use Dart\n will work in unit tests. This is an implementation\n detail of the plugin, however,\n so tests shouldn\u2019t rely on it.\n\nWhen unit testing code that uses plugins,\nthere are several options to avoid this exception.\nThe following solutions are listed in order of preference.\n\nWrap the plugin\n\nIn most cases, the best approach is to wrap plugin\ncalls in your own API,\nand provide a way of mocking your own API in tests.", "source": "https://docs.flutter.dev/development/packages-and-plugins/plugins-in-tests/index.html"} {"id": "e8880d00d32d-2", "text": "This has several advantages:\n\nIf the plugin API changes,\nyou won\u2019t need to update your tests.\n\nYou are only testing your own code,\nso your tests can\u2019t fail due to behavior of\na plugin you\u2019re using.\n\nYou can use the same approach regardless of\nhow the plugin is implemented,\nor even for non-plugin package dependencies.\n\nMock the plugin\u2019s public API\n\nIf the plugin\u2019s API is already based on class instances,\nyou can mock it directly, with the following caveats:\n\nThis won\u2019t work if the plugin uses\nnon-class functions or static methods.\n\nTests will need to be updated when\nthe plugin API changes.\n\nMock the plugin\u2019s platform interface\n\nIf the plugin is a federated plugin,\nit will include a platform interface that allows\nregistering implementations of its internal logic.\nYou can register a mock of that platform interface\nimplementation instead of the public API with the\nfollowing caveats:", "source": "https://docs.flutter.dev/development/packages-and-plugins/plugins-in-tests/index.html"} {"id": "e8880d00d32d-3", "text": "This won\u2019t work if the plugin isn\u2019t federated.\n\nYour tests will include part of the plugin\u2019s code,\nso plugin behavior could cause problems for your tests.\nFor instance, if a plugin writes files as part of an\ninternal cache, your test behavior might change\nbased on whether you had run the test previously.\n\nTests might need to be updated when the platform interface changes.\n\nAn example of when this might be necessary is\nmocking the implementation of a plugin used by\na package that you rely on,\nrather than your own code,\nso you can\u2019t change how it\u2019s called.\nHowever, if possible,\nyou should mock the dependency that uses the plugin instead.\n\nMock the platform channel\n\nIf the plugin uses platform channels,\nyou can mock the platform channels using\nTestDefaultBinaryMessenger.\nThis should only be used if, for some reason,\nnone of the methods above are available,\nas it has several drawbacks:", "source": "https://docs.flutter.dev/development/packages-and-plugins/plugins-in-tests/index.html"} {"id": "e8880d00d32d-4", "text": "Only implementations that use platform channels\ncan be mocked. This means that if some implementations\ndon\u2019t use platform channels,\nyour tests will unexpectedly use\nreal implementations when run on some platforms.\n\nPlatform channels are usually internal implementation\ndetails of plugins.\nThey might change substantially even\nin a bugfix update to a plugin,\nbreaking your tests unexpectedly.\n\nPlatform channels might differ in each implementation\nof a federated plugin. For instance,\nyou might set up mock platform channels to\nmake tests pass on a Windows machine,\nthen find that they fail if run on macOS or Linux.\n\nPlatform channels aren\u2019t strongly typed.\nFor example, method channels often use dictionaries\nand you have to read the plugin\u2019s implementation\nto know what the key strings and value types are.\n\nBecause of these limitations, TestDefaultBinaryMessenger\nis mainly useful in the internal tests\nof plugin implementations,\nrather than tests of code using plugins.\n\nYou might also want to check out\nTesting plugins.", "source": "https://docs.flutter.dev/development/packages-and-plugins/plugins-in-tests/index.html"} {"id": "8860b73b8ec4-0", "text": "Using packages\n\nPackages & plugins\n\nUsing packages\n\nUsing packages\n\nSearching for packages\nAdding a package dependency to an app\nAdding a package dependency to an app using flutter pub add\nRemoving a package dependency to an app using flutter pub remove\nConflict resolution\n\nDeveloping new packages\n\nManaging package dependencies and versions\n\nPackage versions\nUpdating package dependencies\nDependencies on unpublished packages\n\nExamples\n\nExample: Using the css_colors package\nExample: Using the url_launcher package to launch the browser\n\nFlutter supports using shared packages contributed by other developers\nto the Flutter and Dart ecosystems. This allows quickly building\nan app without having to develop everything from scratch.\n\nWhat is the difference between a package\n and a plugin? A plugin is a type of\n package\u2014the full designation is plugin package,\n which is generally shortened to plugin.", "source": "https://docs.flutter.dev/development/packages-and-plugins/using-packages/index.html"} {"id": "8860b73b8ec4-1", "text": "At a minimum, a Dart package is a directory\ncontaining a pubspec.yaml file. Additionally,\na package can contain dependencies\n(listed in the pubspec), Dart libraries, apps,\nresources, tests, images, fonts, and examples.\nThe pub.dev site lists many packages\u2014developed by Google engineers\nand generous members of the Flutter and Dart community\u2014\nthat you can use in your app.\n\nA plugin package is a special kind of package that makes\nplatform functionality available to the app.\nPlugin packages can be written for Android (using Kotlin or Java),\niOS (using Swift or Objective-C), web, macOS, Windows, Linux,\nor any combination thereof.\nFor example, a plugin might provide Flutter apps\nwith the ability to use a device\u2019s camera.", "source": "https://docs.flutter.dev/development/packages-and-plugins/using-packages/index.html"} {"id": "8860b73b8ec4-2", "text": "Existing packages enable many use cases\u2014for example,\nmaking network requests (http),\nnavigation/route handling (go_router),\nintegration with device APIs\n(url_launcher and battery_plus),\nand using third-party platform SDKs like Firebase\n(FlutterFire).\n\nTo write a new package, see developing packages.\nTo add assets, images, or fonts,\nwhether stored in files or packages,\nsee Adding assets and images.\n\nUsing packages\n\nThe following section describes how to use\nexisting published packages.\n\nSearching for packages\n\nPackages are published to pub.dev.\n\nThe Flutter landing page on pub.dev displays\ntop packages that are compatible with Flutter\n(those that declare dependencies generally compatible with Flutter),\nand supports searching among all published packages.", "source": "https://docs.flutter.dev/development/packages-and-plugins/using-packages/index.html"} {"id": "8860b73b8ec4-3", "text": "The Flutter Favorites page on pub.dev lists\nthe plugins and packages that have been identified as\npackages you should first consider using when writing\nyour app. For more information on what it means to\nbe a Flutter Favorite, see the\nFlutter Favorites program.\n\nAndroid,\n\niOS,\n\nweb,\n\nLinux,\n\nWindows,\n\nmacOS,\nor any combination thereof.\n\nAdding a package dependency to an app\n\nTo add the package, css_colors, to an app:\n\nDepend on it\n \n Open the pubspec.yaml file located inside the app folder,\nand add css_colors: under dependencies.\n\nInstall it\n \n From the terminal: Run flutter pub get.\nOR", "source": "https://docs.flutter.dev/development/packages-and-plugins/using-packages/index.html"} {"id": "8860b73b8ec4-4", "text": "Install it\n \n From the terminal: Run flutter pub get.\nOR\n\n From VS Code: Click Get Packages located in right side of the action\nribbon at the top of pubspec.yaml indicated by the Download icon.\n From Android Studio/IntelliJ: Click Pub get in the action\nribbon at the top of pubspec.yaml.\n\nImport it\n \n Add a corresponding import statement in the Dart code.\n\nStop and restart the app, if necessary\n \n If the package brings platform-specific code\n(Kotlin/Java for Android, Swift/Objective-C for iOS),\nthat code must be built into your app.\nHot reload and hot restart only update the Dart code,\nso a full restart of the app might be required to avoid\nerrors like MissingPluginException when using the package.\n\nAdding a package dependency to an app using flutter pub add\n\nTo add the package, css_colors, to an app:", "source": "https://docs.flutter.dev/development/packages-and-plugins/using-packages/index.html"} {"id": "8860b73b8ec4-5", "text": "To add the package, css_colors, to an app:\n\nIssue the command while being inside the project directory\n \n flutter pub add css_colors\n\nImport it\n \n Add a corresponding import statement in the Dart code.\n\nStop and restart the app, if necessary\n \n If the package brings platform-specific code\n(Kotlin/Java for Android, Swift/Objective-C for iOS),\nthat code must be built into your app.\nHot reload and hot restart only update the Dart code,\nso a full restart of the app might be required to avoid\nerrors like MissingPluginException when using the package.\n\nRemoving a package dependency to an app using flutter pub remove\n\nTo remove the package, css_colors, to an app:\n\nIssue the command while being inside the project directory\n \n flutter pub remove css_colors\n\nThe Installing tab,\navailable on any package page on pub.dev,\nis a handy reference for these steps.", "source": "https://docs.flutter.dev/development/packages-and-plugins/using-packages/index.html"} {"id": "8860b73b8ec4-6", "text": "For a complete example,\nsee the css_colors example below.\n\nConflict resolution\n\nSuppose you want to use some_package and\nanother_package in an app,\nand both of these depend on url_launcher,\nbut in different versions.\nThat causes a potential conflict.\nThe best way to avoid this is for package authors to use\nversion ranges rather than specific versions when\nspecifying dependencies.\n\ndependencies\n\nurl_launcher\n\n^5.4.0\n\n# Good, any version >= 5.4.0 but < 6.0.0\n\nimage_picker\n\n5.4.3'\n\n# Not so good, only version 5.4.3 works.\n\nGradle modules and/or\n\nCocoaPods\nare solved in a similar way.", "source": "https://docs.flutter.dev/development/packages-and-plugins/using-packages/index.html"} {"id": "8860b73b8ec4-7", "text": "CocoaPods\nare solved in a similar way.\n\nEven if some_package and another_package\ndeclare incompatible versions for url_launcher,\nthey might actually use url_launcher in\ncompatible ways. In this situation,\nthe conflict can be resolved by adding\na dependency override declaration to the app\u2019s\npubspec.yaml file, forcing the use of a particular version.\n\nFor example, to force the use of url_launcher version 5.4.0,\nmake the following changes to the app\u2019s pubspec.yaml file:\n\ndependencies\n\nsome_package\n\nanother_package\n\ndependency_overrides\n\nurl_launcher\n\n5.4.0'\n\nIf the conflicting dependency is not itself a package,\nbut an Android-specific library like guava,\nthe dependency override declaration must be added to\nGradle build logic instead.", "source": "https://docs.flutter.dev/development/packages-and-plugins/using-packages/index.html"} {"id": "8860b73b8ec4-8", "text": "To force the use of guava version 28.0, make the following\nchanges to the app\u2019s android/build.gradle file:\n\nconfigurations\n\nall\n\nresolutionStrategy\n\nforce\n\n'com.google.guava:guava:28.0-android'\n\nCocoaPods doesn\u2019t currently offer dependency\noverride functionality.\n\nDeveloping new packages\n\nIf no package exists for your specific use case,\nyou can write a custom package.\n\nManaging package dependencies and versions\n\nTo minimize the risk of version collisions,\nspecify a version range in the pubspec.yaml file.\n\nPackage versions\n\nAll packages have a version number, specified in the\npackage\u2019s pubspec.yaml file. The current version of a package\nis displayed next to its name (for example,\nsee the url_launcher package), as\nwell as a list of all prior versions\n(see url_launcher versions).", "source": "https://docs.flutter.dev/development/packages-and-plugins/using-packages/index.html"} {"id": "8860b73b8ec4-9", "text": "To ensure that the app doesn\u2019t break when a\npackage is updated,\nspecify a version range using one of the\nfollowing formats:\n\nRange constraints: Specify a minimum and maximum version. For example:\n\n \ndependencies:\n url_launcher: '>=5.4.0 <6.0.0'\n\nRange constraints with caret syntax\nare similar to regular range constraints:\n\n \ndependencies:\n collection: '^5.4.0'\n\nFor additional details,\nsee the package versioning guide.\n\nUpdating package dependencies\n\nWhen running flutter pub get \nfor the first time after adding a package,\nFlutter saves the concrete package version found in the pubspec.lock\nlockfile. This ensures that you get the same version again\nif you, or another developer on your team, run flutter pub get.", "source": "https://docs.flutter.dev/development/packages-and-plugins/using-packages/index.html"} {"id": "8860b73b8ec4-10", "text": "To upgrade to a new version of the package,\nfor example to use new features in that package,\nrun flutter pub upgrade\nto retrieve the highest available version of the package\nthat is allowed by the version constraint specified in\npubspec.yaml.\nNote that this is a different command from\nflutter upgrade or flutter update-packages,\nwhich both update Flutter itself.\n\nDependencies on unpublished packages\n\nPackages can be used even when not published on pub.dev.\nFor private packages, or for packages not ready for publishing,\nadditional dependency options are available:\n\nA Flutter app can depend on a package using a file system\npath: dependency. The path can be either relative or absolute.\nRelative paths are evaluated relative to the directory\ncontaining pubspec.yaml. For example, to depend on a\npackage, packageA, located in a directory next to the app,\nuse the following syntax:\n\n \n dependencies:\n packageA:\n path: ../packageA/", "source": "https://docs.flutter.dev/development/packages-and-plugins/using-packages/index.html"} {"id": "8860b73b8ec4-11", "text": "dependencies:\n packageA:\n path: ../packageA/\n\nYou can also depend on a package stored in a Git repository.\nIf the package is located at the root of the repo,\nuse the following syntax:\n\n \n dependencies:\n packageA:\n git:\n url: https://github.com/flutter/packageA.git\n\nIf the repository is private and you can connect to it using SSH,\ndepend on the package by using the repo\u2019s SSH url:\n\n \n dependencies:\n packageA:\n git:\n url: git@github.com:flutter/packageA.git\n\nPub assumes the package is located in\nthe root of the Git repository. If that isn\u2019t\nthe case, specify the location with the path argument.\nFor example:\n\n \ndependencies:\n packageA:\n git:\n url: https://github.com/flutter/packages.git\n path: packages/packageA", "source": "https://docs.flutter.dev/development/packages-and-plugins/using-packages/index.html"} {"id": "8860b73b8ec4-12", "text": "Finally, use the ref argument to pin the dependency to a\nspecific git commit, branch, or tag. For more details, see\nPackage dependencies.\n\nExamples\n\nThe following examples walk through the necessary steps for\nusing packages.\n\nExample: Using the css_colors package\n\nThe css_colors package\ndefines color constants for CSS colors, so use the constants\nwherever the Flutter framework expects the Color type.\n\nTo use this package:\n\nCreate a new project called cssdemo.\n\nOpen pubspec.yaml, and add the css-colors dependency:\n\n \ndependencies:\n flutter:\n sdk: flutter\n css_colors: ^1.0.0\n\nRun flutter pub get in the terminal,\nor click Get Packages in VS Code.\n\nOpen lib/main.dart and replace its full contents with:", "source": "https://docs.flutter.dev/development/packages-and-plugins/using-packages/index.html"} {"id": "8860b73b8ec4-13", "text": "Open lib/main.dart and replace its full contents with:\n\n \n import 'package:css_colors/css_colors.dart';\n import 'package:flutter/material.dart';\n\n void main() {\n runApp(const MyApp());\n }\n\n class MyApp extends StatelessWidget {\n const MyApp({super.key});\n\n @override\n Widget build(BuildContext context) {\n return const MaterialApp(\n home: DemoPage(),\n );\n }\n }\n\n class DemoPage extends StatelessWidget {\n const DemoPage({super.key});\n\n @override\n Widget build(BuildContext context) {\n return Scaffold(body: Container(color: CSSColors.orange));\n }\n }\n\nRun the app. The app\u2019s background should now be orange.\n\nExample: Using the url_launcher package to launch the browser", "source": "https://docs.flutter.dev/development/packages-and-plugins/using-packages/index.html"} {"id": "8860b73b8ec4-14", "text": "Example: Using the url_launcher package to launch the browser\n\nThe url_launcher plugin package enables opening\nthe default browser on the mobile platform to display\na given URL, and is supported on Android, iOS, web,\nWindows, Linux, and macos.\nThis package is a special Dart package called a\nplugin package (or plugin),\nwhich includes platform-specific code.\n\nTo use this plugin:\n\nCreate a new project called launchdemo.\n\nOpen pubspec.yaml, and add the url_launcher dependency:\n\n \ndependencies:\n flutter:\n sdk: flutter\n url_launcher: ^5.4.0\n\nRun flutter pub get in the terminal,\nor click Get Packages get in VS Code.\n\nOpen lib/main.dart and replace its full contents with the\nfollowing:", "source": "https://docs.flutter.dev/development/packages-and-plugins/using-packages/index.html"} {"id": "8860b73b8ec4-15", "text": "Open lib/main.dart and replace its full contents with the\nfollowing:\n\n \n import 'package:flutter/material.dart';\n import 'package:path/path.dart' as p;\n import 'package:url_launcher/url_launcher.dart';\n\n void main() {\n runApp(const MyApp());\n }\n\n class MyApp extends StatelessWidget {\n const MyApp({super.key});\n\n @override\n Widget build(BuildContext context) {\n return const MaterialApp(\n home: DemoPage(),\n );\n }\n }\n\n class DemoPage extends StatelessWidget {\n const DemoPage({super.key});\n\n launchURL() {\n launchUrl(p.toUri('https://flutter.dev'));\n }", "source": "https://docs.flutter.dev/development/packages-and-plugins/using-packages/index.html"} {"id": "8860b73b8ec4-16", "text": "@override\n Widget build(BuildContext context) {\n return Scaffold(\n body: Center(\n child: ElevatedButton(\n onPressed: launchURL,\n child: const Text('Show Flutter homepage'),\n ),\n ),\n );\n }\n }\n\nRun the app (or stop and restart it, if it was already running\nbefore adding the plugin). Click Show Flutter homepage.\nYou should see the default browser open on the device,\ndisplaying the homepage for flutter.dev.", "source": "https://docs.flutter.dev/development/packages-and-plugins/using-packages/index.html"} {"id": "f102d2552c53-0", "text": "AndroidX migration\n\nPlatform integration\n\nAndroid\n\nAndroidX migration\n\nCommon Questions\n\nHow do I migrate my existing app, plugin or host-editable module project to AndroidX?\nWhat if I can\u2019t use Android Studio?\nAdd to app\nHow do I know if my project is using AndroidX?\nWhat if I don\u2019t migrate my app or module to AndroidX?\nWhat if my app is migrated to AndroidX, but not all of the plugins I use?\nI\u2019m having issues migrating to AndroidX\n\nNote:\n You might be directed to this page if Flutter detects\n that your project doesn\u2019t use AndroidX.\n\nAndroidX is a major improvement\nto the original Android Support Library.\n\nIt provides the androidx.* package libraries,\nunbundled from the platform API. This means that it\noffers backward compatibility and is updated\nmore frequently than the Android platform.\n\nCommon Questions", "source": "https://docs.flutter.dev/development/platform-integration/android/androidx-migration/index.html"} {"id": "f102d2552c53-1", "text": "Common Questions\n\nHow do I migrate my existing app, plugin or host-editable module project to AndroidX?\n\nYou will need Android Studio 3.2 or higher.\nIf you don\u2019t have it installed,\nyou can download the latest version from the\nAndroid Studio site.\n\nOpen Android Studio.\n\nSelect Open an existing Android Studio Project.\n\nOpen the android directory within your app.\n\nWait until the project has been synced successfully.\n(This happens automatically once you open the project,\nbut if it doesn\u2019t, select Sync Project with Gradle Files\nfrom the File menu).\n\nSelect Migrate to AndroidX from the Refactor menu.\n\nIf you are asked to backup the project before proceeding,\ncheck Backup project as Zip file, then click Migrate.\nLastly, save the zip file in your location of preference.\n\nThe refactoring preview shows the list of changes.\nFinally, click Do Refactor:", "source": "https://docs.flutter.dev/development/platform-integration/android/androidx-migration/index.html"} {"id": "f102d2552c53-2", "text": "The refactoring preview shows the list of changes.\nFinally, click Do Refactor:\n\nThat is it! You successfully migrated your project to AndroidX.\n\nFinally, if you migrated a plugin,\npublish the new AndroidX version to pub and update\nyour CHANGELOG.md to indicate that this new version\nis compatible with AndroidX.\n\nWhat if I can\u2019t use Android Studio?\n\nYou can create a new project using the Flutter tool\nand then move the Dart code and\nassets to the new project.\n\nTo create a new project run:\n\nt \n\nAdd to app\n\nIf your Flutter project is a module type for adding\nto an existing Android app, and contains a\n.android directory, add the following line to pubspec.yaml:\n\nmodule\n\n...\n\nandroidX\n\ntrue\n\n# Add this line.", "source": "https://docs.flutter.dev/development/platform-integration/android/androidx-migration/index.html"} {"id": "f102d2552c53-3", "text": "androidX\n\ntrue\n\n# Add this line.\n\nFinally, run flutter clean.\n\nIf your module contains an android directory instead,\nthen follow the steps in previous section.\n\nHow do I know if my project is using AndroidX?\n\nStarting from Flutter v1.12.13, new projects created with\nflutter create -t \nuse AndroidX by default.\n\nProjects created prior to this Flutter version\nmustn\u2019t depend on any old build artifact or\nold Support Library class.\n\nIn an app or module project,\nthe file android/gradle.properties\nor .android/gradle.properties\nmust contain:\n\nWhat if I don\u2019t migrate my app or module to AndroidX?", "source": "https://docs.flutter.dev/development/platform-integration/android/androidx-migration/index.html"} {"id": "f102d2552c53-4", "text": "What if I don\u2019t migrate my app or module to AndroidX?\n\nYour app might continue to work. However,\ncombining AndroidX and Support artifacts\nis generally not recommended because it can\nresult in dependency conflicts or\nother kind of Gradle failures.\nAs a result, as more plugins migrate to AndroidX,\nplugins depending on Android core libraries are likely\nto cause build failures.\n\nWhat if my app is migrated to AndroidX, but not all of the plugins I use?\n\nThe Flutter tool uses Jetifier to automatically\nmigrate Flutter plugins using the Support Library\nto AndroidX, so you can use the same plugins even\nif they haven\u2019t been migrated to AndroidX yet.\n\nI\u2019m having issues migrating to AndroidX\n\nOpen an issue on GitHub and add [androidx-migration]\nto the title of the issue.", "source": "https://docs.flutter.dev/development/platform-integration/android/androidx-migration/index.html"} {"id": "36b1c9570a0a-0", "text": "Binding to native Android code using dart:ffi\n\nPlatform integration\n\nAndroid\n\nBinding to native Android code using dart:ffi\n\nDynamic vs static linking\n\nStep 1: Create a plugin\n\nStep 2: Add C/C++ sources\n\nStep 3: Load the code using the FFI library\n\nOther use cases\n\nPlatform library\n\nFirst-party library\nOpen-source third-party\nClosed-source third-party library\n\nAndroid APK size (shared object compression)\n\nFlutter mobile and desktop apps can use the\ndart:ffi library to call native C APIs.\nFFI stands for foreign function interface.\nOther terms for similar functionality include\nnative interface and language bindings.", "source": "https://docs.flutter.dev/development/platform-integration/android/c-interop/index.html"} {"id": "36b1c9570a0a-1", "text": "Note:\n This page describes using the dart:ffi library\n in Android apps. For information on iOS, see\n Binding to native iOS code using dart:ffi.\n For information in macOS, see\n Binding to native macOS code using dart:ffi.\n This feature is not yet supported for web plugins.\n\nBefore your library or program can use the FFI library\nto bind to native code, you must ensure that the\nnative code is loaded and its symbols are visible to Dart.\nThis page focuses on compiling, packaging,\nand loading Android native code within a Flutter plugin or app.\n\nThis tutorial demonstrates how to bundle C/C++\nsources in a Flutter plugin and bind to them using\nthe Dart FFI library on both Android and iOS.\nIn this walkthrough, you\u2019ll create a C function\nthat implements 32-bit addition and then\nexposes it through a Dart plugin named \u201cnative_add\u201d.\n\nDynamic vs static linking", "source": "https://docs.flutter.dev/development/platform-integration/android/c-interop/index.html"} {"id": "36b1c9570a0a-2", "text": "Dynamic vs static linking\n\nA native library can be linked into an app either\ndynamically or statically. A statically linked library\nis embedded into the app\u2019s executable image,\nand is loaded when the app starts.\n\nSymbols from a statically linked library can be\nloaded using DynamicLibrary.executable or\nDynamicLibrary.process.\n\nA dynamically linked library, by contrast, is distributed\nin a separate file or folder within the app,\nand loaded on-demand. On Android, a dynamically\nlinked library is distributed as a set of .so (ELF)\nfiles, one for each architecture.\n\nA dynamically linked library can be loaded into\nDart via DynamicLibrary.open.\n\nAPI documentation is available from the Dart dev channel:\nDart API reference documentation.\n\nStep 1: Create a plugin\n\nIf you already have a plugin, skip this step.\n\nTo create a plugin called \u201cnative_add\u201d,\ndo the following:\n\nflutter create", "source": "https://docs.flutter.dev/development/platform-integration/android/c-interop/index.html"} {"id": "36b1c9570a0a-3", "text": "flutter create\n\n-platforms\n\n=android,ios\n\n-template\n\n=plugin native_add\n\ncd native_add\n\nNote:\n You can exclude platforms from \u2013platforms that you don\u2019t want\n to build to. However, you need to include the platform of \n the device you are testing on.\n\nStep 2: Add C/C++ sources\n\nYou need to inform the Android build system about\nthe native code so the code can be compiled\nand linked appropriately into the final application.\n\nYou can add Android-specific sources\nto the android folder and modify CMakeLists.txt\nappropriately.\nAlso, Gradle allows you to point to the ios folder,\nif that helps, but it\u2019s not required to use the same\nsources for both iOS and Android;", "source": "https://docs.flutter.dev/development/platform-integration/android/c-interop/index.html"} {"id": "36b1c9570a0a-4", "text": "The FFI library can only bind against C symbols,\nso in C++ these symbols must be marked extern C.\nYou should also add attributes to indicate that the\nsymbols are referenced from Dart,\nto prevent the linker from discarding the symbols\nduring link-time optimization.\n\nOn Android, you need to create a CMakeLists.txt file\nto define how the sources should be compiled and point\nGradle to it. From the root of your project directory,\nuse the following instructions\n\ncat\n\n> android/CMakeLists.txt\n\n<<\n\nEOF\n\ncmake_minimum_required(VERSION 3.4.1) # for example\n\nadd_library( native_add\n\n # Sets the library as a shared library.\n SHARED\n\n # Provides a relative path to your source file(s).\n ../ios/Classes/native_add.cpp )\n\nEOF", "source": "https://docs.flutter.dev/development/platform-integration/android/c-interop/index.html"} {"id": "36b1c9570a0a-5", "text": "EOF\n\nFinally, add an externalNativeBuild section to\nandroid/build.gradle. For example:\n\nStep 3: Load the code using the FFI library\n\nIn this example, you can add the following code to\nlib/native_add.dart. However the location of the\nDart binding code is not important.\n\nFirst, you must create a DynamicLibrary handle to\nthe native code. The following example shows\nhow to create a handle for an iOS app OR an Android app:\n\nNote that on Android the native library is named\nin CMakeLists.txt (see above),\nbut on iOS it takes the plugin\u2019s name.\n\nWith a handle to the enclosing library,\nyou can resolve the native_add symbol:\n\nFinally, you can call it. To demonstrate this within\nthe auto-generated \u201cexample\u201d app (example/lib/main.dart):\n\nOther use cases\n\nPlatform library", "source": "https://docs.flutter.dev/development/platform-integration/android/c-interop/index.html"} {"id": "36b1c9570a0a-6", "text": "Other use cases\n\nPlatform library\n\nTo link against a platform library,\nuse the following instructions:\n\nFind the desired library in the Android NDK Native APIs\nlist in the Android docs. This lists stable native APIs.\n\nLoad the library using DynamicLibrary.open.\nFor example, to load OpenGL ES (v3):\n\n \nDynamicLibrary.open('libGLES_v3.so');\n\nYou might need to update the Android manifest\nfile of the app or plugin if indicated by\nthe documentation.\n\nFirst-party library\n\nThe process for including native code in source\ncode or binary form is the same for an app or\nplugin.\n\nOpen-source third-party\n\nFollow the Add C and C++ code to your project\ninstructions in the Android docs to\nadd native code and support for the native\ncode toolchain (either CMake or ndk-build).\n\nClosed-source third-party library", "source": "https://docs.flutter.dev/development/platform-integration/android/c-interop/index.html"} {"id": "36b1c9570a0a-7", "text": "Closed-source third-party library\n\nTo create a Flutter plugin that includes Dart\nsource code, but distribute the C/C++ library\nin binary form, use the following instructions:\n\nOpen the android/build.gradle file for your\nproject.\n\nAdd the AAR artifact as a dependency.\nDon\u2019t include the artifact in your\nFlutter package. Instead, it should be\ndownloaded from a repository, such as\nJCenter.\n\nAndroid APK size (shared object compression)\n\nAndroid guidelines in general recommend\ndistributing native shared objects uncompressed\nbecause that actually saves on device space.\nShared objects can be directly loaded from the APK\ninstead of unpacking them on device into a\ntemporary location and then loading.\nAPKs are additionally packed in transit\u2014that\u2019s\nwhy you should be looking at download size.", "source": "https://docs.flutter.dev/development/platform-integration/android/c-interop/index.html"} {"id": "36b1c9570a0a-8", "text": "Flutter APKs by default don\u2019t follow these guidelines\nand compress libflutter.so and libapp.so\u2014this\nleads to smaller APK size but larger on device size.\n\nShared objects from third parties can change this default\nsetting with android:extractNativeLibs=\"true\" in their\nAndroidManifest.xml and stop the compression of libflutter.so,\nlibapp.so, and any user-added shared objects.\nTo re-enable compression, override the setting in\nyour_app_name/android/app/src/main/AndroidManifest.xml\nin the following way.\n\n@@ -1,5 +1,6 @@\n ", "source": "https://docs.flutter.dev/development/platform-integration/android/c-interop/index.html"} {"id": "36b1c9570a0a-9", "text": "package=\"com.example.your_app_name\">\n\n+ xmlns:tools=\"http://schemas.android.com/tools\"\n+ package=\"com.example.your_app_name\" >\n \n\n@@ -8,7 +9,9 @@\n \n\n+ android:icon=\"@mipmap/ic_launcher\"\n+ android:extractNativeLibs=\"true\"\n+ tools:replace=\"android:extractNativeLibs\">", "source": "https://docs.flutter.dev/development/platform-integration/android/c-interop/index.html"} {"id": "4137afd23f58-0", "text": "Targeting ChromeOS with Android\n\nPlatform integration\n\nAndroid\n\nTargeting ChromeOS with Android\n\nFlutter & ChromeOS tips & tricks\n\nFlutter ChromeOS lint analysis\n\nThis page discusses considerations unique to building\nAndroid apps that support ChromeOS with Flutter.\n\nFlutter & ChromeOS tips & tricks\n\nFor the current versions of ChromeOS, only certain ports from\nLinux are exposed to the rest of the environment.\nHere\u2019s an example of how to launch\nFlutter DevTools for an Android app with ports\nthat will work:\n\nflutter pub global run devtools\n\n-port 8000\n\ncd path/to/your/app\n\nflutter run\n\n-observatory-port\n\n=8080", "source": "https://docs.flutter.dev/development/platform-integration/android/chromeos/index.html"} {"id": "4137afd23f58-1", "text": "-observatory-port\n\n=8080\n\nThen, navigate to http://127.0.0.1:8000/#\nin your Chrome browser and enter the URL to your\napplication. The last flutter run command you\njust ran should output a URL similar to the format\nof http://127.0.0.1:8080/auth_code=/. Use this URL\nand select \u201cConnect\u201d to start the Flutter DevTools\nfor your Android app.\n\nFlutter ChromeOS lint analysis\n\nFlutter has ChromeOS-specific lint analysis checks\nto make sure that the app that you\u2019re building\nworks well on ChromeOS. It looks for things\nlike required hardware in your Android Manifest\nthat aren\u2019t available on ChromeOS devices,\npermissions that imply requests for unsupported\nhardware, as well as other properties or code\nthat would bring a lesser experience on these devices.", "source": "https://docs.flutter.dev/development/platform-integration/android/chromeos/index.html"} {"id": "4137afd23f58-2", "text": "To activate these,\nyou need to create a new analysis_options.yaml\nfile in your project folder to include these options.\n(If you have an existing analysis_options.yaml file,\nyou can update it)\n\ninclude\n\npackage:flutter/analysis_options_user.yaml\n\nanalyzer\n\noptional-checks\n\nchrome-os-manifest-checks\n\nTo run these from the command line, use the following command:\n\nflutter analyze\n\nSample output for this command might look like:\n\nAnalyzing ...\nwarning \u2022 This hardware feature is not supported on ChromeOS \u2022\nandroid/app/src/main/AndroidManifest.xml:4:33 \u2022 unsupported_chrome_os_hardware", "source": "https://docs.flutter.dev/development/platform-integration/android/chromeos/index.html"} {"id": "0a101eac3478-0", "text": "Android\n\nPlatform integration\n\nAndroid\n\nTopics:\n\nAdding a splash screen\n\nC interop\n\nHosting native Android views\n\nAndroidX migration\n\nDeprecated Splash Screen API Migration\n\nTargeting ChromeOS with Android", "source": "https://docs.flutter.dev/development/platform-integration/android/index.html"} {"id": "004291a85f1d-0", "text": "Hosting native Android views in your Flutter app with Platform Views\n\nPlatform integration\n\nAndroid\n\nAndroid platform-views\n\nOn the Dart side\n\nHybrid composition\nVirtual display\n\nOn the platform side\n\nPerformance\n\nPlatform views allow you to embed native views in a Flutter app,\nso you can apply transforms, clips, and opacity to the native view\nfrom Dart.\n\nThis allows you, for example, to use the native\nGoogle Maps from the Android SDK\ndirectly inside your Flutter app.\n\nNote:\n This page discusses how to host your own native views\n within a Flutter app.\n If you\u2019d like to embed native iOS views in your Flutter app,\n see Hosting native iOS views.\n\nFlutter supports two modes:\nHybrid composition and virtual displays.\n\nWhich one to use depends on the use case.\nLet\u2019s take a look:", "source": "https://docs.flutter.dev/development/platform-integration/android/platform-views/index.html"} {"id": "004291a85f1d-1", "text": "Which one to use depends on the use case.\nLet\u2019s take a look:\n\nHybrid composition\nappends the native android.view.View to the view hierarchy. \nTherefore, keyboard handling, and accessibility work out of the box.\nPrior to Android 10, this mode might significantly\nreduce the frame throughput (FPS) of the Flutter UI.\nFor more context, see Performance.\n\nVirtual displays\nrender the android.view.View instance to a texture, \nso it\u2019s not embedded within the Android Activity\u2019s view hierarchy.\nCertain platform interactions such as keyboard handling\nand accessibility features might not work.\n\nTo create a platform view on Android,\nuse the following steps:\n\nOn the Dart side\n\nOn the Dart side, create a Widget\nand add one of the following build implementations.\n\nHybrid composition\n\nIn your Dart file,\nfor example native_view_example.dart,\nuse the following instructions:\n\nAdd the following imports:", "source": "https://docs.flutter.dev/development/platform-integration/android/platform-views/index.html"} {"id": "004291a85f1d-2", "text": "Add the following imports:\n\n \nimport 'package:flutter/foundation.dart';\nimport 'package:flutter/gestures.dart';\nimport 'package:flutter/material.dart';\nimport 'package:flutter/rendering.dart';\nimport 'package:flutter/services.dart';\n\nImplement a build() method:\n\n \nWidget build(BuildContext context) {\n // This is used in the platform side to register the view.\n const String viewType = '';\n // Pass parameters to the platform side.\n const Map creationParams = {};", "source": "https://docs.flutter.dev/development/platform-integration/android/platform-views/index.html"} {"id": "004291a85f1d-3", "text": "return PlatformViewLink(\n viewType: viewType,\n surfaceFactory:\n (context, controller) {\n return AndroidViewSurface(\n controller: controller as AndroidViewController,\n gestureRecognizers: const >{},\n hitTestBehavior: PlatformViewHitTestBehavior.opaque,\n );\n },\n onCreatePlatformView: (params) {\n return PlatformViewsService.initSurfaceAndroidView(\n id: params.id,\n viewType: viewType,\n layoutDirection: TextDirection.ltr,\n creationParams: creationParams,\n creationParamsCodec: const StandardMessageCodec(),\n onFocus: () {\n params.onFocusChanged(true);\n },\n )\n ..addOnPlatformViewCreatedListener(params.onPlatformViewCreated)\n ..create();\n },\n );\n}\n\nFor more information, see the API docs for:\n\nPlatformViewLink\n\nAndroidViewSurface\n\nPlatformViewsService", "source": "https://docs.flutter.dev/development/platform-integration/android/platform-views/index.html"} {"id": "004291a85f1d-4", "text": "AndroidViewSurface\n\nPlatformViewsService\n\nVirtual display\n\nIn your Dart file,\nfor example native_view_example.dart,\nuse the following instructions:\n\nAdd the following imports:\n\n \nimport 'package:flutter/material.dart';\nimport 'package:flutter/services.dart';\n\nImplement a build() method:\n\n \nWidget build(BuildContext context) {\n // This is used in the platform side to register the view.\n const String viewType = '';\n // Pass parameters to the platform side.\n final Map creationParams = {};\n\n return AndroidView(\n viewType: viewType,\n layoutDirection: TextDirection.ltr,\n creationParams: creationParams,\n creationParamsCodec: const StandardMessageCodec(),\n );\n}\n\nFor more information, see the API docs for:\n\nAndroidView", "source": "https://docs.flutter.dev/development/platform-integration/android/platform-views/index.html"} {"id": "004291a85f1d-5", "text": "For more information, see the API docs for:\n\nAndroidView\n\nOn the platform side\n\nOn the platform side, use the standard\nio.flutter.plugin.platform package\nin either Java or Kotlin:\n\nKotlin\n\nJava\n\nIn your native code, implement the following:\n\nExtend io.flutter.plugin.platform.PlatformView\nto provide a reference to the android.view.View\n(for example, NativeView.kt):\n\npackage\n\ndev.flutter.example\n\nimport\n\nandroid.content.Context\n\nimport\n\nandroid.graphics.Color\n\nimport\n\nandroid.widget.TextView\n\nimport\n\nio.flutter.plugin.platform.PlatformView\n\ninternal\n\nclass\n\nNativeView\n\ncontext\n\nContext\n\nid", "source": "https://docs.flutter.dev/development/platform-integration/android/platform-views/index.html"} {"id": "004291a85f1d-6", "text": "context\n\nContext\n\nid\n\nInt\n\ncreationParams\n\nMap\n\nString\n\n?,\n\nAny\n\n?>?)\n\nPlatformView\n\nprivate\n\nval\n\ntextView\n\nTextView\n\noverride\n\nfun\n\ngetView\n\n():\n\nView\n\nreturn\n\ntextView\n\noverride\n\nfun\n\ndispose\n\n()\n\n{}\n\ninit\n\ntextView\n\nTextView\n\ncontext\n\ntextView\n\ntextSize\n\n72f\n\ntextView\n\nsetBackgroundColor\n\nColor\n\nrgb", "source": "https://docs.flutter.dev/development/platform-integration/android/platform-views/index.html"} {"id": "004291a85f1d-7", "text": "setBackgroundColor\n\nColor\n\nrgb\n\n255\n\n255\n\n255\n\n))\n\ntextView\n\ntext\n\n\"Rendered on a native Android view (id: $id)\"\n\nCreate a factory class that creates an instance of the\nNativeView created earlier\n(for example, NativeViewFactory.kt):\n\npackage\n\ndev.flutter.example\n\nimport\n\nandroid.content.Context\n\nimport\n\nandroid.view.View\n\nimport\n\nio.flutter.plugin.common.StandardMessageCodec\n\nimport\n\nio.flutter.plugin.platform.PlatformView\n\nimport\n\nio.flutter.plugin.platform.PlatformViewFactory\n\nclass\n\nNativeViewFactory\n\nPlatformViewFactory", "source": "https://docs.flutter.dev/development/platform-integration/android/platform-views/index.html"} {"id": "004291a85f1d-8", "text": "class\n\nNativeViewFactory\n\nPlatformViewFactory\n\nStandardMessageCodec\n\nINSTANCE\n\noverride\n\nfun\n\ncreate\n\ncontext\n\nContext\n\nviewId\n\nInt\n\nargs\n\nAny\n\n?):\n\nPlatformView\n\nval\n\ncreationParams\n\nargs\n\nas\n\nMap\n\nString\n\n?,\n\nAny\n\n?>?\n\nreturn\n\nNativeView\n\ncontext\n\nviewId\n\ncreationParams\n\nFinally, register the platform view.\nYou can do this in an app or a plugin.\n\nFor app registration,\nmodify the app\u2019s main activity\n(for example, MainActivity.kt):", "source": "https://docs.flutter.dev/development/platform-integration/android/platform-views/index.html"} {"id": "004291a85f1d-9", "text": "package\n\ndev.flutter.example\n\nimport\n\nio.flutter.embedding.android.FlutterActivity\n\nimport\n\nio.flutter.embedding.engine.FlutterEngine\n\nclass\n\nMainActivity\n\nFlutterActivity\n\n()\n\noverride\n\nfun\n\nconfigureFlutterEngine\n\nflutterEngine\n\nFlutterEngine\n\nflutterEngine\n\nplatformViewsController\n\nregistry\n\nregisterViewFactory\n\n\"\"\n\nNativeViewFactory\n\n())\n\nFor plugin registration,\nmodify the plugin\u2019s main class\n(for example, PlatformViewPlugin.kt):\n\npackage\n\ndev.flutter.plugin.example\n\nimport\n\nio.flutter.embedding.engine.plugins.FlutterPlugin", "source": "https://docs.flutter.dev/development/platform-integration/android/platform-views/index.html"} {"id": "004291a85f1d-10", "text": "io.flutter.embedding.engine.plugins.FlutterPlugin\n\nimport\n\nio.flutter.embedding.engine.plugins.FlutterPlugin.FlutterPluginBinding\n\nclass\n\nPlatformViewPlugin\n\nFlutterPlugin\n\noverride\n\nfun\n\nonAttachedToEngine\n\nbinding\n\nFlutterPluginBinding\n\nbinding\n\nplatformViewRegistry\n\nregisterViewFactory\n\n\"\"\n\nNativeViewFactory\n\n())\n\noverride\n\nfun\n\nonDetachedFromEngine\n\nbinding\n\nFlutterPluginBinding\n\n{}\n\nIn your native code, implement the following:\n\nExtend io.flutter.plugin.platform.PlatformView\nto provide a reference to the android.view.View\n(for example, NativeView.java):", "source": "https://docs.flutter.dev/development/platform-integration/android/platform-views/index.html"} {"id": "004291a85f1d-11", "text": "package\n\ndev.flutter.example\n\nimport\n\nandroid.content.Context\n\nimport\n\nandroid.graphics.Color\n\nimport\n\nandroid.view.View\n\nimport\n\nandroid.widget.TextView\n\nimport\n\nandroidx.annotation.NonNull\n\nimport\n\nandroidx.annotation.Nullable\n\nimport\n\nio.flutter.plugin.platform.PlatformView\n\nimport\n\njava.util.Map\n\nclass\n\nNativeView\n\nimplements\n\nPlatformView\n\n@NonNull\n\nprivate\n\nfinal\n\nTextView\n\ntextView\n\nNativeView\n\n@NonNull\n\nContext\n\ncontext\n\nint\n\nid", "source": "https://docs.flutter.dev/development/platform-integration/android/platform-views/index.html"} {"id": "004291a85f1d-12", "text": "Context\n\ncontext\n\nint\n\nid\n\n@Nullable\n\nMap\n\nString\n\nObject\n\ncreationParams\n\ntextView\n\nnew\n\nTextView\n\ncontext\n\n);\n\ntextView\n\nsetTextSize\n\n72\n\n);\n\ntextView\n\nsetBackgroundColor\n\nColor\n\nrgb\n\n255\n\n255\n\n255\n\n));\n\ntextView\n\nsetText\n\n\"Rendered on a native Android view (id: \"\n\nid\n\n\")\"\n\n);\n\n@NonNull\n\n@Override\n\npublic", "source": "https://docs.flutter.dev/development/platform-integration/android/platform-views/index.html"} {"id": "004291a85f1d-13", "text": "@NonNull\n\n@Override\n\npublic\n\nView\n\ngetView\n\n()\n\nreturn\n\ntextView\n\n@Override\n\npublic\n\nvoid\n\ndispose\n\n()\n\n{}\n\nCreate a factory class that creates an\ninstance of the NativeView created earlier\n(for example, NativeViewFactory.java):\n\npackage\n\ndev.flutter.example\n\nimport\n\nandroid.content.Context\n\nimport\n\nandroidx.annotation.Nullable\n\nimport\n\nandroidx.annotation.NonNull\n\nimport\n\nio.flutter.plugin.common.StandardMessageCodec\n\nimport\n\nio.flutter.plugin.platform.PlatformView\n\nimport", "source": "https://docs.flutter.dev/development/platform-integration/android/platform-views/index.html"} {"id": "004291a85f1d-14", "text": "io.flutter.plugin.platform.PlatformView\n\nimport\n\nio.flutter.plugin.platform.PlatformViewFactory\n\nimport\n\njava.util.Map\n\nclass\n\nNativeViewFactory\n\nextends\n\nPlatformViewFactory\n\nNativeViewFactory\n\n()\n\nsuper\n\nStandardMessageCodec\n\nINSTANCE\n\n);\n\n@NonNull\n\n@Override\n\npublic\n\nPlatformView\n\ncreate\n\n@NonNull\n\nContext\n\ncontext\n\nint\n\nid\n\n@Nullable\n\nObject\n\nargs\n\nfinal\n\nMap\n\nString\n\nObject\n\ncreationParams\n\nMap\n\nString", "source": "https://docs.flutter.dev/development/platform-integration/android/platform-views/index.html"} {"id": "004291a85f1d-15", "text": "creationParams\n\nMap\n\nString\n\nObject\n\n>)\n\nargs\n\nreturn\n\nnew\n\nNativeView\n\ncontext\n\nid\n\ncreationParams\n\n);\n\nFinally, register the platform view.\nYou can do this in an app or a plugin.\n\nFor app registration,\nmodify the app\u2019s main activity\n(for example, MainActivity.java):\n\npackage\n\ndev.flutter.example\n\nimport\n\nandroidx.annotation.NonNull\n\nimport\n\nio.flutter.embedding.android.FlutterActivity\n\nimport\n\nio.flutter.embedding.engine.FlutterEngine\n\npublic\n\nclass\n\nMainActivity\n\nextends\n\nFlutterActivity\n\n@Override", "source": "https://docs.flutter.dev/development/platform-integration/android/platform-views/index.html"} {"id": "004291a85f1d-16", "text": "extends\n\nFlutterActivity\n\n@Override\n\npublic\n\nvoid\n\nconfigureFlutterEngine\n\n@NonNull\n\nFlutterEngine\n\nflutterEngine\n\nflutterEngine\n\ngetPlatformViewsController\n\n()\n\ngetRegistry\n\n()\n\nregisterViewFactory\n\n\"\"\n\nnew\n\nNativeViewFactory\n\n());\n\nFor plugin registration,\nmodify the plugin\u2019s main file\n(for example, PlatformViewPlugin.java):\n\npackage\n\ndev.flutter.plugin.example\n\nimport\n\nandroidx.annotation.NonNull\n\nimport\n\nio.flutter.embedding.engine.plugins.FlutterPlugin\n\npublic\n\nclass\n\nPlatformViewPlugin", "source": "https://docs.flutter.dev/development/platform-integration/android/platform-views/index.html"} {"id": "004291a85f1d-17", "text": "public\n\nclass\n\nPlatformViewPlugin\n\nimplements\n\nFlutterPlugin\n\n@Override\n\npublic\n\nvoid\n\nonAttachedToEngine\n\n@NonNull\n\nFlutterPluginBinding\n\nbinding\n\nbinding\n\ngetPlatformViewRegistry\n\n()\n\nregisterViewFactory\n\n\"\"\n\nnew\n\nNativeViewFactory\n\n());\n\n@Override\n\npublic\n\nvoid\n\nonDetachedFromEngine\n\n@NonNull\n\nFlutterPluginBinding\n\nbinding\n\n{}\n\nFor more information, see the API docs for:\n\nFlutterPlugin\n\nPlatformViewRegistry\n\nPlatformViewFactory\n\nPlatformView", "source": "https://docs.flutter.dev/development/platform-integration/android/platform-views/index.html"} {"id": "004291a85f1d-18", "text": "PlatformViewRegistry\n\nPlatformViewFactory\n\nPlatformView\n\nFinally, modify your build.gradle file\nto require one of the minimal Android SDK versions:\n\nandroid\n\ndefaultConfig\n\nminSdkVersion\n\n19\n\n// if using hybrid composition\n\nminSdkVersion\n\n20\n\n// if using virtual display.\n\nPerformance\n\nPlatform views in Flutter come with performance trade-offs.\n\nFor example, in a typical Flutter app, the Flutter UI is composed\non a dedicated raster thread. This allows Flutter apps to be fast,\nas the main platform thread is rarely blocked.\n\nWhile a platform view is rendered with hybrid composition,\nthe Flutter UI is composed from the platform thread,\nwhich competes with other tasks like handling OS or plugin messages.", "source": "https://docs.flutter.dev/development/platform-integration/android/platform-views/index.html"} {"id": "004291a85f1d-19", "text": "Prior to Android 10, hybrid composition copied each Flutter frame\nout of the graphic memory into main memory, and then copied it back\nto a GPU texture. As this copy happens per frame, the performance of\nthe entire Flutter UI might be impacted. In Android 10 or above, the\ngraphics memory is copied only once.\n\nVirtual display, on the other hand,\nmakes each pixel of the native view\nflow through additional intermediate graphic buffers,\nwhich cost graphic memory and drawing performance.\n\nFor complex cases, there are some techniques that\ncan be used to mitigate these issues.\n\nFor example, you could use a placeholder texture\nwhile an animation is happening in Dart.\nIn other words, if an animation is slow while a\nplatform view is rendered,\nthen consider taking a screenshot of the\nnative view and rendering it as a texture.\n\nFor more information, see:\n\nTextureLayer\n\nTextureRegistry\n\nFlutterTextureRegistry\n\nFlutterImageView", "source": "https://docs.flutter.dev/development/platform-integration/android/platform-views/index.html"} {"id": "550898503800-0", "text": "Adding a splash screen to your Android app\n\nPlatform integration\n\nAndroid\n\nSplash screen\n\nOverview\n\nInitializing the app\n\nSet up the FlutterActivity in AndroidManifest.xml\n\nAndroid 12\n\nSplash screens (also known as launch screens) provide \na simple initial experience while your Android app loads. \nThey set the stage for your application, \nwhile allowing time for the app engine \nto load and your app to initialize.\n\nOverview\n\nWarning:\n If you are experiencing a crash from implementing a splash screen, you\n might need to migrate your code. See detailed instructions in the\n Deprecated Splash Screen API Migration guide.\n\nIn Android, there are two separate screens that you can control:\na launch screen shown while your Android app initializes,\nand a splash screen that displays while the Flutter experience\ninitializes.", "source": "https://docs.flutter.dev/development/platform-integration/android/splash-screen/index.html"} {"id": "550898503800-1", "text": "Note:\n As of Flutter 2.5, the launch and splash screens have been\n consolidated\u2014Flutter now only implements the Android launch screen,\n which is displayed until the framework draws the first frame.\n This launch screen can act as both an Android launch screen and an\n Android splash screen via customization, and thus, is referred to\n as both terms. For example of such customization, check out the\n Android splash screen sample app.\n\nIf, prior to 2.5, you used flutter create to create an app,\n and you run the app on 2.5 or later, the app might app crash.\n For more info, see the Deprecated Splash Screen API Migration guide.\n\nNote:\n For apps that embed one or more Flutter screens within an\n existing Android app, consider\n pre-warming a FlutterEngine and reusing the\n same engine throughout your app to minimize wait\n time associated with initialization of the Flutter engine.\n\nInitializing the app", "source": "https://docs.flutter.dev/development/platform-integration/android/splash-screen/index.html"} {"id": "550898503800-2", "text": "Initializing the app\n\nEvery Android app requires initialization time while the\noperating system sets up the app\u2019s process.\nAndroid provides the concept of a launch screen to\ndisplay a Drawable while the app is initializing.\n\nThe default Flutter project template includes a definition\nof a launch theme and a launch background. You can customize\nthis by editing styles.xml, where you can define a theme\nwhose windowBackground is set to the\nDrawable that should be displayed as the launch screen.\n\n@drawable/launch_background\n\n\n\n", "source": "https://docs.flutter.dev/development/platform-integration/android/splash-screen/index.html"} {"id": "550898503800-3", "text": "\n\n\n\nIn addition, styles.xml defines a normal theme\nto be applied to FlutterActivity after the launch\nscreen is gone. The normal theme background only shows\nfor a very brief moment after the splash screen disappears,\nand during orientation change and Activity restoration.\nTherefore, it\u2019s recommended that the normal theme use a\nsolid background color that looks similar to the primary\nbackground color of the Flutter UI.\n\n@drawable/normal_background\n\n\n\n\n\nSet up the FlutterActivity in AndroidManifest.xml", "source": "https://docs.flutter.dev/development/platform-integration/android/splash-screen/index.html"} {"id": "550898503800-4", "text": "Set up the FlutterActivity in AndroidManifest.xml\n\nIn AndroidManifest.xml, set the theme of\nFlutterActivity to the launch theme. Then,\nadd a metadata element to the desired FlutterActivity\nto instruct Flutter to switch from the launch theme\nto the normal theme at the appropriate time.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nThe Android app now displays the desired launch screen\nwhile the app initializes.\n\nAndroid 12\n\nTo configure your launch screen on Android 12,\ncheck out Android Splash Screens.\n\nAs of Android 12, you must use the new splash screen\nAPI in your styles.xml file.\nConsider creating an alternate resource file for Android 12 and higher.\nAlso make sure that your background image is in line with\nthe icon guidelines;\ncheck out Android Splash Screens for more details.\n\n@color/bgColor\n\n\n\n@drawable/launch_background\n\n\n\n\n\nMake sure that\nio.flutter.embedding.android.SplashScreenDrawable is\nnot set in your manifest, and that provideSplashScreen\nis not implemented, as these APIs are deprecated.\nDoing so causes the Android launch screen to fade smoothly\ninto the Flutter when the\napp is launched and the app might crash.\n\nSome apps might want to continue showing the last frame of\nthe Android launch screen in Flutter. For example,\nthis preserves the illusion of a single frame\nwhile additional loading continues in Dart.\nTo achieve this, the following\nAndroid APIs might be helpful:\n\nJava", "source": "https://docs.flutter.dev/development/platform-integration/android/splash-screen/index.html"} {"id": "550898503800-7", "text": "Java\n\nKotlin\n\nimport\n\nandroid.os.Build\n\nimport\n\nandroid.os.Bundle\n\nimport\n\nandroid.window.SplashScreenView\n\nimport\n\nandroidx.core.view.WindowCompat\n\nimport\n\nio.flutter.embedding.android.FlutterActivity\n\npublic\n\nclass\n\nMainActivity\n\nextends\n\nFlutterActivity\n\n@Override\n\nprotected\n\nvoid\n\nonCreate\n\nBundle\n\nsavedInstanceState\n\n// Aligns the Flutter view vertically with the window.\n\nWindowCompat\n\nsetDecorFitsSystemWindows\n\ngetWindow\n\n(),\n\nfalse\n\n);\n\nif\n\nBuild", "source": "https://docs.flutter.dev/development/platform-integration/android/splash-screen/index.html"} {"id": "550898503800-8", "text": "false\n\n);\n\nif\n\nBuild\n\nVERSION\n\nSDK_INT\n\n>=\n\nBuild\n\nVERSION_CODES\n\n// Disable the Android splash screen fade out animation to avoid\n\n// a flicker before the similar frame is drawn in Flutter.\n\ngetSplashScreen\n\n()\n\nsetOnExitAnimationListener\n\nSplashScreenView\n\nsplashScreenView\n\n>\n\nsplashScreenView\n\nremove\n\n();\n\n});\n\nsuper\n\nonCreate\n\nsavedInstanceState\n\n);\n\nimport\n\nandroid.os.Build\n\nimport\n\nandroid.os.Bundle\n\nimport", "source": "https://docs.flutter.dev/development/platform-integration/android/splash-screen/index.html"} {"id": "550898503800-9", "text": "import\n\nandroid.os.Bundle\n\nimport\n\nandroidx.core.view.WindowCompat\n\nimport\n\nio.flutter.embedding.android.FlutterActivity\n\nclass\n\nMainActivity\n\nFlutterActivity\n\n()\n\noverride\n\nfun\n\nonCreate\n\nsavedInstanceState\n\nBundle\n\n?)\n\n// Aligns the Flutter view vertically with the window.\n\nWindowCompat\n\nsetDecorFitsSystemWindows\n\ngetWindow\n\n(),\n\nfalse\n\nif\n\nBuild\n\nVERSION\n\nSDK_INT\n\n>=\n\nBuild\n\nVERSION_CODES\n\n// Disable the Android splash screen fade out animation to avoid", "source": "https://docs.flutter.dev/development/platform-integration/android/splash-screen/index.html"} {"id": "550898503800-10", "text": "// Disable the Android splash screen fade out animation to avoid\n\n// a flicker before the similar frame is drawn in Flutter.\n\nsplashScreen\n\nsetOnExitAnimationListener\n\nsplashScreenView\n\n>\n\nsplashScreenView\n\nremove\n\n()\n\nsuper\n\nonCreate\n\nsavedInstanceState\n\nThen, you can reimplement the first frame in Flutter\nthat shows elements of your Android launch screen in\nthe same positions on screen.\nFor an example of this, check out the\nAndroid splash screen sample app.", "source": "https://docs.flutter.dev/development/platform-integration/android/splash-screen/index.html"} {"id": "a967309c09f6-0", "text": "Deprecated Splash Screen API Migration\n\nPlatform integration\n\nAndroid\n\nDeprecated Splash Screen API Migration\n\nPrior to Flutter 2.5, Flutter apps could add a splash\nscreen by defining it within the metadata of their application manifest file\n(AndroidManifest.xml), by implementing provideSplashScreen within\ntheir FlutterActivity, or both. This would display momentarily in between\nthe time after the Android launch screen is shown and when Flutter has\ndrawn the first frame. This approach is now deprecated as of Flutter 2.5.\nFlutter now automatically keeps the Android launch screen displayed\nuntil it draws the first frame.\n\nTo migrate from defining a custom splash screen to just defining a custom\nlaunch screen for your application, follow the steps that correspond\nto how your application\u2019s custom splash screen was defined\nprior to the 2.5 release.\n\nCustom splash screen defined in FlutterActivity", "source": "https://docs.flutter.dev/development/platform-integration/android/splash-screen-migration/index.html"} {"id": "a967309c09f6-1", "text": "Custom splash screen defined in FlutterActivity\n\nLocate your application\u2019s implementation of provideSplashScreen()\nwithin its FlutterActivity and delete it. This implementation should involve\nthe construction of your application\u2019s custom splash screen\nas a Drawable. For example:\n\n \n@Override\npublic SplashScreen provideSplashScreen() {\n // ...\n return new DrawableSplashScreen(\n new SomeDrawable(\n ContextCompat.getDrawable(this, R.some_splash_screen)));\n}\n\nUse the steps in the section directly following to ensure that your\nDrawable splash screen (R.some_splash_screen in the previous example)\nis properly configured as your application\u2019s custom launch screen.\n\nCustom splash screen defined in Manifest", "source": "https://docs.flutter.dev/development/platform-integration/android/splash-screen-migration/index.html"} {"id": "a967309c09f6-2", "text": "Custom splash screen defined in Manifest\n\nLocate your application\u2019s AndroidManifest.xml file.\nWithin this file, find the activity element.\nWithin this element, identify the android:theme attribute\nand the meta-data element that defines\na splash screen as an\nio.flutter.embedding.android.SplashScreenDrawable,\nand update it. For example:\n\n \n\n // ...\n \n\n\nIf the android:theme attribute isn\u2019t specified, add the attribute and\ndefine a launch theme for your application\u2019s launch screen.\n\nDelete the meta-data element, as Flutter no longer\nuses that, but it can cause a crash.", "source": "https://docs.flutter.dev/development/platform-integration/android/splash-screen-migration/index.html"} {"id": "a967309c09f6-3", "text": "Locate the definition of the theme specified by the android:theme attribute\nwithin your application\u2019s style resources. This theme specifies the\nlaunch theme of your application. Ensure that the style attribute configures the\nandroid:windowBackground attribute with your custom splash screen. For example:\n\n \n\n \n \n @drawable/some_splash_screen\n \n", "source": "https://docs.flutter.dev/development/platform-integration/android/splash-screen-migration/index.html"} {"id": "5d189424b446-0", "text": "Desktop support for Flutter\n\nPlatform integration\n\nDesktop support for Flutter\n\nRequirements\n\nAdditional Windows requirements\nAdditional macOS requirements\nAdditional Linux requirements\n\nCreate a new project\n\nSet up\nCreate and run\n\nUsing an IDE\nFrom the command line\n\nBuild a release app\n\nAdd desktop support to an existing Flutter app\n\nPlugin support\n\nWriting a plugin\n\nSamples and codelabs\n\nFlutter provides support for compiling\na native Windows, macOS, or Linux desktop app.\nFlutter\u2019s desktop support also extends to plugins\u2014you\ncan install existing plugins that support the Windows,\nmacOS, or Linux platforms, or you can create your own.\n\nNote:\n This page covers developing apps for all desktop\n platforms. Once you\u2019ve read this, you can dive into\n specific platform information at the following links:", "source": "https://docs.flutter.dev/development/platform-integration/desktop/index.html"} {"id": "5d189424b446-1", "text": "Building Windows apps with Flutter\n\nBuilding macOS apps with Flutter\n\nBuilding Linux apps with Flutter\n\nRequirements\n\nTo compile a desktop application,\nyou must build it on the targeted\nplatform: build a Windows application on Windows,\na macOS application on macOS,\nand a Linux application on Linux.\n\nTo create a Flutter application with desktop support,\nyou need the following software:\n\nFlutter SDK. See the\nFlutter SDK installation instructions.\n\nOptional: An IDE that supports Flutter.\nYou can install Android Studio, IntelliJ IDEA,\nor Visual Studio Code and\ninstall the Flutter and Dart plugins\nto enable language support and tools for refactoring,\nrunning, debugging, and reloading your desktop app\nwithin an editor. See setting up an editor\nfor more details.\n\nAdditional Windows requirements\n\nFor Windows desktop development,\nyou need the following in addition to the Flutter SDK:", "source": "https://docs.flutter.dev/development/platform-integration/desktop/index.html"} {"id": "5d189424b446-2", "text": "For Windows desktop development,\nyou need the following in addition to the Flutter SDK:\n\nVisual Studio 2022 or Visual Studio Build Tools 2022\nWhen installing Visual Studio or only the Build Tools,\nselect the \u201cDesktop development with C++\u201d workload,\nincluding all of its default components,\nto install the necessary C++ toolchain and\nWindows SDK header files.\n\nNote:\n Visual Studio is different than Visual Studio Code.\n\nAdditional macOS requirements\n\nFor macOS desktop development,\nyou need the following in addition to the Flutter SDK:\n\nXcode the full version of Xcode is required, not just the commandline tools\n\nCocoaPods if you use plugins\n\nAdditional Linux requirements\n\nFor Linux desktop development,\nyou need the following in addition to the Flutter SDK:\n\nClang\n\nCMake\n\nGTK development headers\n\nNinja build\n\npkg-config", "source": "https://docs.flutter.dev/development/platform-integration/desktop/index.html"} {"id": "5d189424b446-3", "text": "Ninja build\n\npkg-config\n\nliblzma-dev This dependency may be required\n\nOne easy way to install the Flutter SDK along with the necessary\ndependencies is by using snapd.\nFor more information, see Installing snapd.\n\nOnce you have snapd, you can install Flutter\nusing the Snap Store, or at the command line:\n\nsudo snap\n\ninstall flutter\n\n-classic\n\nAlternatively, if you prefer not to use snapd,\nyou can use the following command:\n\nsudo apt-get\n\ninstall clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev\n\nCreate a new project\n\nYou can use the following steps\nto create a new project with desktop support.\n\nSet up", "source": "https://docs.flutter.dev/development/platform-integration/desktop/index.html"} {"id": "5d189424b446-4", "text": "Set up\n\nOn Windows, desktop support is enabled on\nFlutter 2.10 or higher. On macOS and Linux,\ndesktop support is enabled on Flutter 3 or higher.\n\nYou might run flutter doctor to see if\nthere are any unresolved issues.\nYou should see a checkmark for each successfully\nconfigured area. It should look something like\nthe following on Windows,\nwith an entry for \u201cdevelop for Windows\u201d:\n\nC:\\>\n\nflutter doctor", "source": "https://docs.flutter.dev/development/platform-integration/desktop/index.html"} {"id": "5d189424b446-5", "text": "C:\\>\n\nflutter doctor\n\nDoctor summary (to see all details, run flutter doctor -v):\n[\u2713] Flutter (Channel stable, 3.0.0, on Microsoft Windows [Version 10.0.19044.1706], locale en-US)\n[\u2713] Chrome - develop for the web\n[\u2713] Visual Studio - develop for Windows (Visual Studio Professional 2022 17.2.0)\n[\u2713] VS Code (version 1.67.2)\n[\u2713] Connected device (3 available)\n[\u2713] HTTP Host Availability\n\n\u2022 No issues found!\n\nOn macOS, look for a line like this:\n\n[\u2713] Xcode - develop for iOS and macOS\n\nOn Linux, look for a line like this:\n\n[\u2713] Linux toolchain - develop for Linux desktop", "source": "https://docs.flutter.dev/development/platform-integration/desktop/index.html"} {"id": "5d189424b446-6", "text": "[\u2713] Linux toolchain - develop for Linux desktop\n\nIf flutter doctor finds problems or missing components\nfor a platform that you don\u2019t want to develop for,\nyou can ignore those warnings. Or you can disable the\nplatform altogether using the flutter config command,\nfor example:\n\nflutter config\n\n-no-enable-ios\n\nOther available flags:\n\n--no-enable-windows-desktop\n\n--no-enable-linux-desktop\n\n--no-enable-macos-desktop\n\n--no-enable-web\n\n--no-enable-android\n\n--no-enable-ios\n\nAfter enabling desktop support,\nrestart your IDE so that it can detect the new device.\n\nCreate and run\n\nCreating a new project with desktop support is no different\nthan creating a new Flutter project for other platforms.", "source": "https://docs.flutter.dev/development/platform-integration/desktop/index.html"} {"id": "5d189424b446-7", "text": "Once you\u2019ve configured your environment for desktop\nsupport, you can create and run a desktop application\neither in the IDE or from the command line.\n\nUsing an IDE\n\nAfter you\u2019ve configured your environment to support\ndesktop, make sure you restart the IDE if it was\nalready running.\n\nCreate a new application in your IDE and it automatically\ncreates iOS, Android, web, and desktop versions of your app.\nFrom the device pulldown, select windows (desktop),\nmacOS (desktop), or linux (desktop)\nand run your application to see it launch on the desktop.\n\nFrom the command line\n\nTo create a new application that includes desktop support\n(in addition to mobile and web support), run the following commands,\nsubstituting my_app with the name of your project:\n\nflutter create my_app\n\ncd my_app\n\nTo launch your application from the command line,\nenter one of the following commands from the top\nof the package:\n\nC:\\>", "source": "https://docs.flutter.dev/development/platform-integration/desktop/index.html"} {"id": "5d189424b446-8", "text": "C:\\>\n\nflutter run\n\nd windows\n\nflutter run\n\nd macos\n\nflutter run\n\nd linux\n\nNote:\n If you do not supply the -d flag, flutter run lists\n the available targets to choose from.\n\nBuild a release app\n\nTo generate a release build,\nrun one of the following commands:\n\nPS C:\\>\n\nflutter build windows\n\nflutter build macos\n\nflutter build linux\n\nAdd desktop support to an existing Flutter app\n\nTo add desktop support to an existing Flutter project,\nrun the following command in a terminal from the\nroot project directory:\n\nflutter create\n\n-platforms\n\n=windows,macos,linux", "source": "https://docs.flutter.dev/development/platform-integration/desktop/index.html"} {"id": "5d189424b446-9", "text": "-platforms\n\n=windows,macos,linux\n\nThis adds the necessary desktop files and directories\nto your existing Flutter project.\nTo add only specific desktop platforms,\nchange the platforms list to include only\nthe platform(s) you want to add.\n\nPlugin support\n\nFlutter on the desktop supports using and creating plugins.\nTo use a plugin that supports desktop,\nfollow the steps for plugins in using packages.\nFlutter automatically adds the necessary native code\nto your project, as with any other platform.\n\nWriting a plugin", "source": "https://docs.flutter.dev/development/platform-integration/desktop/index.html"} {"id": "5d189424b446-10", "text": "Writing a plugin\n\nWhen you start building your own plugins,\nyou\u2019ll want to keep federation in mind.\nFederation is the ability to define several\ndifferent packages, each targeted at a\ndifferent set of platforms, brought together\ninto a single plugin for ease of use by developers.\nFor example, the Windows implementation of the\nurl_launcher is really url_launcher_windows,\nbut a Flutter developer can simply add the\nurl_launcher package to their pubspec.yaml\nas a dependency and the build process pulls in\nthe correct implementation based on the target platform.\nFederation is handy because different teams with\ndifferent expertise can build plugin implementations\nfor different platforms.\nYou can add a new platform implementation to any\nendorsed federated plugin on pub.dev,\nso long as you coordinate this effort with the\noriginal plugin author.\n\nFor more information, including information\nabout endorsed plugins, see the following resources:\n\nDeveloping packages and plugins, particularly the\nFederated plugins section.", "source": "https://docs.flutter.dev/development/platform-integration/desktop/index.html"} {"id": "5d189424b446-11", "text": "Developing packages and plugins, particularly the\nFederated plugins section.\n\nHow to write a Flutter web plugin, part 2,\ncovers the structure of federated plugins and\ncontains information applicable to desktop\nplugins.\n\nModern Flutter Plugin Development covers\nrecent enhancements to Flutter\u2019s plugin support.\n\nSamples and codelabs\n\nWrite a Flutter desktop application\n\nA codelab that walks you through building\na desktop application that integrates the GitHub\nGraphQL API with your Flutter app.\n\nYou can run the following samples as desktop apps,\nas well as download and inspect the source code to\nlearn more about Flutter desktop support.\n\nrunning web app,\n\nrepo", "source": "https://docs.flutter.dev/development/platform-integration/desktop/index.html"} {"id": "5d189424b446-12", "text": "running web app,\n\nrepo\n\nA samples project hosted on GitHub to help developers\nevaluate and use Flutter. The Gallery consists of a\ncollection of Material design widgets, behaviors,\nand vignettes implemented with Flutter.\nYou can clone the project and run Gallery as a desktop app\nby following the instructions provided in the README.\n\nannouncement blogpost,\n\nrepo\n\nA Google contacts manager that integrates with GitHub and Twitter.\nIt syncs with your Google account, imports your contacts,\nand allows you to manage them.\n\nPhoto Search app\n\nA sample application built as a desktop application that\nuses desktop-supported plugins.", "source": "https://docs.flutter.dev/development/platform-integration/desktop/index.html"} {"id": "fa9d8f126d09-0", "text": "Platform integration\n\nPlatform integration\n\nTopics:\n\nSupported platforms\n\nBuilding desktop apps with Flutter\n\nWriting platform-specific code\n\nAndroid\n\niOS\n\nLinux\n\nmacOS\n\nWeb\n\nWindows", "source": "https://docs.flutter.dev/development/platform-integration/index.html"} {"id": "33cc08dd96bb-0", "text": "Adding iOS app extensions\n\nPlatform integration\n\niOS\n\nAdding iOS app extensions\n\nHow do you add an app extension to your Flutter app?\n\nHow do Flutter apps interact with App Extensions?\n\nUsing higher-level APIs\nSharing resources\nBackground updates\nDeep linking\n\nCreating app extension UIs with Flutter\n\niOS App extensions allow you to expand functionality\noutside your app. Your app could appear as a home screen widget,\nor you can make portions of your app available within other apps.\n\nTo learn more about app extensions, check out\nApple\u2019s documentation.\n\nHow do you add an app extension to your Flutter app?\n\nTo add an app extension to your Flutter app,\nadd the extension point target to your Xcode project.\n\nOpen the default Xcode workspace in your project by running\nopen ios/Runner.xcworkspace in a terminal window from your\nFlutter project directory.", "source": "https://docs.flutter.dev/development/platform-integration/ios/app-extensions/index.html"} {"id": "33cc08dd96bb-1", "text": "In Xcode, select File -> New -> Target from the menu bar.\n\nSelect the app extension you intend to add.\nThis selection generates extension-specific code \nwithin a new folder in your project.\nTo learn more about the generated code and the SDKs for each\nextension point, check out the resources in\nApple\u2019s documentation.\n\nHow do Flutter apps interact with App Extensions?\n\nFlutter apps interact with app extensions using the same\ntechniques as UIKit or SwiftUI apps.\nThe containing app and the app extension don\u2019t communicate directly.\nThe containing app might not be running while the device user interacts with the extension.\nThe app and your extension can read and write to shared resources or\nuse higher-level APIs to communicate with each other.\n\nUsing higher-level APIs\n\nSome extensions have APIs. For example, \nthe Core Spotlight framework indexes your app \nallowing users to search from Spotlight and Safari. The\nWidgetKit framework can trigger an update of your home screen\nwidget.", "source": "https://docs.flutter.dev/development/platform-integration/ios/app-extensions/index.html"} {"id": "33cc08dd96bb-2", "text": "To simplify how your app communicates with extensions,\nFlutter plugins wrap these APIs.\nTo find plugins that wrap extension APIs,\ncheck out Leveraging Apple\u2019s System APIs and Frameworks or\nsearch pub.dev.\n\nSharing resources\n\nTo share resources between your Flutter app and your app extension, put\nthe Runner app target and the extension target in the same\nApp Group.\n\nNote:\n You must be signed in to your Apple Developer account.\n\nTo add a target to an App Group:\n\nOpen the target settings in Xcode.\n\nNavigate to the Signing & Capabilities tab.\n\nSelect + Capability then App Groups.\n\nChoose which App Group you want to add the target from one of two options:\n \n Select an App Group from the list.\n Click + to add a new App Group.", "source": "https://docs.flutter.dev/development/platform-integration/ios/app-extensions/index.html"} {"id": "33cc08dd96bb-3", "text": "When two targets belong to the same App Group, they can read and write\ndata to the same source. Choose one of the following sources for your data.\n\nKey/value: Use the shared_preference_app_group\nplugin to read or write to UserDefaults within the same App Group.\n\nFile: Use the App Group container path from the\npath_provider plugin to read and write files.\n\nDatabase: Use the App Group container path from\nthe path_provider plugin to create a database with the\nsqflite plugin.\n\nBackground updates\n\nBackground tasks provide a means to update your extension through code\nregardless of the status of your app.\n\nTo schedule background work from your Flutter app, use the\nworkmanager plugin.\n\nDeep linking\n\nYou might want to direct users from an app extension to a\nspecific page in your Flutter app.\nTo have a URL open a specified route in your app, you can use\nDeep Linking.\n\nCreating app extension UIs with Flutter", "source": "https://docs.flutter.dev/development/platform-integration/ios/app-extensions/index.html"} {"id": "33cc08dd96bb-4", "text": "Creating app extension UIs with Flutter\n\nSome app extensions display a user interface.\nFor example, iMessage extensions allow users to access your app\u2019s\ncontent directly from the Messages app.\n\nFlutter does not support \nbuilding Flutter UI for app extensions. \nTo create the UI for \nan app extension using Flutter, you must compile \na custom engine and embed the FlutterViewController\nas described in the following section.\n\nNote:\n Creating an app extension user interface with Flutter\n requires you to compile a custom build of the Flutter engine.\n The Flutter team cautions that only advanced users\n should try to create a custom build.\n To learn more, check out Compiling the engine.\n\nCreate a custom build of the Flutter engine that removes uses of\nsharedApplication and corrects the path for the bundle.\nCheck out an example from the community on GitHub.\n\nOpen the Flutter app project settings in Xcode to share build\nconfigurations.", "source": "https://docs.flutter.dev/development/platform-integration/ios/app-extensions/index.html"} {"id": "33cc08dd96bb-5", "text": "Open the Flutter app project settings in Xcode to share build\nconfigurations.\n\n \n Navigate to the Info tab.\n Expand the Configurations group.\n Expand the Debug, Profile, and Release entries.\n For each of these configurations, make sure the value in the\n Based on configuration file drop-down menu for your\n extension matches the one selected for the normal app target.\n\n(Optional) Replace any storyboard files with an extension class if needed.\n \n In the Info.plist file, delete the NSExtensionMainStoryboard property.\n Add the NSExtensionPrincipalClass property.\n Set this value for this property to the name of your ViewController.\n For example, in an iMessage extension you would use MessageViewController.\n\nEmbed the FlutterViewController as described in\nAdding a Flutter Screen. For example, you can display a \nspecific route in your Flutter app within an iMessage extension.", "source": "https://docs.flutter.dev/development/platform-integration/ios/app-extensions/index.html"} {"id": "33cc08dd96bb-6", "text": "//This attribute tells the compiler that this piece of Swift code can be accessed from Objective-C.\n @objc(MessagesViewController)\n\n class MessagesViewController: MSMessagesAppViewController {\n override func viewDidLoad() {\n super.viewDidLoad()\n showFlutter()\n }\n \n @objc func showFlutter() {\n // Create a FlutterViewController with an implicit FlutterEngine\n let flutterViewController = FlutterViewController(project: nil, initialRoute: \"/ext\", nibName: nil, bundle: nil)\n present(flutterViewController, animated: true, completion: nil)\n }\n\nImportant:\n Commenting out sharedApplication disables\n many features in the Flutter framework.\n This hasn\u2019t been tested in App Store submissions\n and might not work for some app extensions.\n\nFor example, home screen Widgets and Live Activities can\u2019t use some\n lower-level APIs needed to draw Flutter UI.", "source": "https://docs.flutter.dev/development/platform-integration/ios/app-extensions/index.html"} {"id": "e4531768dcc1-0", "text": "Leveraging Apple's System APIs and Frameworks\n\nPlatform integration\n\niOS\n\nLeveraging Apple's System APIs and Frameworks\n\nIntroducing Flutter plugins\n\nAdding a plugin to your project\n\nFlutter Plugins and Apple Frameworks\n\nWhen you come from iOS development, you might need to find\nFlutter plugins that offer the same abilities as Apple\u2019s system\nlibraries. This might include accessing device hardware or interacting\nwith specific frameworks like HealthKit or MapKit.\n\nFor an overview of how the SwiftUI framework compares to Flutter,\nsee Flutter for SwiftUI developers.\n\nIntroducing Flutter plugins\n\nDart calls libraries that contain platform-specific code plugins.\nWhen developing an app with Flutter, you use plugins to interact\nwith system libraries.", "source": "https://docs.flutter.dev/development/platform-integration/ios/apple-frameworks/index.html"} {"id": "e4531768dcc1-1", "text": "In your Dart code, you use the plugin\u2019s Dart API to call the native\ncode from the system library being used. This means that you can write\nthe code to call the Dart API. The API then makes it work for all\nplatforms that the plugin supports.\n\nTo learn more about plugins, see Using packages.\nThough this page links to some popular plugins,\nyou can find thousands more, along with examples,\non pub.dev. The following table does not endorse any particular plugin.\nIf you can\u2019t find a package that meets your need,\nyou can create your own or use platform channels directly in your project.\nTo learn more, see Writing platform-specific code.\n\nAdding a plugin to your project\n\nTo use an Apple framework within your native project,\nimport it into your Swift or Objective-C file.", "source": "https://docs.flutter.dev/development/platform-integration/ios/apple-frameworks/index.html"} {"id": "e4531768dcc1-2", "text": "To add a Flutter plugin, run flutter pub add package_name\nfrom the root of your project.\nThis adds the dependency to your pubspec.yaml file.\nAfter you add the dependency, add an import statement for the package\nin your Dart file.\n\nYou might need to change app settings or initialization logic.\nIf that\u2019s needed, the package\u2019s \u201cReadme\u201d page on pub.dev\nshould provide details.\n\nFlutter Plugins and Apple Frameworks\n\nAccess the photo library\n\nPhotoKitusing the Photos and PhotosUI frameworks\n UIImagePickerController\n\nimage_picker\n\nAccess the camera\n\nUIImagePickerControllerusing the .camera sourceType\n\nimage_picker\n\nUse advanced camera features\n\nAVFoundation\n\ncamera\n\nOffer In-app purchases\n\nStoreKit\n\nin_app_purchase1\n\nProcess payments", "source": "https://docs.flutter.dev/development/platform-integration/ios/apple-frameworks/index.html"} {"id": "e4531768dcc1-3", "text": "in_app_purchase1\n\nProcess payments\n\nPassKit\n\npay2\n\nSend push notifications\n\nUserNotifications\n\nfirebase_messaging3\n\nAccess GPS coordinates\n\nCoreLocation\n\ngeolocator\n\nAccess sensor data4\n\nCoreMotion\n\nsensors_plus\n\nEmbed maps\n\nMapKit\n\ngoogle_maps_flutter\n\nMake network requests\n\nURLSession\n\nhttp\n\nStore key-values\n\n@AppStorage property wrapper\n NSUserDefaults\n\nshared_preferences\n\nPersist to a database\n\nCoreData or SQLite\n\nsqflite\n\nAccess health data\n\nHealthKit\n\nhealth\n\nUse machine learning\n\nCoreML", "source": "https://docs.flutter.dev/development/platform-integration/ios/apple-frameworks/index.html"} {"id": "e4531768dcc1-4", "text": "health\n\nUse machine learning\n\nCoreML\n\ngoogle_ml_kit5\n\nRecognize text\n\nVisionKit\n\ngoogle_ml_kit5\n\nRecognize speech\n\nSpeech\n\nspeech_to_text\n\nUse augmented reality\n\nARKit\n\nar_flutter_plugin\n\nAccess weather data\n\nWeatherKit\n\nweather6\n\nAccess and manage contacts\n\nContacts\n\ncontacts_service\n\nExpose quick actions on the home screen\n\nUIApplicationShortcutItem\n\nquick_actions\n\nIndex items in Spotlight search\n\nCoreSpotlight\n\nflutter_core_spotlight\n\nConfigure, update and communicate with Widgets\n\nWidgetKit\n\nhome_widget", "source": "https://docs.flutter.dev/development/platform-integration/ios/apple-frameworks/index.html"} {"id": "e4531768dcc1-5", "text": "WidgetKit\n\nhome_widget\n\nSupports both Google Play Store on Android and Apple App Store on iOS.\u00a0\u21a9\n\nAdds Google Pay payments on Android and Apple Pay payments on iOS.\u00a0\u21a9\n\nUses Firebase Cloud Messaging and integrates with APNs.\u00a0\u21a9\n\nIncludes sensors like accelerometer, gyroscope, etc.\u00a0\u21a9\n\nUses Google\u2019s ML Kit and supports various features like text recognition, face detection, image labeling, landmark recognition, and barcode scanning. You can also create a custom model with Firebase. To learn more, see Use a custom TensorFlow Lite model with Flutter.\u00a0\u21a9\u00a0\u21a92\n\nUses the OpenWeatherMap API. Other packages exist that can pull from different weather APIs.\u00a0\u21a9", "source": "https://docs.flutter.dev/development/platform-integration/ios/apple-frameworks/index.html"} {"id": "93112a7869ac-0", "text": "Binding to native iOS code using dart:ffi\n\nPlatform integration\n\niOS\n\nBinding to native iOS code using dart:ffi\n\nDynamic vs static linking\n\nStep 1: Create a plugin\n\nStep 2: Add C/C++ sources\n\nStep 3: Load the code using the FFI library\n\nOther use cases\n\niOS and macOS\n\nPlatform library\nFirst-party library\nSource code\nCompiled (dynamic) library\nOpen-source third-party library\nClosed-source third-party library\n\nStripping iOS symbols\n\nFlutter mobile and desktop apps can use the\ndart:ffi library to call native C APIs.\nFFI stands for foreign function interface.\nOther terms for similar functionality include\nnative interface and language bindings.", "source": "https://docs.flutter.dev/development/platform-integration/ios/c-interop/index.html"} {"id": "93112a7869ac-1", "text": "Note:\n This page describes using the dart:ffi library\n in iOS apps. For information on Android, see\n Binding to native Android code using dart:ffi.\n For information in macOS, see\n Binding to native macOS code using dart:ffi.\n This feature is not yet supported for web plugins.\n\nBefore your library or program can use the FFI library\nto bind to native code, you must ensure that the\nnative code is loaded and its symbols are visible to Dart.\nThis page focuses on compiling, packaging,\nand loading iOS native code within a Flutter plugin or app.\n\nThis tutorial demonstrates how to bundle C/C++\nsources in a Flutter plugin and bind to them using\nthe Dart FFI library on iOS.\nIn this walkthrough, you\u2019ll create a C function\nthat implements 32-bit addition and then\nexposes it through a Dart plugin named \u201cnative_add\u201d.\n\nDynamic vs static linking", "source": "https://docs.flutter.dev/development/platform-integration/ios/c-interop/index.html"} {"id": "93112a7869ac-2", "text": "Dynamic vs static linking\n\nA native library can be linked into an app either\ndynamically or statically. A statically linked library\nis embedded into the app\u2019s executable image,\nand is loaded when the app starts.\n\nSymbols from a statically linked library can be\nloaded using DynamicLibrary.executable or\nDynamicLibrary.process.\n\nA dynamically linked library, by contrast, is distributed\nin a separate file or folder within the app,\nand loaded on-demand. On iOS, the dynamically linked\nlibrary is distributed as a .framework folder.\n\nA dynamically linked library can be loaded into\nDart using DynamicLibrary.open.\n\nAPI documentation is available from the Dart dev channel:\nDart API reference documentation.\n\nStep 1: Create a plugin\n\nIf you already have a plugin, skip this step.\n\nTo create a plugin called \u201cnative_add\u201d,\ndo the following:\n\nflutter create\n\n-platforms\n\n=android,ios", "source": "https://docs.flutter.dev/development/platform-integration/ios/c-interop/index.html"} {"id": "93112a7869ac-3", "text": "flutter create\n\n-platforms\n\n=android,ios\n\n-template\n\n=plugin native_add\n\ncd native_add\n\nNote:\n You can exclude platforms from --platforms that you don\u2019t want\n to build to. However, you need to include the platform of \n the device you are testing on.\n\nStep 2: Add C/C++ sources\n\nYou need to inform the iOS build system about the\nnative code so the code can be compiled\nand linked appropriately into the final application.\n\nAdd the sources to the ios folder,\nbecause CocoaPods doesn\u2019t allow including sources\nabove the podspec file.\n\nThe FFI library can only bind against C symbols,\nso in C++ these symbols must be marked extern C.\nYou should also add attributes to indicate that the\nsymbols are referenced from Dart,\nto prevent the linker from discarding the symbols\nduring link-time optimization.", "source": "https://docs.flutter.dev/development/platform-integration/ios/c-interop/index.html"} {"id": "93112a7869ac-4", "text": "For example,\nto create a C++ file named ios/Classes/native_add.cpp,\nuse the following instructions. (Note that the template\nhas already created this file for you.) Start from the\nroot directory of your project:\n\ncat\n\n> ios/Classes/native_add.cpp\n\n<<\n\nEOF\n\n#include \n\nextern \"C\" __attribute__((visibility(\"default\"))) __attribute__((used))\nint32_t native_add(int32_t x, int32_t y) {\n return x + y;\n}\n\nEOF\n\nOn iOS, you need to tell Xcode to statically link the file:\n\nIn Xcode, open Runner.xcworkspace.\n\nAdd the C/C++/Objective-C/Swift\nsource files to the Xcode project.\n\nStep 3: Load the code using the FFI library", "source": "https://docs.flutter.dev/development/platform-integration/ios/c-interop/index.html"} {"id": "93112a7869ac-5", "text": "Step 3: Load the code using the FFI library\n\nIn this example, you can add the following code to\nlib/native_add.dart. However the location of the\nDart binding code isn\u2019t important.\n\nFirst, you must create a DynamicLibrary handle to\nthe native code. The following example shows\nhow to create a handle for an iOS app OR an Android app:\n\nNote that on Android the native library is named\nin CMakeLists.txt,\nbut on iOS it takes the plugin\u2019s name.\n\nWith a handle to the enclosing library,\nyou can resolve the native_add symbol:\n\nFinally, you can call it. To demonstrate this within\nthe auto-generated \u201cexample\u201d app (example/lib/main.dart):\n\nOther use cases\n\niOS and macOS", "source": "https://docs.flutter.dev/development/platform-integration/ios/c-interop/index.html"} {"id": "93112a7869ac-6", "text": "Other use cases\n\niOS and macOS\n\nDynamically linked libraries are automatically loaded by\nthe dynamic linker when the app starts. Their constituent\nsymbols can be resolved using DynamicLibrary.process.\nYou can also get a handle to the library with\nDynamicLibrary.open to restrict the scope of\nsymbol resolution, but it\u2019s unclear how Apple\u2019s\nreview process handles this.\n\nSymbols statically linked into the application binary\ncan be resolved using DynamicLibrary.executable or\nDynamicLibrary.process.\n\nPlatform library\n\nTo link against a platform library,\nuse the following instructions:\n\nIn Xcode, open Runner.xcworkspace.\n\nSelect the target platform.\n\nClick + in the Linked Frameworks and Libraries\nsection.\n\nSelect the system library to link against.\n\nFirst-party library", "source": "https://docs.flutter.dev/development/platform-integration/ios/c-interop/index.html"} {"id": "93112a7869ac-7", "text": "Select the system library to link against.\n\nFirst-party library\n\nA first-party native library can be included either\nas source or as a (signed) .framework file.\nIt\u2019s probably possible to include statically linked\narchives as well, but it requires testing.\n\nSource code\n\nTo link directly to source code,\nuse the following instructions:\n\nIn Xcode, open Runner.xcworkspace.\n\nAdd the C/C++/Objective-C/Swift\nsource files to the Xcode project.\n\nAdd the following prefix to the\nexported symbol declarations to ensure they\nare visible to Dart:\n\n C/C++/Objective-C\n\n extern \"C\" /* <= C++ only */ __attribute__((visibility(\"default\"))) __attribute__((used))\n\n\n Swift\n\n \n@_cdecl(\"myFunctionName\")\n\nCompiled (dynamic) library", "source": "https://docs.flutter.dev/development/platform-integration/ios/c-interop/index.html"} {"id": "93112a7869ac-8", "text": "Compiled (dynamic) library\n\nTo link to a compiled dynamic library,\nuse the following instructions:\n\nIf a properly signed Framework file is present,\nopen Runner.xcworkspace.\n\nAdd the framework file to the Embedded Binaries\nsection.\n\nAlso add it to the Linked Frameworks & Libraries\nsection of the target in Xcode.\n\nOpen-source third-party library\n\nTo create a Flutter plugin that includes both\nC/C++/Objective-C and Dart code,\nuse the following instructions:\n\nIn your plugin project,\nopen ios/.podspec.\n\nAdd the native code to the source_files\nfield.\n\nThe native code is then statically linked into\nthe application binary of any app that uses\nthis plugin.\n\nClosed-source third-party library", "source": "https://docs.flutter.dev/development/platform-integration/ios/c-interop/index.html"} {"id": "93112a7869ac-9", "text": "Closed-source third-party library\n\nTo create a Flutter plugin that includes Dart\nsource code, but distribute the C/C++ library\nin binary form, use the following instructions:\n\nIn your plugin project,\nopen ios/.podspec.\n\nAdd a vendored_frameworks field.\nSee the CocoaPods example.\n\nWarning:\n Do not upload this plugin\n (or any plugin containing binary code) to pub.dev.\n Instead, this plugin should be downloaded\n from a trusted third-party,\n as shown in the CocoaPods example.\n\nStripping iOS symbols\n\nWhen creating a release archive (IPA),\nthe symbols are stripped by Xcode.\n\nIn Xcode, go to Target Runner > Build Settings > Strip Style.\n\nChange from All Symbols to Non-Global Symbols.", "source": "https://docs.flutter.dev/development/platform-integration/ios/c-interop/index.html"} {"id": "f101dae66193-0", "text": "iOS\n\nPlatform integration\n\niOS\n\nTopics:\n\nLeveraging Apple\u2019s system libraries\n\nAdding a splash screen\n\nAdding iOS App Clip support\n\nAdding iOS app extensions\n\nC interop\n\nHosting native iOS views\n\niOS debugging", "source": "https://docs.flutter.dev/development/platform-integration/ios/index.html"} {"id": "65be8373a65e-0", "text": "Adding an iOS App Clip target\n\nPlatform integration\n\niOS\n\nAdding an iOS App Clip target\n\nStep 1 - Open project\n\nStep 2 - Add an App Clip target\n\nStep 3 - Remove unneeded files\n\nStep 4 - Share build configurations\n\nStep 5 - Share code and assets\n\nOption 1 - Share everything\nOption 2 - Customize Flutter launch for App Clip\n\nStep 6 - Add App Clip associated domains\n\nStep 7 - Integrate Flutter\n\nStep 8 - Integrate plugins\n\nRun\n\nDebugging, hot reload\n\nImportant:\n This experimental preview currently exceeds the 10MB\n uncompressed IPA payload size limit and cannot be\n used in production (#71098).", "source": "https://docs.flutter.dev/development/platform-integration/ios/ios-app-clip/index.html"} {"id": "65be8373a65e-1", "text": "This guide describes how to manually add another\nFlutter-rendering iOS App Clip target to your\nexisting Flutter project or add-to-app project.\n\nWarning:\n This is an advanced guide and is best intended\n for audience with a working knowledge of iOS development.\n\nTo see a working sample, see the App Clip sample on GitHub.\n\nStep 1 - Open project\n\nOpen your iOS Xcode project, such as\nios/Runner.xcworkspace for full-Flutter apps.\n\nStep 2 - Add an App Clip target\n\n2.1\n\nClick on your project in the Project Navigator to show\nthe project settings.\n\nPress + at the bottom of the target list to add a new target.\n\n2.2\n\nSelect the App Clip type for your new target.\n\n2.3\n\nEnter your new target detail in the dialog.\n\nSelect Storyboard for Interface.", "source": "https://docs.flutter.dev/development/platform-integration/ios/ios-app-clip/index.html"} {"id": "65be8373a65e-2", "text": "Select Storyboard for Interface.\n\nSelect UIKit App Delegate for Life Cycle.\n\nSelect the same language as your original target for Language.\n\n(In other words, to simplify the setup,\ndon\u2019t create a Swift App Clip target for\nan Objective-C main target, and vice versa.)\n\n2.4\n\nIn the following dialog,\nactivate the new scheme for the new target.\n\nStep 3 - Remove unneeded files\n\n3.1\n\nIn the Project Navigator, in the newly created App Clip group,\ndelete everything except Info.plist and\n.entitlements.\n\nTip:\n For add-to-app users, it\u2019s up to the reader to decide\n how much of this template to keep to invoke\n FlutterViewController or FlutterEngine APIs\n from this code later.\n\nMove files to trash.\n\n3.2", "source": "https://docs.flutter.dev/development/platform-integration/ios/ios-app-clip/index.html"} {"id": "65be8373a65e-3", "text": "Move files to trash.\n\n3.2\n\nIf you don\u2019t use the SceneDelegate.swift file,\nremove the reference to it in the Info.plist.\n\nOpen the Info.plist file in the App Clip group.\nDelete the entire dictionary entry for\nApplication Scene Manifest.\n\nStep 4 - Share build configurations\n\nThis step isn\u2019t necessary for add-to-app projects\nsince add-to-app projects have their custom build\nconfigurations and versions.\n\n4.1\n\nBack in the project settings,\nselect the project entry now rather than any targets.\n\nIn the Info tab, under the Configurations\nexpandable group, expand the\nDebug, Profile, and Release entries.\n\nFor each, select the same value from the drop-down menu\nfor the App Clip target as the entry selected for the\nnormal app target.", "source": "https://docs.flutter.dev/development/platform-integration/ios/ios-app-clip/index.html"} {"id": "65be8373a65e-4", "text": "This gives your App Clip target access to Flutter\u2019s\nrequired build settings.\n\n4.2\n\nIn the App Clip group\u2019s Info.plist file, set:\n\nBuild version string (short) to $(FLUTTER_BUILD_NAME)\n\nBundle version to $(FLUTTER_BUILD_NUMBER)\n\nStep 5 - Share code and assets\n\nOption 1 - Share everything\n\nAssuming the intent is to show the same Flutter UI\nin the standard app as in the App Clip,\nshare the same code and assets.\n\nOption 2 - Customize Flutter launch for App Clip\n\nIn this case,\ndo not delete everything listed in Step 3.\nInstead, use the scaffolding and the iOS add-to-app APIs\nto perform a custom launch of Flutter.\nFor example to show a custom Flutter route.\n\nStep 6 - Add App Clip associated domains", "source": "https://docs.flutter.dev/development/platform-integration/ios/ios-app-clip/index.html"} {"id": "65be8373a65e-5", "text": "Step 6 - Add App Clip associated domains\n\nThis is a standard step for App Clip development.\nSee the official Apple documentation.\n\n6.1\n\nOpen the .entitlements file.\nAdd an Associated Domains Array type.\nAdd a row to the array with appclips:.\n\n6.2\n\nThe same associated domains entitlement needs to be added\nto your main app, as well.\n\nCopy the .entitlements file from your\nApp Clip group to your main app group and rename it to\nthe same name as your main target\nsuch as Runner.entitlements.\n\nOpen the file and delete the\nParent Application Identifiers\nentry for the main app\u2019s entitlement file\n(leave that entry for the App Clip\u2019s entitlement file).\n\n6.3", "source": "https://docs.flutter.dev/development/platform-integration/ios/ios-app-clip/index.html"} {"id": "65be8373a65e-6", "text": "6.3\n\nBack in the project settings, select the main app\u2019s target,\nopen the Build Settings tab.\nSet the Code Signing Entitlements setting to the\nrelative path of the second entitlements file\ncreated for the main app.\n\nStep 7 - Integrate Flutter\n\nThese steps are not necessary for add-to-app.\n\n7.1\n\nIn your App Clip\u2019s target\u2019s project settings,\nopen the Build Settings tab.\n\nFor setting Framework Search Paths, add 2 entries:\n\n$(inherited)\n\n$(PROJECT_DIR)/Flutter\n\nIn other words, the same as the main app target\u2019s build settings.\n\n7.2\n\nFor the Swift target,\nset the Objective-C Bridging Header\nbuild setting to Runner/Runner-Bridging-Header.h", "source": "https://docs.flutter.dev/development/platform-integration/ios/ios-app-clip/index.html"} {"id": "65be8373a65e-7", "text": "In other words,\nthe same as the main app target\u2019s build settings.\n\n7.3\n\nNow open the Build Phases tab. Press the + sign\nand select New Run Script Phase.\n\nDrag that new phase to below the Dependencies phase.\n\nExpand the new phase and add this line to the script content:\n\n$FLUTTER_ROOT\n\n/packages/flutter_tools/bin/xcode_backend.sh\" build\n\nIn other words,\nthe same as the main app target\u2019s build phases.\n\nThis ensures that your Flutter Dart code is compiled\nwhen running the App Clip target.\n\n7.4\n\nPress the + sign and select New Run Script Phase again.\nLeave it as the last phase.\n\nThis time, add:\n\n$FLUTTER_ROOT", "source": "https://docs.flutter.dev/development/platform-integration/ios/ios-app-clip/index.html"} {"id": "65be8373a65e-8", "text": "This time, add:\n\n$FLUTTER_ROOT\n\n/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin\n\nIn other words,\nthe same as the main app target\u2019s build phases.\n\nThis ensures that your Flutter app and engine are embedded\ninto the App Clip bundle.\n\nStep 8 - Integrate plugins\n\nWarning:\n CocoaPods version 1.10.0.beta.1 or higher is required\n to run Flutter apps with plugins.\n\n8.1\n\nOpen the Podfile for your Flutter project\nor add-to-app host project.\n\nFor full-Flutter apps, replace the following section:\n\ntarget\n\n'Runner'\n\ndo\n\nuse_frameworks!\n\nuse_modular_headers!\n\nflutter_install_all_ios_pods", "source": "https://docs.flutter.dev/development/platform-integration/ios/ios-app-clip/index.html"} {"id": "65be8373a65e-9", "text": "flutter_install_all_ios_pods\n\nFile\n\ndirname\n\nFile\n\nrealpath\n\n__FILE__\n\n))\n\nend\n\nwith:\n\nuse_frameworks!\n\nuse_modular_headers!\n\nflutter_install_all_ios_pods\n\nFile\n\ndirname\n\nFile\n\nrealpath\n\n__FILE__\n\n))\n\ntarget\n\n'Runner'\n\ntarget\n\n''\n\nAt the top of the file,\nalso uncomment platform :ios, '11.0' and set the\nversion to the lowest of the two target\u2019s iOS\nDeployment Target.\n\nFor add-to-app, add to:\n\ntarget", "source": "https://docs.flutter.dev/development/platform-integration/ios/ios-app-clip/index.html"} {"id": "65be8373a65e-10", "text": "For add-to-app, add to:\n\ntarget\n\n'MyApp'\n\ndo\n\ninstall_all_flutter_pods\n\nflutter_application_path\n\nend\n\nwith:\n\ntarget\n\n'MyApp'\n\ndo\n\ninstall_all_flutter_pods\n\nflutter_application_path\n\nend\n\ntarget\n\n''\n\ninstall_all_flutter_pods\n\nflutter_application_path\n\nend\n\n8.2\n\nFrom the command line,\nenter your Flutter project directory\nand then install the pod:\n\ncd ios\npod install\n\nRun", "source": "https://docs.flutter.dev/development/platform-integration/ios/ios-app-clip/index.html"} {"id": "65be8373a65e-11", "text": "cd ios\npod install\n\nRun\n\nYou can now run your App Clip target from Xcode by\nselecting your App Clip target from the scheme drop-down,\nselecting an iOS 14 device and pressing run.\n\nTo test launching an App Clip from the beginning,\nalso consult Apple\u2019s doc on\nTesting Your App Clip\u2019s Launch Experience.\n\nDebugging, hot reload\n\nUnfortunately flutter attach cannot auto-discover\nthe Flutter session in an App Clip due to\nnetworking permission restrictions.\n\nIn order to debug your App Clip and use functionalities\nlike hot reload, you must look for the Observatory URI\nfrom the console output in Xcode after running.\n[PENDING: Is this still true?]\n\nYou must then copy paste it back into the\nflutter attach command to connect.\n\nFor example:\n\nflutter attach --debug-uri ", "source": "https://docs.flutter.dev/development/platform-integration/ios/ios-app-clip/index.html"} {"id": "f3be2054f0ca-0", "text": "iOS debugging\n\nPlatform integration\n\niOS\n\niOS debugging\n\nDue to security around\nlocal network permissions in iOS 14 or later,\nyou must accept a permission dialog box to enable\nFlutter debugging functionalities such as hot-reload\nand DevTools.\n\nThis affects debug and profile builds only and won\u2019t\nappear in release builds. You can also allow this\npermission by enabling\nSettings > Privacy > Local Network > Your App.", "source": "https://docs.flutter.dev/development/platform-integration/ios/ios-debugging/index.html"} {"id": "fe444cf9bb3b-0", "text": "Hosting native iOS views in your Flutter app with Platform Views\n\nPlatform integration\n\niOS\n\niOS platform-views\n\nOn the Dart side\n\nOn the platform side\n\nPutting it together\n\nPerformance\n\nPlatform views allow you to embed native views in a Flutter app,\nso you can apply transforms, clips, and opacity to the native view\nfrom Dart.\n\nThis allows you, for example, to use the native\nGoogle Maps from the Android and iOS SDKs\ndirectly inside your Flutter app.\n\nNote:\n This page discusses how to host your own native views\n within a Flutter app.\n If you\u2019d like to embed native Android views\n in your Flutter app,\n see Hosting native Android views.\n\niOS only uses Hybrid composition,\nwhich means that the native\nUIView is appended to the view hierarchy.", "source": "https://docs.flutter.dev/development/platform-integration/ios/platform-views/index.html"} {"id": "fe444cf9bb3b-1", "text": "To create a platform view on iOS,\nuse the following instructions:\n\nOn the Dart side\n\nOn the Dart side, create a Widget\nand add the following build implementation,\nas shown in the following steps.\n\nIn your Dart file, for example\ndo the following in native_view_example.dart:\n\nAdd the following imports:\n\n \nimport 'package:flutter/foundation.dart';\nimport 'package:flutter/services.dart';\n\nImplement a build() method:\n\n \nWidget build(BuildContext context) {\n // This is used in the platform side to register the view.\n const String viewType = '';\n // Pass parameters to the platform side.\n final Map creationParams = {};", "source": "https://docs.flutter.dev/development/platform-integration/ios/platform-views/index.html"} {"id": "fe444cf9bb3b-2", "text": "return UiKitView(\n viewType: viewType,\n layoutDirection: TextDirection.ltr,\n creationParams: creationParams,\n creationParamsCodec: const StandardMessageCodec(),\n );\n}\n\nFor more information, see the API docs for:\nUIKitView.\n\nOn the platform side\n\nOn the platform side, you use the either Swift or Objective-C:\n\nSwift\n\nObjective-C\n\nImplement the factory and the platform view.\nThe FLNativeViewFactory creates the platform view,\nand the platform view provides a reference to the UIView.\nFor example, FLNativeView.swift:\n\nimport\n\nFlutter\n\nimport\n\nUIKit\n\nclass\n\nFLNativeViewFactory\n\nNSObject\n\nFlutterPlatformViewFactory\n\nprivate\n\nvar\n\nmessenger", "source": "https://docs.flutter.dev/development/platform-integration/ios/platform-views/index.html"} {"id": "fe444cf9bb3b-3", "text": "private\n\nvar\n\nmessenger\n\nFlutterBinaryMessenger\n\ninit\n\nmessenger\n\nFlutterBinaryMessenger\n\nself\n\nmessenger\n\nmessenger\n\nsuper\n\ninit\n\n()\n\nfunc\n\ncreate\n\nwithFrame\n\nframe\n\nCGRect\n\nviewIdentifier\n\nviewId\n\nInt64\n\narguments\n\nargs\n\nAny\n\n>\n\nFlutterPlatformView\n\nreturn\n\nFLNativeView\n\nframe\n\nframe\n\nviewIdentifier\n\nviewId\n\narguments\n\nargs\n\nbinaryMessenger\n\nmessenger\n\nclass", "source": "https://docs.flutter.dev/development/platform-integration/ios/platform-views/index.html"} {"id": "fe444cf9bb3b-4", "text": "binaryMessenger\n\nmessenger\n\nclass\n\nFLNativeView\n\nNSObject\n\nFlutterPlatformView\n\nprivate\n\nvar\n\n_view\n\nUIView\n\ninit\n\nframe\n\nCGRect\n\nviewIdentifier\n\nviewId\n\nInt64\n\narguments\n\nargs\n\nAny\n\n?,\n\nbinaryMessenger\n\nmessenger\n\nFlutterBinaryMessenger\n\n_view\n\nUIView\n\n()\n\nsuper\n\ninit\n\n()\n\n// iOS views can be created here\n\ncreateNativeView\n\nview\n\n_view\n\nfunc\n\nview\n\n()", "source": "https://docs.flutter.dev/development/platform-integration/ios/platform-views/index.html"} {"id": "fe444cf9bb3b-5", "text": "func\n\nview\n\n()\n\n>\n\nUIView\n\nreturn\n\n_view\n\nfunc\n\ncreateNativeView\n\nview\n\n_view\n\nUIView\n\n){\n\n_view\n\nbackgroundColor\n\nUIColor\n\nblue\n\nlet\n\nnativeLabel\n\nUILabel\n\n()\n\nnativeLabel\n\ntext\n\n\"Native text from iOS\"\n\nnativeLabel\n\ntextColor\n\nUIColor\n\nwhite\n\nnativeLabel\n\ntextAlignment\n\ncenter\n\nnativeLabel\n\nframe\n\nCGRect\n\nwidth\n\n180\n\nheight", "source": "https://docs.flutter.dev/development/platform-integration/ios/platform-views/index.html"} {"id": "fe444cf9bb3b-6", "text": "width\n\n180\n\nheight\n\n48.0\n\n_view\n\naddSubview\n\nnativeLabel\n\nFinally, register the platform view.\nThis can be done in an app or a plugin.\n\nFor app registration,\nmodify the App\u2019s AppDelegate.swift:\n\nimport\n\nFlutter\n\nimport\n\nUIKit\n\n@UIApplicationMain\n\n@objc\n\nclass\n\nAppDelegate\n\nFlutterAppDelegate\n\noverride\n\nfunc\n\napplication\n\napplication\n\nUIApplication\n\ndidFinishLaunchingWithOptions\n\nlaunchOptions\n\nUIApplication\n\nLaunchOptionsKey\n\nAny\n\n]?\n\n>\n\nBool", "source": "https://docs.flutter.dev/development/platform-integration/ios/platform-views/index.html"} {"id": "fe444cf9bb3b-7", "text": "]?\n\n>\n\nBool\n\nGeneratedPluginRegistrant\n\nregister\n\nwith\n\nself\n\nweak\n\nvar\n\nregistrar\n\nself\n\nregistrar\n\nforPlugin\n\n\"plugin-name\"\n\nlet\n\nfactory\n\nFLNativeViewFactory\n\nmessenger\n\nregistrar\n\n!.\n\nmessenger\n\n())\n\nself\n\nregistrar\n\nforPlugin\n\n\"\"\n\n!.\n\nregister\n\nfactory\n\nwithId\n\n\"\"\n\nreturn\n\nsuper\n\napplication\n\napplication", "source": "https://docs.flutter.dev/development/platform-integration/ios/platform-views/index.html"} {"id": "fe444cf9bb3b-8", "text": "return\n\nsuper\n\napplication\n\napplication\n\ndidFinishLaunchingWithOptions\n\nlaunchOptions\n\nFor plugin registration,\nmodify the plugin\u2019s main file\n(for example, FLPlugin.swift):\n\nimport\n\nFlutter\n\nimport\n\nUIKit\n\nclass\n\nFLPlugin\n\nNSObject\n\nFlutterPlugin\n\npublic\n\nstatic\n\nfunc\n\nregister\n\nwith\n\nregistrar\n\nFlutterPluginRegistrar\n\nlet\n\nfactory\n\nFLNativeViewFactory\n\nmessenger\n\nregistrar\n\nmessenger\n\nregistrar\n\nregister\n\nfactory\n\nwithId", "source": "https://docs.flutter.dev/development/platform-integration/ios/platform-views/index.html"} {"id": "fe444cf9bb3b-9", "text": "register\n\nfactory\n\nwithId\n\n\"\"\n\nAdd the headers for the factory and the platform view.\nFor example, FLNativeView.h:\n\n#import \n\n@interface\n\nFLNativeViewFactory\n\nNSObject\n\nFlutterPlatformViewFactory\n\ninstancetype\n\ninitWithMessenger\n\n:(\n\nNSObject\n\nFlutterBinaryMessenger\n\n>*\n\nmessenger\n\n@end\n\n@interface\n\nFLNativeView\n\nNSObject\n\nFlutterPlatformView\n\ninstancetype\n\ninitWithFrame\n\n:(\n\nCGRect\n\nframe\n\nviewIdentifier\n\n:(", "source": "https://docs.flutter.dev/development/platform-integration/ios/platform-views/index.html"} {"id": "fe444cf9bb3b-10", "text": "frame\n\nviewIdentifier\n\n:(\n\nint64_t\n\nviewId\n\narguments\n\n:(\n\nid\n\n_Nullable\n\nargs\n\nbinaryMessenger\n\n:(\n\nNSObject\n\nFlutterBinaryMessenger\n\n>*\n\nmessenger\n\nUIView\n\nview\n\n@end\n\nImplement the factory and the platform view.\nThe FLNativeViewFactory creates the platform view,\nand the platform view provides a reference to the\nUIView. For example, FLNativeView.m:\n\n#import \"FLNativeView.h\"\n\n@implementation\n\nFLNativeViewFactory\n\nNSObject\n\nFlutterBinaryMessenger\n\n>*\n\n_messenger", "source": "https://docs.flutter.dev/development/platform-integration/ios/platform-views/index.html"} {"id": "fe444cf9bb3b-11", "text": ">*\n\n_messenger\n\ninstancetype\n\ninitWithMessenger\n\n:(\n\nNSObject\n\nFlutterBinaryMessenger\n\n>*\n\nmessenger\n\nself\n\nsuper\n\ninit\n\n];\n\nif\n\nself\n\n_messenger\n\nmessenger\n\nreturn\n\nself\n\nNSObject\n\nFlutterPlatformView\n\n>*\n\ncreateWithFrame\n\n:(\n\nCGRect\n\nframe\n\nviewIdentifier\n\n:(\n\nint64_t\n\nviewId\n\narguments\n\n:(\n\nid\n\n_Nullable\n\nargs\n\nreturn", "source": "https://docs.flutter.dev/development/platform-integration/ios/platform-views/index.html"} {"id": "fe444cf9bb3b-12", "text": "_Nullable\n\nargs\n\nreturn\n\n[[\n\nFLNativeView\n\nalloc\n\ninitWithFrame\n\nframe\n\nviewIdentifier:\n\nviewId\n\narguments:\n\nargs\n\nbinaryMessenger:\n\n_messenger\n\n];\n\n@end\n\n@implementation\n\nFLNativeView\n\nUIView\n\n_view\n\ninstancetype\n\ninitWithFrame\n\n:(\n\nCGRect\n\nframe\n\nviewIdentifier\n\n:(\n\nint64_t\n\nviewId\n\narguments\n\n:(\n\nid\n\n_Nullable\n\nargs\n\nbinaryMessenger\n\n:(", "source": "https://docs.flutter.dev/development/platform-integration/ios/platform-views/index.html"} {"id": "fe444cf9bb3b-13", "text": "args\n\nbinaryMessenger\n\n:(\n\nNSObject\n\nFlutterBinaryMessenger\n\n>*\n\nmessenger\n\nif\n\nself\n\nsuper\n\ninit\n\n])\n\n_view\n\n[[\n\nUIView\n\nalloc\n\ninit\n\n];\n\nreturn\n\nself\n\nUIView\n\nview\n\nreturn\n\n_view\n\n@end\n\nFinally, register the platform view.\nThis can be done in an app or a plugin.\n\nFor app registration,\nmodify the App\u2019s AppDelegate.m:\n\n#import \"AppDelegate.h\"\n#import \"FLNativeView.h\"\n#import \"GeneratedPluginRegistrant.h\"\n\n@implementation", "source": "https://docs.flutter.dev/development/platform-integration/ios/platform-views/index.html"} {"id": "fe444cf9bb3b-14", "text": "@implementation\n\nAppDelegate\n\nBOOL\n\napplication\n\n:(\n\nUIApplication\n\napplication\n\ndidFinishLaunchingWithOptions\n\n:(\n\nNSDictionary\n\nlaunchOptions\n\nGeneratedPluginRegistrant\n\nregisterWithRegistry\n\nself\n\n];\n\nNSObject\n\nFlutterPluginRegistrar\n\n>*\n\nregistrar\n\nself\n\nregistrarForPlugin\n\n@\"plugin-name\"\n\n];\n\nFLNativeViewFactory\n\nfactory\n\n[[\n\nFLNativeViewFactory\n\nalloc\n\ninitWithMessenger\n\nregistrar\n\nmessenger\n\n];\n\n[[\n\nself", "source": "https://docs.flutter.dev/development/platform-integration/ios/platform-views/index.html"} {"id": "fe444cf9bb3b-15", "text": "];\n\n[[\n\nself\n\nregistrarForPlugin\n\n@\"\"\n\nregisterViewFactory\n\nfactory\n\nwithId:\n\n@\"\"\n\n];\n\nreturn\n\nsuper\n\napplication\n\napplication\n\ndidFinishLaunchingWithOptions\n\nlaunchOptions\n\n];\n\n@end\n\nFor plugin registration,\nmodify the main plugin file\n(for example, FLPlugin.m):\n\n#import \n#import \"FLNativeView.h\"\n\n@interface\n\nFLPlugin\n\nNSObject\n\nFlutterPlugin\n\n@end\n\n@implementation\n\nFLPlugin\n\nvoid", "source": "https://docs.flutter.dev/development/platform-integration/ios/platform-views/index.html"} {"id": "fe444cf9bb3b-16", "text": "@implementation\n\nFLPlugin\n\nvoid\n\nregisterWithRegistrar\n\n:(\n\nNSObject\n\nFlutterPluginRegistrar\n\n>*\n\nregistrar\n\nFLNativeViewFactory\n\nfactory\n\n[[\n\nFLNativeViewFactory\n\nalloc\n\ninitWithMessenger\n\nregistrar\n\nmessenger\n\n];\n\nregistrar\n\nregisterViewFactory\n\nfactory\n\nwithId\n\n@\"\"\n\n];\n\n@end\n\nFor more information, see the API docs for:\n\nFlutterPlatformViewFactory\n\nFlutterPlatformView\n\nPlatformView\n\nPutting it together", "source": "https://docs.flutter.dev/development/platform-integration/ios/platform-views/index.html"} {"id": "fe444cf9bb3b-17", "text": "PlatformView\n\nPutting it together\n\nWhen implementing the build() method in Dart,\nyou can use defaultTargetPlatform\nto detect the platform, and decide what widget to use:\n\nPerformance\n\nPlatform views in Flutter come with performance trade-offs.\n\nFor example, in a typical Flutter app, the Flutter UI is composed\non a dedicated raster thread. This allows Flutter apps to be fast,\nas the main platform thread is rarely blocked.\n\nWhile a platform view is rendered with hybrid composition,\nthe Flutter UI is composed from the platform thread,\nwhich competes with other tasks like handling OS or plugin messages.\n\nPrior to Android 10, hybrid composition copied each Flutter frame\nout of the graphic memory into main memory, and then copied it back\nto a GPU texture. As this copy happens per frame, the performance of\nthe entire Flutter UI might be impacted. In Android 10 or above, the\ngraphics memory is copied only once.", "source": "https://docs.flutter.dev/development/platform-integration/ios/platform-views/index.html"} {"id": "fe444cf9bb3b-18", "text": "Virtual display, on the other hand,\nmakes each pixel of the native view\nflow through additional intermediate graphic buffers,\nwhich cost graphic memory and drawing performance.\n\nFor complex cases, there are some techniques that\ncan be used to mitigate these issues.\n\nFor example, you could use a placeholder texture\nwhile an animation is happening in Dart.\nIn other words, if an animation is slow while a\nplatform view is rendered,\nthen consider taking a screenshot of the\nnative view and rendering it as a texture.\n\nFor more information, see:\n\nTextureLayer\n\nTextureRegistry\n\nFlutterTextureRegistry\n\nFlutterImageView", "source": "https://docs.flutter.dev/development/platform-integration/ios/platform-views/index.html"} {"id": "0b3eb25415ca-0", "text": "Adding a splash screen to your iOS app\n\nPlatform integration\n\niOS\n\nSplash screen\n\nSplash screens (also known as launch screens) provide\na simple initial experience while your iOS app loads.\nThey set the stage for your application,\nwhile allowing time for the app engine\nto load and your app to initialize.\n\nAll apps submitted to the Apple App Store\nmust provide a launch screen\nwith an Xcode storyboard.\n\nCustomize the launch screen\n\nThe default Flutter template includes an Xcode\nstoryboard named LaunchScreen.storyboard\nthat can be customized your own assets.\nBy default, the storyboard displays a blank image,\nbut you can change this. To do so,\nopen the Flutter app\u2019s Xcode project\nby typing open ios/Runner.xcworkspace\nfrom the root of your app directory.\nThen select Runner/Assets.xcassets\nfrom the Project Navigator and\ndrop in the desired images to the LaunchImage image set.", "source": "https://docs.flutter.dev/development/platform-integration/ios/splash-screen/index.html"} {"id": "0b3eb25415ca-1", "text": "Apple provides detailed guidance for launch screens as\npart of the Human Interface Guidelines.", "source": "https://docs.flutter.dev/development/platform-integration/ios/splash-screen/index.html"} {"id": "fd713daad317-0", "text": "Building Linux apps with Flutter\n\nPlatform integration\n\nLinux\n\nLinux development\n\nIntegrating with Linux\n\nPreparing Linux apps for distribution\n\nThis page discusses considerations unique to building\nLinux apps with Flutter, including shell integration\nand preparation of apps for distribution.\n\nIntegrating with Linux\n\nThe Linux programming interface,\ncomprising library functions and system calls,\nis designed around the C language and ABI.\nFortunately, Dart provides dart:ffi,\nwhich is designed to enable Dart programs\nto efficiently call into C libraries.\nFFI provides Flutter apps with the ability to\nallocate native memory with malloc or calloc,\nsupport for pointers, structs and callbacks,\nand ABI types like long and size_t.\n\nFor more information about calling C libraries\nfrom Flutter, see C interop using dart:ffi.", "source": "https://docs.flutter.dev/development/platform-integration/linux/building/index.html"} {"id": "fd713daad317-1", "text": "Many apps will benefit from using a package that\nwraps the underlying library\ncalls in a more convenient, idiomatic Dart API.\nCanonical has built a series of packages\nwith a focus on enabling Dart and Flutter on Linux,\nincluding support for desktop notifications,\ndbus, network management, and Bluetooth.\n\nMore generally, many other packages support Linux,\nincluding common packages such as url_launcher,\nshared_preferences, file_selector, and\npath_provider.\n\nPreparing Linux apps for distribution\n\nThe executable binary can be found in your project under\nbuild/linux//bundle/. Alongside your\nexecutable binary in the bundle directory there are\ntwo directories:\n\nlib contains the required .so library files\n\ndata contains the application\u2019s data assets,\n such as fonts or images", "source": "https://docs.flutter.dev/development/platform-integration/linux/building/index.html"} {"id": "fd713daad317-2", "text": "data contains the application\u2019s data assets,\n such as fonts or images\n\nIn addition to these files, your application also\nrelies on various operating system libraries that\nit\u2019s been compiled against.\nYou can see the full list by running ldd\nagainst your application. For example,\nassuming you have a Flutter desktop application\ncalled linux_desktop_test, you could inspect\nthe system libraries it depends upon as follows:\n\nflutter build linux\n\n-release\n\nldd build/linux/release/bundle/linux_desktop_test\n\nTo wrap up this application for distribution\nyou need to include everything in the bundle directory,\nand make sure the Linux system you are installing\nit on has all of the system libraries required.\nThis may be as simple as:\n\nsudo apt-get\n\ninstall libgtk-3-0 libblkid1 liblzma5", "source": "https://docs.flutter.dev/development/platform-integration/linux/building/index.html"} {"id": "fd713daad317-3", "text": "install libgtk-3-0 libblkid1 liblzma5\n\nFor information on publishing a Linux application\nto the Snap Store, see\nBuild and release a Linux application to the Snap Store.", "source": "https://docs.flutter.dev/development/platform-integration/linux/building/index.html"} {"id": "7bb9f5c56e33-0", "text": "Linux\n\nPlatform integration\n\nLinux\n\nTopics:\n\nBuilding Linux apps", "source": "https://docs.flutter.dev/development/platform-integration/linux/index.html"} {"id": "f68346b87a9e-0", "text": "Building macOS apps with Flutter\n\nPlatform integration\n\nmacOS\n\nmacOS development\n\nIntegrating with macOS look and feel\n\nBuilding macOS apps\n\nEntitlements and the App Sandbox\n\nSetting up entitlements\n\nHardened Runtime\n\nThis page discusses considerations unique to building\nmacOS apps with Flutter, including shell integration\nand distribution of macOS apps through the Apple Store.\n\nIntegrating with macOS look and feel\n\nWhile you can use any visual style or theme you choose\nto build a macOS app, you might want to adapt your app\nto more fully align with the macOS look and feel.\nFlutter includes the Cupertino widget set,\nwhich provides a set of widgets for\nthe current iOS design language.\nMany of these widgets, including sliders,\nswitches and segmented controls,\nare also appropriate for use on macOS.", "source": "https://docs.flutter.dev/development/platform-integration/macos/building/index.html"} {"id": "f68346b87a9e-1", "text": "Alternatively, you might find the macos_ui\npackage a good fit for your needs.\nThis package provides widgets and themes that\nimplement the macOS design language,\nincluding a MacosWindow frame and scaffold,\ntoolbars, pulldown and\npop-up buttons, and modal dialogs.\n\nBuilding macOS apps\n\nTo distribute your macOS application, you can either\ndistribute it through the macOS App Store,\nor you can distribute the .app itself,\nperhaps from your own website.\nAs of macOS 10.14.5, you need to notarize\nyour macOS application before distributing\nit outside of the macOS App Store.\n\nThe first step in both of the above processes\ninvolves working with your application inside of Xcode.\nTo be able to compile your application from inside of\nXcode you first need to build the application for release\nusing the flutter build command, then open the\nFlutter macOS Runner application.", "source": "https://docs.flutter.dev/development/platform-integration/macos/building/index.html"} {"id": "f68346b87a9e-2", "text": "Once inside of Xcode, follow either Apple\u2019s\ndocumentation on notarizing macOS Applications, or\non distributing an application through the App Store.\nYou should also read through the\nmacOS-specific support\nsection below to understand how entitlements,\nthe App Sandbox, and the Hardened Runtime\nimpact your distributable application.\n\nBuild and release a macOS app provides a more detailed\nstep-by-step walkthrough of releasing a Flutter app to the\nApp Store.\n\nEntitlements and the App Sandbox\n\nmacOS builds are configured by default to be signed,\nand sandboxed with App Sandbox.\nThis means that if you want to confer specific\ncapabilities or services on your macOS app,\nsuch as the following:\n\nAccessing the internet\n\nCapturing movies and images from the built-in camera\n\nAccessing files\n\nThen you must set up specific entitlements in Xcode.\nThe following section tells you how to do this.", "source": "https://docs.flutter.dev/development/platform-integration/macos/building/index.html"} {"id": "f68346b87a9e-3", "text": "Setting up entitlements\n\nManaging sandbox settings is done in the\nmacos/Runner/*.entitlements files. When editing\nthese files, you shouldn\u2019t remove the original\nRunner-DebugProfile.entitlements exceptions\n(that support incoming network connections and JIT),\nas they\u2019re necessary for the debug and profile\nmodes to function correctly.\n\nIf you\u2019re used to managing entitlement files through\nthe Xcode capabilities UI, be aware that the capabilities\neditor updates only one of the two files or,\nin some cases, it creates a whole new entitlements\nfile and switches the project to use it for all configurations.\nEither scenario causes issues. We recommend that you\nedit the files directly. Unless you have a very specific\nreason, you should always make identical changes to both files.", "source": "https://docs.flutter.dev/development/platform-integration/macos/building/index.html"} {"id": "f68346b87a9e-4", "text": "If you keep the App Sandbox enabled (which is required if you\nplan to distribute your application in the App Store),\nyou need to manage entitlements for your application\nwhen you add certain plugins or other native functionality.\nFor instance, using the file_chooser plugin\nrequires adding either the\ncom.apple.security.files.user-selected.read-only or\ncom.apple.security.files.user-selected.read-write entitlement.\nAnother common entitlement is\ncom.apple.security.network.client,\nwhich you must add if you make any network requests.\n\nWithout the com.apple.security.network.client entitlement,\nfor example, network requests fail with a message such as:\n\nflutter: SocketException: Connection failed\n(OS Error: Operation not permitted, errno = 1),\naddress = example.com, port = 443\n\nFor more information on these topics,\nsee App Sandbox and Entitlements\non the Apple Developer site.\n\nHardened Runtime", "source": "https://docs.flutter.dev/development/platform-integration/macos/building/index.html"} {"id": "f68346b87a9e-5", "text": "Hardened Runtime\n\nIf you choose to distribute your application outside\nof the App Store, you need to notarize your application\nfor compatibility with macOS 10.15+.\nThis requires enabling the Hardened Runtime option.\nOnce you have enabled it, you need a valid signing\ncertificate in order to build.\n\nBy default, the entitlements file allows JIT for\ndebug builds but, as with App Sandbox, you might\nneed to manage other entitlements.\nIf you have both App Sandbox and Hardened\nRuntime enabled, you might need to add multiple\nentitlements for the same resource.\nFor instance, microphone access would require both\ncom.apple.security.device.audio-input (for Hardened Runtime)\nand com.apple.security.device.microphone (for App Sandbox).\n\nFor more information on this topic,\nsee Hardened Runtime on the Apple Developer site.", "source": "https://docs.flutter.dev/development/platform-integration/macos/building/index.html"} {"id": "5c3fda7a6c0c-0", "text": "Binding to native macOS code using dart:ffi\n\nPlatform integration\n\nmacOS\n\nBinding to native macOS code using dart:ffi\n\nDynamic vs static linking\n\nStep 1: Create a plugin\n\nStep 2: Add C/C++ sources\n\nStep 3: Load the code using the FFI library\n\nOther use cases\n\niOS and macOS\n\nPlatform library\nFirst-party library\nSource code\nCompiled (dynamic) library\nCompiled (dynamic) library (macOS)\n\nFlutter mobile and desktop apps can use the\ndart:ffi library to call native C APIs.\nFFI stands for foreign function interface.\nOther terms for similar functionality include\nnative interface and language bindings.", "source": "https://docs.flutter.dev/development/platform-integration/macos/c-interop/index.html"} {"id": "5c3fda7a6c0c-1", "text": "Note:\n This page describes using the dart:ffi library\n in macOS desktop apps.\n For information on Android, see\n Binding to native Android code using dart:ffi.\n For information on iOS, see\n Binding to native iOS code using dart:ffi.\n This feature is not yet supported for web plugins.\n\nBefore your library or program can use the FFI library\nto bind to native code, you must ensure that the\nnative code is loaded and its symbols are visible to Dart.\nThis page focuses on compiling, packaging,\nand loading macOS native code within a Flutter plugin or app.\n\nThis tutorial demonstrates how to bundle C/C++\nsources in a Flutter plugin and bind to them using\nthe Dart FFI library on macOS.\nIn this walkthrough, you\u2019ll create a C function\nthat implements 32-bit addition and then\nexposes it through a Dart plugin named \u201cnative_add\u201d.\n\nDynamic vs static linking", "source": "https://docs.flutter.dev/development/platform-integration/macos/c-interop/index.html"} {"id": "5c3fda7a6c0c-2", "text": "Dynamic vs static linking\n\nA native library can be linked into an app either\ndynamically or statically. A statically linked library\nis embedded into the app\u2019s executable image,\nand is loaded when the app starts.\n\nSymbols from a statically linked library can be\nloaded using DynamicLibrary.executable or\nDynamicLibrary.process.\n\nA dynamically linked library, by contrast, is distributed\nin a separate file or folder within the app,\nand loaded on-demand. On macOS, the dynamically linked\nlibrary is distributed as a .framework folder.\n\nA dynamically linked library can be loaded into\nDart using DynamicLibrary.open.\n\nAPI documentation is available from the Dart dev channel:\nDart API reference documentation.\n\nStep 1: Create a plugin\n\nIf you already have a plugin, skip this step.\n\nTo create a plugin called \u201cnative_add\u201d,\ndo the following:\n\nflutter create\n\n-platforms\n\n=macos", "source": "https://docs.flutter.dev/development/platform-integration/macos/c-interop/index.html"} {"id": "5c3fda7a6c0c-3", "text": "flutter create\n\n-platforms\n\n=macos\n\n-template\n\n=plugin native_add\n\ncd native_add\n\nNote:\n You can exclude platforms from --platforms that you don\u2019t want\n to build to. However, you need to include the platform of \n the device you are testing on.\n\nStep 2: Add C/C++ sources\n\nYou need to inform the macOS build system about the\nnative code so the code can be compiled\nand linked appropriately into the final application.\n\nAdd the sources to the macos folder,\nbecause CocoaPods doesn\u2019t allow including sources\nabove the podspec file.\n\nThe FFI library can only bind against C symbols,\nso in C++ these symbols must be marked extern C.\nYou should also add attributes to indicate that the\nsymbols are referenced from Dart,\nto prevent the linker from discarding the symbols\nduring link-time optimization.", "source": "https://docs.flutter.dev/development/platform-integration/macos/c-interop/index.html"} {"id": "5c3fda7a6c0c-4", "text": "For example,\nto create a C++ file named macos/Classes/native_add.cpp,\nuse the following instructions. (Note that the template\nhas already created this file for you.) Start from the\nroot directory of your project:\n\ncat\n\n> macos/Classes/native_add.cpp\n\n<<\n\nEOF\n\n#include \n\nextern \"C\" __attribute__((visibility(\"default\"))) __attribute__((used))\nint32_t native_add(int32_t x, int32_t y) {\n return x + y;\n}\n\nEOF\n\nOn macOS, you need to tell Xcode to statically link the file:\n\nIn Xcode, open Runner.xcworkspace.\n\nAdd the C/C++/Objective-C/Swift\nsource files to the Xcode project.\n\nStep 3: Load the code using the FFI library", "source": "https://docs.flutter.dev/development/platform-integration/macos/c-interop/index.html"} {"id": "5c3fda7a6c0c-5", "text": "Step 3: Load the code using the FFI library\n\nIn this example, you can add the following code to\nlib/native_add.dart. However the location of the\nDart binding code isn\u2019t important.\n\nFirst, you must create a DynamicLibrary handle to\nthe native code.\n\nimport\n\n'dart:ffi'\n\n// For FFI\n\nfinal\n\nDynamicLibrary\n\nnativeAddLib\n\nDynamicLibrary\n\nprocess\n\n();\n\nWith a handle to the enclosing library,\nyou can resolve the native_add symbol:\n\nFinally, you can call it. To demonstrate this within\nthe auto-generated \u201cexample\u201d app (example/lib/main.dart):\n\nOther use cases\n\niOS and macOS", "source": "https://docs.flutter.dev/development/platform-integration/macos/c-interop/index.html"} {"id": "5c3fda7a6c0c-6", "text": "Other use cases\n\niOS and macOS\n\nDynamically linked libraries are automatically loaded by\nthe dynamic linker when the app starts. Their constituent\nsymbols can be resolved using DynamicLibrary.process.\nYou can also get a handle to the library with\nDynamicLibrary.open to restrict the scope of\nsymbol resolution, but it\u2019s unclear how Apple\u2019s\nreview process handles this.\n\nSymbols statically linked into the application binary\ncan be resolved using DynamicLibrary.executable or\nDynamicLibrary.process.\n\nPlatform library\n\nTo link against a platform library,\nuse the following instructions:\n\nIn Xcode, open Runner.xcworkspace.\n\nSelect the target platform.\n\nClick + in the Linked Frameworks and Libraries\nsection.\n\nSelect the system library to link against.\n\nFirst-party library", "source": "https://docs.flutter.dev/development/platform-integration/macos/c-interop/index.html"} {"id": "5c3fda7a6c0c-7", "text": "Select the system library to link against.\n\nFirst-party library\n\nA first-party native library can be included either\nas source or as a (signed) .framework file.\nIt\u2019s probably possible to include statically linked\narchives as well, but it requires testing.\n\nSource code\n\nTo link directly to source code,\nuse the following instructions:\n\nIn Xcode, open Runner.xcworkspace.\n\nAdd the C/C++/Objective-C/Swift\nsource files to the Xcode project.\n\nAdd the following prefix to the\nexported symbol declarations to ensure they\nare visible to Dart:\n\n C/C++/Objective-C\n\n extern \"C\" /* <= C++ only */ __attribute__((visibility(\"default\"))) __attribute__((used))\n\n\n Swift\n\n \n@_cdecl(\"myFunctionName\")\n\nCompiled (dynamic) library", "source": "https://docs.flutter.dev/development/platform-integration/macos/c-interop/index.html"} {"id": "5c3fda7a6c0c-8", "text": "Compiled (dynamic) library\n\nTo link to a compiled dynamic library,\nuse the following instructions:\n\nIf a properly signed Framework file is present,\nopen Runner.xcworkspace.\n\nAdd the framework file to the Embedded Binaries\nsection.\n\nAlso add it to the Linked Frameworks & Libraries\nsection of the target in Xcode.\n\nCompiled (dynamic) library (macOS)\n\nTo add a closed source library to a\nFlutter macOS Desktop app,\nuse the following instructions:\n\nFollow the instructions for Flutter desktop to create\na Flutter desktop app.", "source": "https://docs.flutter.dev/development/platform-integration/macos/c-interop/index.html"} {"id": "5c3fda7a6c0c-9", "text": "Follow the instructions for Flutter desktop to create\na Flutter desktop app.\n\nOpen the yourapp/macos/Runner.xcworkspace in Xcode.\n \n Drag your precompiled library (libyourlibrary.dylib)\ninto Runner/Frameworks.\n Click Runner and go to the Build Phases tab.\n \n Drag libyourlibrary.dylib into the\nCopy Bundle Resources list.\n Under Embed Libraries, check Code Sign on Copy.\n Under Link Binary With Libraries,\nset status to Optional. (We use dynamic linking,\nno need to statically link.)\n \n \n Click Runner and go to the General tab.\n \n Drag libyourlibrary.dylib into the Frameworks,\nLibraries and Embedded Content list.\n Select Embed & Sign.\n \n \n Click Runner and go to the Build Settings tab.\n \n In the Search Paths section configure the\nLibrary Search Paths to include the path\nwhere libyourlibrary.dylib is located.", "source": "https://docs.flutter.dev/development/platform-integration/macos/c-interop/index.html"} {"id": "5c3fda7a6c0c-10", "text": "Edit lib/main.dart.\n \n Use DynamicLibrary.open('libyourlibrary.dylib')\nto dynamically link to the symbols.\n Call your native function somewhere in a widget.\n\nRun flutter run and check that your native function gets called.\n\nRun flutter build macos to build a self-contained release\nversion of your app.", "source": "https://docs.flutter.dev/development/platform-integration/macos/c-interop/index.html"} {"id": "d4645e73d297-0", "text": "macOS\n\nPlatform integration\n\nmacOS\n\nTopics:\n\nBuilding macOS apps\n\nC interop", "source": "https://docs.flutter.dev/development/platform-integration/macos/index.html"} {"id": "8ebcffba73da-0", "text": "Writing custom platform-specific code\n\nPlatform integration\n\nPlatform-specific code\n\nArchitectural overview: platform channels\n\nPlatform channel data types support and codecs\n\nExample: Calling platform-specific code using platform channels\n\nStep 1: Create a new app project\nStep 2: Create the Flutter platform client\nStep 3: Add an Android platform-specific implementation\nStep 4: Add an iOS platform-specific implementation\nStep 5: Add a Windows platform-specific implementation\nStep 6: Add a Linux platform-specific implementation\n\nTypesafe platform channels using Pigeon\n\nPigeon example\n\nSeparate platform-specific code from UI code\n\nPublish platform-specific code as a package\n\nCustom channels and codecs\n\nChannels and platform threading", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-1", "text": "Custom channels and codecs\n\nChannels and platform threading\n\nUsing plugins and channels from background isolates\nExecuting channel handlers on background threads\nJumping to the UI thread in Android\nJumping to the main thread in iOS\n\nThis guide describes how to write custom platform-specific code.\nSome platform-specific functionality is available\nthrough existing packages;\nsee using packages.\n\nNote:\n The information in this page is valid for most platforms,\n but platform-specific code for the web generally uses\n JS interoperability or the dart:html library instead.\n\nFlutter uses a flexible system that allows you to call\nplatform-specific APIs in a language that works directly\nwith those APIs:\n\nKotlin or Java on Android\n\nSwift or Objective-C on iOS\n\nC++ on Windows\n\nObjective-C on macOS\n\nC on Linux", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-2", "text": "Objective-C on macOS\n\nC on Linux\n\nFlutter\u2019s builtin platform-specific API support\ndoesn\u2019t rely on code generation,\nbut rather on a flexible message passing style.\nAlternatively, you can use the Pigeon\npackage for sending structured typesafe messages\nwith code generation:\n\nThe Flutter portion of the app sends messages to its host,\nthe non-Dart portion of the app, over a platform channel.\n\nThe host listens on the platform channel, and receives the message.\nIt then calls into any number of platform-specific APIs\u2014using\nthe native programming language\u2014and sends a response back to the\nclient, the Flutter portion of the app.", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-3", "text": "Note:\n This guide addresses using the platform channel mechanism\n if you need to use the platform\u2019s APIs in a non-Dart language.\n But you can also write platform-specific Dart code\n in your Flutter app by inspecting the\n defaultTargetPlatform property.\n Platform adaptations lists some\n platform-specific adaptations that Flutter\n automatically performs for you in the framework.\n\nArchitectural overview: platform channels\n\nMessages are passed between the client (UI)\nand host (platform) using platform\nchannels as illustrated in this diagram:\n\nMessages and responses are passed asynchronously,\nto ensure the user interface remains responsive.\n\nNote:\n Even though Flutter sends messages to and from Dart asynchronously,\n whenever you invoke a channel method, you must invoke that method on the\n platform\u2019s main thread. See the section on threading\n for more information.", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-4", "text": "On the client side, MethodChannel enables sending\nmessages that correspond to method calls. On the platform side,\nMethodChannel on Android (MethodChannelAndroid) and\nFlutterMethodChannel on iOS (MethodChanneliOS)\nenable receiving method calls and sending back a\nresult. These classes allow you to develop a platform plugin\nwith very little \u2018boilerplate\u2019 code.\n\nNote:\n If desired, method calls can also be sent in the reverse direction,\n with the platform acting as client to methods implemented in Dart.\n For a concrete example, check out the quick_actions plugin.\n\nPlatform channel data types support and codecs\n\nThe standard platform channels use a standard message codec that supports\nefficient binary serialization of simple JSON-like values, such as booleans,\nnumbers, Strings, byte buffers, and Lists and Maps of these\n(see StandardMessageCodec for details).\nThe serialization and deserialization of these values to and from\nmessages happens automatically when you send and receive values.", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-5", "text": "The following table shows how Dart values are received on the\nplatform side and vice versa:\n\nJava\n\nKotlin\n\nObj-C\n\nSwift\n\nC++\n\nC\n\nnull\n\nnull\n\nbool\n\njava.lang.Boolean\n\nint\n\njava.lang.Integer\n\nint, if 32 bits not enough\n\njava.lang.Long\n\ndouble\n\njava.lang.Double\n\nString\n\njava.lang.String\n\nUint8List\n\nbyte[]\n\nInt32List\n\nint[]\n\nInt64List\n\nlong[]\n\nFloat32List\n\nfloat[]\n\nFloat64List\n\ndouble[]\n\nList", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-6", "text": "Float64List\n\ndouble[]\n\nList\n\njava.util.ArrayList\n\nMap\n\njava.util.HashMap\n\nnull\n\nnull\n\nbool\n\nBoolean\n\nint\n\nInt\n\nint, if 32 bits not enough\n\nLong\n\ndouble\n\nDouble\n\nString\n\nString\n\nUint8List\n\nByteArray\n\nInt32List\n\nIntArray\n\nInt64List\n\nLongArray\n\nFloat32List\n\nFloatArray\n\nFloat64List\n\nDoubleArray\n\nList\n\nList\n\nMap\n\nHashMap\n\nnull\n\nnil (NSNull when nested)", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-7", "text": "HashMap\n\nnull\n\nnil (NSNull when nested)\n\nbool\n\nNSNumber numberWithBool:\n\nint\n\nNSNumber numberWithInt:\n\nint, if 32 bits not enough\n\nNSNumber numberWithLong:\n\ndouble\n\nNSNumber numberWithDouble:\n\nString\n\nNSString\n\nUint8List\n\nFlutterStandardTypedData typedDataWithBytes:\n\nInt32List\n\nFlutterStandardTypedData typedDataWithInt32:\n\nInt64List\n\nFlutterStandardTypedData typedDataWithInt64:\n\nFloat32List\n\nFlutterStandardTypedData typedDataWithFloat32:\n\nFloat64List\n\nFlutterStandardTypedData typedDataWithFloat64:\n\nList", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-8", "text": "FlutterStandardTypedData typedDataWithFloat64:\n\nList\n\nNSArray\n\nMap\n\nNSDictionary\n\nnull\n\nnil\n\nbool\n\nNSNumber(value: Bool)\n\nint\n\nNSNumber(value: Int32)\n\nint, if 32 bits not enough\n\nNSNumber(value: Int)\n\ndouble\n\nNSNumber(value: Double)\n\nString\n\nString\n\nUint8List\n\nFlutterStandardTypedData(bytes: Data)\n\nInt32List\n\nFlutterStandardTypedData(int32: Data)\n\nInt64List\n\nFlutterStandardTypedData(int64: Data)\n\nFloat32List", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-9", "text": "Float32List\n\nFlutterStandardTypedData(float32: Data)\n\nFloat64List\n\nFlutterStandardTypedData(float64: Data)\n\nList\n\nArray\n\nMap\n\nDictionary\n\nnull\n\nEncodableValue()\n\nbool\n\nEncodableValue(bool)\n\nint\n\nEncodableValue(int32_t)\n\nint, if 32 bits not enough\n\nEncodableValue(int64_t)\n\ndouble\n\nEncodableValue(double)\n\nString\n\nEncodableValue(std::string)\n\nUint8List\n\nEncodableValue(std::vector)\n\nInt32List\n\nEncodableValue(std::vector)", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-10", "text": "Int32List\n\nEncodableValue(std::vector)\n\nInt64List\n\nEncodableValue(std::vector)\n\nFloat32List\n\nEncodableValue(std::vector)\n\nFloat64List\n\nEncodableValue(std::vector)\n\nList\n\nEncodableValue(std::vector)\n\nMap\n\nEncodableValue(std::map)\n\nnull\n\nFlValue()\n\nbool\n\nFlValue(bool)\n\nint\n\nFlValue(int64_t)\n\ndouble\n\nFlValue(double)\n\nString\n\nFlValue(gchar*)\n\nUint8List\n\nFlValue(uint8_t*)", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-11", "text": "Uint8List\n\nFlValue(uint8_t*)\n\nInt32List\n\nFlValue(int32_t*)\n\nInt64List\n\nFlValue(int64_t*)\n\nFloat32List\n\nFlValue(float*)\n\nFloat64List\n\nFlValue(double*)\n\nList\n\nFlValue(FlValue)\n\nMap\n\nFlValue(FlValue, FlValue)\n\nExample: Calling platform-specific code using platform channels\n\nThe following code demonstrates how to call\na platform-specific API to retrieve and display\nthe current battery level. It uses\nthe Android BatteryManager API,\nthe iOS device.batteryLevel API,\nthe Windows GetSystemPowerStatus API,\nand the Linux UPower API with a single\nplatform message, getBatteryLevel().", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-12", "text": "The example adds the platform-specific code inside\nthe main app itself. If you want to reuse the\nplatform-specific code for multiple apps,\nthe project creation step is slightly different\n(see developing packages),\nbut the platform channel code\nis still written in the same way.\n\nNote:\n The full, runnable source-code for this example is\n available in /examples/platform_channel/\n for Android with Java, iOS with Objective-C,\n Windows with C++, and Linux with C.\n For iOS with Swift,\n see /examples/platform_channel_swift/.\n\nStep 1: Create a new app project\n\nStart by creating a new app:\n\nIn a terminal run: flutter create batterylevel\n\nBy default, our template supports writing Android code using Kotlin,\nor iOS code using Swift. To use Java or Objective-C,\nuse the -i and/or -a flags:\n\nIn a terminal run: flutter create -i objc -a java batterylevel", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-13", "text": "In a terminal run: flutter create -i objc -a java batterylevel\n\nStep 2: Create the Flutter platform client\n\nThe app\u2019s State class holds the current app state.\nExtend that to hold the current battery state.\n\nFirst, construct the channel. Use a MethodChannel with a single\nplatform method that returns the battery level.\n\nThe client and host sides of a channel are connected through\na channel name passed in the channel constructor.\nAll channel names used in a single app must\nbe unique; prefix the channel name with a unique \u2018domain\nprefix\u2019, for example: samples.flutter.dev/battery.\n\nNext, invoke a method on the method channel,\nspecifying the concrete method to call using\nthe String identifier getBatteryLevel.\nThe call might fail\u2014for example,\nif the platform doesn\u2019t support the\nplatform API (such as when running in a simulator),\nso wrap the invokeMethod call in a try-catch statement.", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-14", "text": "Use the returned result to update the user interface state in _batteryLevel\ninside setState.\n\nFinally, replace the build method from the template to\ncontain a small user interface that displays the battery\nstate in a string, and a button for refreshing the value.\n\nStep 3: Add an Android platform-specific implementation\n\nKotlin\n\nJava\n\nStart by opening the Android host portion of your Flutter app\nin Android Studio:\n\nStart Android Studio\n\nSelect the menu item File > Open\u2026\n\nNavigate to the directory holding your Flutter app,\nand select the android folder inside it. Click OK.\n\nOpen the file MainActivity.kt located in the kotlin folder in the\nProject view.\n\nInside the configureFlutterEngine() method, create a MethodChannel and call\nsetMethodCallHandler(). Make sure to use the same channel name as\nwas used on the Flutter client side.\n\nimport", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-15", "text": "import\n\nandroidx.annotation.NonNull\n\nimport\n\nio.flutter.embedding.android.FlutterActivity\n\nimport\n\nio.flutter.embedding.engine.FlutterEngine\n\nimport\n\nio.flutter.plugin.common.MethodChannel\n\nclass\n\nMainActivity\n\nFlutterActivity\n\n()\n\nprivate\n\nval\n\nCHANNEL\n\n\"samples.flutter.dev/battery\"\n\noverride\n\nfun\n\nconfigureFlutterEngine\n\n@NonNull\n\nflutterEngine\n\nFlutterEngine\n\nsuper\n\nconfigureFlutterEngine\n\nflutterEngine\n\nMethodChannel\n\nflutterEngine\n\ndartExecutor\n\nbinaryMessenger\n\nCHANNEL", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-16", "text": "binaryMessenger\n\nCHANNEL\n\n).\n\nsetMethodCallHandler\n\ncall\n\nresult\n\n>\n\n// This method is invoked on the main thread.\n\n// TODO\n\nAdd the Android Kotlin code that uses the Android battery APIs to\nretrieve the battery level. This code is exactly the same as you\nwould write in a native Android app.\n\nFirst, add the needed imports at the top of the file:\n\nimport\n\nandroid.content.Context\n\nimport\n\nandroid.content.ContextWrapper\n\nimport\n\nandroid.content.Intent\n\nimport\n\nandroid.content.IntentFilter\n\nimport\n\nandroid.os.BatteryManager\n\nimport\n\nandroid.os.Build.VERSION\n\nimport", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-17", "text": "import\n\nandroid.os.Build.VERSION\n\nimport\n\nandroid.os.Build.VERSION_CODES\n\nNext, add the following method in the MainActivity class,\nbelow the configureFlutterEngine() method:\n\nprivate\n\nfun\n\ngetBatteryLevel\n\n():\n\nInt\n\nval\n\nbatteryLevel\n\nInt\n\nif\n\nVERSION\n\nSDK_INT\n\n>=\n\nVERSION_CODES\n\nLOLLIPOP\n\nval\n\nbatteryManager\n\ngetSystemService\n\nContext\n\nBATTERY_SERVICE\n\nas\n\nBatteryManager\n\nbatteryLevel\n\nbatteryManager\n\ngetIntProperty\n\nBatteryManager", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-18", "text": "batteryManager\n\ngetIntProperty\n\nBatteryManager\n\nBATTERY_PROPERTY_CAPACITY\n\nelse\n\nval\n\nintent\n\nContextWrapper\n\napplicationContext\n\n).\n\nregisterReceiver\n\nnull\n\nIntentFilter\n\nIntent\n\nACTION_BATTERY_CHANGED\n\n))\n\nbatteryLevel\n\nintent\n\n!!\n\ngetIntExtra\n\nBatteryManager\n\nEXTRA_LEVEL\n\n100\n\nintent\n\ngetIntExtra\n\nBatteryManager\n\nEXTRA_SCALE\n\nreturn\n\nbatteryLevel", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-19", "text": "return\n\nbatteryLevel\n\nFinally, complete the setMethodCallHandler() method added earlier.\nYou need to handle a single platform method, getBatteryLevel(),\nso test for that in the call argument.\nThe implementation of this platform method calls the\nAndroid code written in the previous step, and returns a response for both\nthe success and error cases using the result argument.\nIf an unknown method is called, report that instead.\n\nRemove the following code:\n\nMethodChannel\n\nflutterEngine\n\ndartExecutor\n\nbinaryMessenger\n\nCHANNEL\n\n).\n\nsetMethodCallHandler\n\ncall\n\nresult\n\n>\n\n// This method is invoked on the main thread.\n\n// TODO\n\nAnd replace with the following:\n\nMethodChannel\n\nflutterEngine\n\ndartExecutor\n\nbinaryMessenger", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-20", "text": "flutterEngine\n\ndartExecutor\n\nbinaryMessenger\n\nCHANNEL\n\n).\n\nsetMethodCallHandler\n\n// This method is invoked on the main thread.\n\ncall\n\nresult\n\n>\n\nif\n\ncall\n\nmethod\n\n==\n\n\"getBatteryLevel\"\n\nval\n\nbatteryLevel\n\ngetBatteryLevel\n\n()\n\nif\n\nbatteryLevel\n\n!=\n\nresult\n\nsuccess\n\nbatteryLevel\n\nelse\n\nresult\n\nerror\n\n\"UNAVAILABLE\"\n\n\"Battery level not available.\"\n\nnull\n\nelse\n\nresult\n\nnotImplemented", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-21", "text": "else\n\nresult\n\nnotImplemented\n\n()\n\nStart by opening the Android host portion of your Flutter app\nin Android Studio:\n\nStart Android Studio\n\nSelect the menu item File > Open\u2026\n\nNavigate to the directory holding your Flutter app,\nand select the android folder inside it. Click OK.\n\nOpen the MainActivity.java file located in the java folder in the\nProject view.\n\nNext, create a MethodChannel and set a MethodCallHandler\ninside the configureFlutterEngine() method.\nMake sure to use the same channel name as was used on the\nFlutter client side.\n\nimport\n\nandroidx.annotation.NonNull\n\nimport\n\nio.flutter.embedding.android.FlutterActivity\n\nimport\n\nio.flutter.embedding.engine.FlutterEngine\n\nimport\n\nio.flutter.plugin.common.MethodChannel", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-22", "text": "import\n\nio.flutter.plugin.common.MethodChannel\n\npublic\n\nclass\n\nMainActivity\n\nextends\n\nFlutterActivity\n\nprivate\n\nstatic\n\nfinal\n\nString\n\nCHANNEL\n\n\"samples.flutter.dev/battery\"\n\n@Override\n\npublic\n\nvoid\n\nconfigureFlutterEngine\n\n@NonNull\n\nFlutterEngine\n\nflutterEngine\n\nsuper\n\nconfigureFlutterEngine\n\nflutterEngine\n\n);\n\nnew\n\nMethodChannel\n\nflutterEngine\n\ngetDartExecutor\n\n().\n\ngetBinaryMessenger\n\n(),\n\nCHANNEL\n\nsetMethodCallHandler", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-23", "text": "CHANNEL\n\nsetMethodCallHandler\n\ncall\n\nresult\n\n>\n\n// This method is invoked on the main thread.\n\n// TODO\n\n);\n\nAdd the Android Java code that uses the Android battery APIs to\nretrieve the battery level. This code is exactly the same as you\nwould write in a native Android app.\n\nFirst, add the needed imports at the top of the file:\n\nimport\n\nandroid.content.ContextWrapper\n\nimport\n\nandroid.content.Intent\n\nimport\n\nandroid.content.IntentFilter\n\nimport\n\nandroid.os.BatteryManager\n\nimport\n\nandroid.os.Build.VERSION\n\nimport\n\nandroid.os.Build.VERSION_CODES\n\nimport\n\nandroid.os.Bundle", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-24", "text": "import\n\nandroid.os.Bundle\n\nThen add the following as a new method in the activity class,\nbelow the configureFlutterEngine() method:\n\nprivate\n\nint\n\ngetBatteryLevel\n\n()\n\nint\n\nbatteryLevel\n\nif\n\nVERSION\n\nSDK_INT\n\n>=\n\nVERSION_CODES\n\nLOLLIPOP\n\nBatteryManager\n\nbatteryManager\n\nBatteryManager\n\ngetSystemService\n\nBATTERY_SERVICE\n\n);\n\nbatteryLevel\n\nbatteryManager\n\ngetIntProperty\n\nBatteryManager\n\nBATTERY_PROPERTY_CAPACITY\n\n);\n\nelse\n\nIntent", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-25", "text": ");\n\nelse\n\nIntent\n\nintent\n\nnew\n\nContextWrapper\n\ngetApplicationContext\n\n()).\n\nregisterReceiver\n\nnull\n\nnew\n\nIntentFilter\n\nIntent\n\nACTION_BATTERY_CHANGED\n\n));\n\nbatteryLevel\n\nintent\n\ngetIntExtra\n\nBatteryManager\n\nEXTRA_LEVEL\n\n100\n\nintent\n\ngetIntExtra\n\nBatteryManager\n\nEXTRA_SCALE\n\n);\n\nreturn\n\nbatteryLevel", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-26", "text": ");\n\nreturn\n\nbatteryLevel\n\nFinally, complete the setMethodCallHandler() method added earlier.\nYou need to handle a single platform method, getBatteryLevel(),\nso test for that in the call argument. The implementation of\nthis platform method calls the Android code written\nin the previous step, and returns a response for both\nthe success and error cases using the result argument.\nIf an unknown method is called, report that instead.\n\nRemove the following code:\n\ncall\n\nresult\n\n>\n\n// This method is invoked on the main thread.\n\n// TODO\n\nAnd replace with the following:\n\ncall\n\nresult\n\n>\n\n// This method is invoked on the main thread.\n\nif\n\ncall\n\nmethod\n\nequals\n\n\"getBatteryLevel\"\n\n))\n\nint", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-27", "text": "))\n\nint\n\nbatteryLevel\n\ngetBatteryLevel\n\n();\n\nif\n\nbatteryLevel\n\n!=\n\nresult\n\nsuccess\n\nbatteryLevel\n\n);\n\nelse\n\nresult\n\nerror\n\n\"UNAVAILABLE\"\n\n\"Battery level not available.\"\n\nnull\n\n);\n\nelse\n\nresult\n\nnotImplemented\n\n();\n\nYou should now be able to run the app on Android. If using the Android\nEmulator, set the battery level in the Extended Controls panel\naccessible from the \u2026 button in the toolbar.\n\nStep 4: Add an iOS platform-specific implementation\n\nSwift\n\nObjective-C", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-28", "text": "Swift\n\nObjective-C\n\nStart by opening the iOS host portion of your Flutter app in Xcode:\n\nStart Xcode.\n\nSelect the menu item File > Open\u2026.\n\nNavigate to the directory holding your Flutter app, and select the ios\nfolder inside it. Click OK.\n\nAdd support for Swift in the standard template setup that uses Objective-C:\n\nExpand Runner > Runner in the Project navigator.\n\nOpen the file AppDelegate.swift located under Runner > Runner\nin the Project navigator.\n\nOverride the application:didFinishLaunchingWithOptions: function and create\na FlutterMethodChannel tied to the channel name\nsamples.flutter.dev/battery:\n\n@UIApplicationMain\n\n@objc\n\nclass\n\nAppDelegate\n\nFlutterAppDelegate\n\noverride\n\nfunc\n\napplication", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-29", "text": "override\n\nfunc\n\napplication\n\napplication\n\nUIApplication\n\ndidFinishLaunchingWithOptions\n\nlaunchOptions\n\nUIApplication\n\nLaunchOptionsKey\n\nAny\n\n]?)\n\n>\n\nBool\n\nlet\n\ncontroller\n\nFlutterViewController\n\nwindow\n\nrootViewController\n\nas!\n\nFlutterViewController\n\nlet\n\nbatteryChannel\n\nFlutterMethodChannel\n\nname\n\n\"samples.flutter.dev/battery\"\n\nbinaryMessenger\n\ncontroller\n\nbinaryMessenger\n\nbatteryChannel\n\nsetMethodCallHandler\n\n({\n\ncall\n\nFlutterMethodCall\n\nresult", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-30", "text": "call\n\nFlutterMethodCall\n\nresult\n\n@escaping\n\nFlutterResult\n\n>\n\nVoid\n\nin\n\n// This method is invoked on the UI thread.\n\n// Handle battery messages.\n\n})\n\nGeneratedPluginRegistrant\n\nregister\n\nwith\n\nself\n\nreturn\n\nsuper\n\napplication\n\napplication\n\ndidFinishLaunchingWithOptions\n\nlaunchOptions\n\nNext, add the iOS Swift code that uses the iOS battery APIs to retrieve\nthe battery level. This code is exactly the same as you\nwould write in a native iOS app.\n\nAdd the following as a new method at the bottom of AppDelegate.swift:\n\nprivate\n\nfunc\n\nreceiveBatteryLevel\n\nresult", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-31", "text": "func\n\nreceiveBatteryLevel\n\nresult\n\nFlutterResult\n\nlet\n\ndevice\n\nUIDevice\n\ncurrent\n\ndevice\n\nisBatteryMonitoringEnabled\n\ntrue\n\nif\n\ndevice\n\nbatteryState\n\n==\n\nUIDevice\n\nBatteryState\n\nunknown\n\nresult\n\nFlutterError\n\ncode\n\n\"UNAVAILABLE\"\n\nmessage\n\n\"Battery level not available.\"\n\ndetails\n\nnil\n\n))\n\nelse\n\nresult\n\nInt\n\ndevice\n\nbatteryLevel\n\n100\n\n))", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-32", "text": "batteryLevel\n\n100\n\n))\n\nFinally, complete the setMethodCallHandler() method added earlier.\nYou need to handle a single platform method, getBatteryLevel(),\nso test for that in the call argument.\nThe implementation of this platform method calls\nthe iOS code written in the previous step. If an unknown method\nis called, report that instead.\n\nbatteryChannel\n\nsetMethodCallHandler\n\n({\n\nweak\n\nself\n\ncall\n\nFlutterMethodCall\n\nresult\n\nFlutterResult\n\n>\n\nVoid\n\nin\n\n// This method is invoked on the UI thread.\n\nguard\n\ncall\n\nmethod\n\n==\n\n\"getBatteryLevel\"\n\nelse\n\nresult\n\nFlutterMethodNotImplemented", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-33", "text": "else\n\nresult\n\nFlutterMethodNotImplemented\n\nreturn\n\nself\n\nreceiveBatteryLevel\n\nresult\n\nresult\n\n})\n\nStart by opening the iOS host portion of the Flutter app in Xcode:\n\nStart Xcode.\n\nSelect the menu item File > Open\u2026.\n\nNavigate to the directory holding your Flutter app,\nand select the ios folder inside it. Click OK.\n\nMake sure the Xcode projects builds without errors.\n\nOpen the file AppDelegate.m, located under Runner > Runner\nin the Project navigator.\n\nCreate a FlutterMethodChannel and add a handler inside the application\ndidFinishLaunchingWithOptions: method.\nMake sure to use the same channel name\nas was used on the Flutter client side.\n\n#import \n#import \"GeneratedPluginRegistrant.h\"", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-34", "text": "@implementation\n\nAppDelegate\n\nBOOL\n\napplication\n\n:(\n\nUIApplication\n\napplication\n\ndidFinishLaunchingWithOptions\n\n:(\n\nNSDictionary\n\nlaunchOptions\n\nFlutterViewController\n\ncontroller\n\nFlutterViewController\n\nself\n\nwindow\n\nrootViewController\n\nFlutterMethodChannel\n\nbatteryChannel\n\nFlutterMethodChannel\n\nmethodChannelWithName:\n\n@\"samples.flutter.dev/battery\"\n\nbinaryMessenger:\n\ncontroller\n\nbinaryMessenger\n\n];\n\nbatteryChannel\n\nsetMethodCallHandler\n\nFlutterMethodCall\n\ncall\n\nFlutterResult\n\nresult", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-35", "text": "call\n\nFlutterResult\n\nresult\n\n// This method is invoked on the UI thread.\n\n// TODO\n\n}];\n\nGeneratedPluginRegistrant\n\nregisterWithRegistry\n\nself\n\n];\n\nreturn\n\nsuper\n\napplication\n\napplication\n\ndidFinishLaunchingWithOptions\n\nlaunchOptions\n\n];\n\nNext, add the iOS ObjectiveC code that uses the iOS battery APIs to\nretrieve the battery level. This code is exactly the same as you\nwould write in a native iOS app.\n\nAdd the following method in the AppDelegate class, just before @end:", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-36", "text": "Add the following method in the AppDelegate class, just before @end:\n\nFinally, complete the setMethodCallHandler() method added earlier.\nYou need to handle a single platform method, getBatteryLevel(),\nso test for that in the call argument. The implementation of\nthis platform method calls the iOS code written in the previous step,\nand returns a response for both the success and error cases using\nthe result argument. If an unknown method is called, report that instead.\n\nint\n\ngetBatteryLevel\n\nUIDevice\n\ndevice\n\nUIDevice\n\ncurrentDevice\n\ndevice\n\nbatteryMonitoringEnabled\n\nYES\n\nif\n\ndevice\n\nbatteryState\n\n==\n\nUIDeviceBatteryStateUnknown\n\nreturn\n\nelse\n\nreturn\n\nint\n\n)(", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-37", "text": "return\n\nint\n\n)(\n\ndevice\n\nbatteryLevel\n\n100\n\n);\n\nFinally, complete the setMethodCallHandler() method added earlier.\nYou need to handle a single platform method, getBatteryLevel(),\nso test for that in the call argument. The implementation of\nthis platform method calls the iOS code written in the previous step,\nand returns a response for both the success and error cases using\nthe result argument. If an unknown method is called, report that instead.\n\n__weak\n\ntypeof\n\nself\n\nweakSelf\n\nself\n\nbatteryChannel\n\nsetMethodCallHandler\n\nFlutterMethodCall\n\ncall\n\nFlutterResult\n\nresult\n\n// This method is invoked on the UI thread.\n\nif\n\n([\n\n@\"getBatteryLevel\"", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-38", "text": "if\n\n([\n\n@\"getBatteryLevel\"\n\nisEqualToString\n\ncall\n\nmethod\n\n])\n\nint\n\nbatteryLevel\n\nweakSelf\n\ngetBatteryLevel\n\n];\n\nif\n\nbatteryLevel\n\n==\n\nresult\n\n([\n\nFlutterError\n\nerrorWithCode\n\n@\"UNAVAILABLE\"\n\nmessage:\n\n@\"Battery level not available.\"\n\ndetails:\n\nnil\n\n]);\n\nelse\n\nresult\n\nbatteryLevel\n\n));\n\nelse\n\nresult\n\nFlutterMethodNotImplemented\n\n);\n\n}];", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-39", "text": ");\n\n}];\n\nYou should now be able to run the app on iOS.\nIf using the iOS Simulator,\nnote that it doesn\u2019t support battery APIs,\nand the app displays \u2018Battery level not available\u2019.\n\nStep 5: Add a Windows platform-specific implementation\n\nStart by opening the Windows host portion of your Flutter app in Visual Studio:\n\nRun flutter build windows in your project directory once to generate\nthe Visual Studio solution file.\n\nStart Visual Studio.\n\nSelect Open a project or solution.\n\nNavigate to the directory holding your Flutter app, then into the build\nfolder, then the windows folder, then select the batterylevel.sln file.\nClick Open.\n\nAdd the C++ implementation of the platform channel method:\n\nExpand batterylevel > Source Files in the Solution Explorer.\n\nOpen the file flutter_window.cpp.", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-40", "text": "Open the file flutter_window.cpp.\n\nFirst, add the necessary includes to the top of the file, just\nafter #include \"flutter_window.h\":\n\n#include\n\n\n\n#include\n\n\n\n#include\n\n\n\n#include\n\n\n\n#include\n\n\n\n#include\n\n\n\n#include\n\n\n\nEdit the FlutterWindow::OnCreate method and create\na flutter::MethodChannel tied to the channel name\nsamples.flutter.dev/battery:\n\nbool\n\nFlutterWindow\n\n::\n\nOnCreate", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-41", "text": "FlutterWindow\n\n::\n\nOnCreate\n\n()\n\n// ...\n\nRegisterPlugins\n\nflutter_controller_\n\n>\n\nengine\n\n());\n\nflutter\n\n::\n\nMethodChannel\n\n<>\n\nchannel\n\nflutter_controller_\n\n>\n\nengine\n\n()\n\n>\n\nmessenger\n\n(),\n\n\"samples.flutter.dev/battery\"\n\nflutter\n\n::\n\nStandardMethodCodec\n\n::\n\nGetInstance\n\n());\n\nchannel\n\nSetMethodCallHandler\n\n[](\n\nconst\n\nflutter\n\n::\n\nMethodCall", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-42", "text": "flutter\n\n::\n\nMethodCall\n\n<>&\n\ncall\n\nstd\n\n::\n\nunique_ptr\n\nflutter\n\n::\n\nMethodResult\n\n<>>\n\nresult\n\n// TODO\n\n});\n\nSetChildContent\n\nflutter_controller_\n\n>\n\nview\n\n()\n\n>\n\nGetNativeWindow\n\n());\n\nreturn\n\ntrue\n\nNext, add the C++ code that uses the Windows battery APIs to\nretrieve the battery level. This code is exactly the same as\nyou would write in a native Windows application.\n\nAdd the following as a new function at the top of\nflutter_window.cpp just after the #include section:\n\nstatic\n\nint", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-43", "text": "static\n\nint\n\nGetBatteryLevel\n\n()\n\nSYSTEM_POWER_STATUS\n\nstatus\n\nif\n\nGetSystemPowerStatus\n\nstatus\n\n==\n\n||\n\nstatus\n\nBatteryLifePercent\n\n==\n\n255\n\nreturn\n\nreturn\n\nstatus\n\nBatteryLifePercent\n\nFinally, complete the setMethodCallHandler() method added earlier.\nYou need to handle a single platform method, getBatteryLevel(),\nso test for that in the call argument.\nThe implementation of this platform method calls\nthe Windows code written in the previous step. If an unknown method\nis called, report that instead.\n\nRemove the following code:\n\nchannel\n\nSetMethodCallHandler\n\n[](\n\nconst", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-44", "text": "SetMethodCallHandler\n\n[](\n\nconst\n\nflutter\n\n::\n\nMethodCall\n\n<>&\n\ncall\n\nstd\n\n::\n\nunique_ptr\n\nflutter\n\n::\n\nMethodResult\n\n<>>\n\nresult\n\n// TODO\n\n});\n\nAnd replace with the following:\n\nchannel\n\nSetMethodCallHandler\n\n[](\n\nconst\n\nflutter\n\n::\n\nMethodCall\n\n<>&\n\ncall\n\nstd\n\n::\n\nunique_ptr\n\nflutter\n\n::\n\nMethodResult\n\n<>>\n\nresult\n\nif\n\ncall", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-45", "text": "result\n\nif\n\ncall\n\nmethod_name\n\n()\n\n==\n\n\"getBatteryLevel\"\n\nint\n\nbattery_level\n\nGetBatteryLevel\n\n();\n\nif\n\nbattery_level\n\n!=\n\nresult\n\n>\n\nSuccess\n\nbattery_level\n\n);\n\nelse\n\nresult\n\n>\n\nError\n\n\"UNAVAILABLE\"\n\n\"Battery level not available.\"\n\n);\n\nelse\n\nresult\n\n>\n\nNotImplemented\n\n();\n\n});", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-46", "text": "NotImplemented\n\n();\n\n});\n\nYou should now be able to run the application on Windows.\nIf your device doesn\u2019t have a battery,\nit displays \u2018Battery level not available\u2019.\n\nStep 6: Add a Linux platform-specific implementation\n\nFor this example you need to install the upower developer headers.\nThis is likely available from your distribution, for example with:\n\nsudo apt\n\ninstall libupower-glib-dev\n\nStart by opening the Linux host portion of your Flutter app in the editor\nof your choice. The instructions below are for Visual Studio Code with the\n\u201cC/C++\u201d and \u201cCMake\u201d extensions installed, but can be adjusted for other IDEs.\n\nLaunch Visual Studio Code.\n\nOpen the linux directory inside your project.\n\nChoose Yes in the prompt asking: Would you like to configure project \"linux\"?.\nThis enables C++ autocomplete.", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-47", "text": "Open the file my_application.cc.\n\nFirst, add the necessary includes to the top of the file, just\nafter #include \n\n#include\n\n\n\nAdd an FlMethodChannel to the _MyApplication struct:\n\nstruct\n\n_MyApplication\n\nGtkApplication\n\nparent_instance\n\nchar\n\n*\n\ndart_entrypoint_arguments\n\nFlMethodChannel\n\nbattery_channel\n\n};\n\nMake sure to clean it up in my_application_dispose:\n\nstatic\n\nvoid\n\nmy_application_dispose\n\nGObject\n\nobject\n\nMyApplication\n\nself\n\nMY_APPLICATION", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-48", "text": "MyApplication\n\nself\n\nMY_APPLICATION\n\nobject\n\n);\n\ng_clear_pointer\n\nself\n\n>\n\ndart_entrypoint_arguments\n\ng_strfreev\n\n);\n\ng_clear_object\n\nself\n\n>\n\nbattery_channel\n\n);\n\nG_OBJECT_CLASS\n\nmy_application_parent_class\n\n>\n\ndispose\n\nobject\n\n);\n\nEdit the my_application_activate method and initialize\nbattery_channel using the channel name\nsamples.flutter.dev/battery, just after the call to\nfl_register_plugins:\n\nstatic\n\nvoid\n\nmy_application_activate\n\nGApplication\n\napplication", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-49", "text": "my_application_activate\n\nGApplication\n\napplication\n\n// ...\n\nfl_register_plugins\n\nFL_PLUGIN_REGISTRY\n\nself\n\n>\n\nview\n\n));\n\ng_autoptr\n\nFlStandardMethodCodec\n\ncodec\n\nfl_standard_method_codec_new\n\n();\n\nself\n\n>\n\nbattery_channel\n\nfl_method_channel_new\n\nfl_engine_get_binary_messenger\n\nfl_view_get_engine\n\nview\n\n)),\n\n\"samples.flutter.dev/battery\"\n\nFL_METHOD_CODEC\n\ncodec\n\n));", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-50", "text": "codec\n\n));\n\nfl_method_channel_set_method_call_handler\n\nself\n\n>\n\nbattery_channel\n\nbattery_method_call_handler\n\nself\n\nnullptr\n\n);\n\ngtk_widget_grab_focus\n\nGTK_WIDGET\n\nself\n\n>\n\nview\n\n));\n\nNext, add the C code that uses the Linux battery APIs to\nretrieve the battery level. This code is exactly the same as\nyou would write in a native Linux application.\n\nAdd the following as a new function at the top of\nmy_application.cc just after the G_DEFINE_TYPE line:\n\nstatic\n\nFlMethodResponse\n\nget_battery_level\n\n()", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-51", "text": "get_battery_level\n\n()\n\n// Find the first available battery and report that.\n\ng_autoptr\n\nUpClient\n\nup_client\n\nup_client_new\n\n();\n\ng_autoptr\n\nGPtrArray\n\ndevices\n\nup_client_get_devices2\n\nup_client\n\n);\n\nif\n\ndevices\n\n>\n\nlen\n\n==\n\nreturn\n\nFL_METHOD_RESPONSE\n\nfl_method_error_response_new\n\n\"UNAVAILABLE\"\n\n\"Device does not have a battery.\"\n\nnullptr\n\n));\n\nUpDevice\n\ndevice\n\nUpDevice", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-52", "text": "UpDevice\n\ndevice\n\nUpDevice\n\n)(\n\ng_ptr_array_index\n\ndevices\n\n));\n\ndouble\n\npercentage\n\ng_object_get\n\ndevice\n\n\"percentage\"\n\npercentage\n\nnullptr\n\n);\n\ng_autoptr\n\nFlValue\n\nresult\n\nfl_value_new_int\n\nstatic_cast\n\nint64_t\n\nround\n\npercentage\n\n)));\n\nreturn\n\nFL_METHOD_RESPONSE\n\nfl_method_success_response_new\n\nresult\n\n));", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-53", "text": "result\n\n));\n\nFinally, add the battery_method_call_handler function referenced\nin the earlier call to fl_method_channel_set_method_call_handler.\nYou need to handle a single platform method, getBatteryLevel,\nso test for that in the method_call argument.\nThe implementation of this function calls\nthe Linux code written in the previous step. If an unknown method\nis called, report that instead.\n\nAdd the following code after the get_battery_level function:\n\nstatic\n\nvoid\n\nbattery_method_call_handler\n\nFlMethodChannel\n\nchannel\n\nFlMethodCall\n\nmethod_call\n\ngpointer\n\nuser_data\n\ng_autoptr\n\nFlMethodResponse\n\nresponse\n\nnullptr\n\nif\n\nstrcmp", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-54", "text": "nullptr\n\nif\n\nstrcmp\n\nfl_method_call_get_name\n\nmethod_call\n\n),\n\n\"getBatteryLevel\"\n\n==\n\nresponse\n\nget_battery_level\n\n();\n\nelse\n\nresponse\n\nFL_METHOD_RESPONSE\n\nfl_method_not_implemented_response_new\n\n());\n\ng_autoptr\n\nGError\n\nerror\n\nnullptr\n\nif\n\nfl_method_call_respond\n\nmethod_call\n\nresponse\n\nerror\n\n))\n\ng_warning\n\n\"Failed to send response: %s\"\n\nerror\n\n>", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-55", "text": "error\n\n>\n\nmessage\n\n);\n\nYou should now be able to run the application on Linux.\nIf your device doesn\u2019t have a battery,\nit displays \u2018Battery level not available\u2019.\n\nTypesafe platform channels using Pigeon\n\nThe previous example uses MethodChannel\nto communicate between the host and client,\nwhich isn\u2019t typesafe. Calling and receiving\nmessages depends on the host and client declaring\nthe same arguments and datatypes in order for messages to work.\nYou can use the Pigeon package as\nan alternative to MethodChannel\nto generate code that sends messages in a\nstructured, typesafe manner.\n\nWith Pigeon, the messaging protocol is defined\nin a subset of Dart that then generates messaging\ncode for Android or iOS. You can find a more complete\nexample and more information on the pigeon\npage on pub.dev.", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-56", "text": "Using Pigeon eliminates the need to match\nstrings between host and client\nfor the names and datatypes of messages.\nIt supports: nested classes, grouping\nmessages into APIs, generation of\nasynchronous wrapper code and sending messages\nin either direction. The generated code is readable\nand guarantees there are no conflicts between\nmultiple clients of different versions.\nSupported languages are Objective-C, Java, Kotlin,\nand Swift (with Objective-C interop).\n\nPigeon example\n\nPigeon file:\n\nDart usage:\n\nSeparate platform-specific code from UI code\n\nIf you expect to use your platform-specific code\nin multiple Flutter apps, you might consider\nseparating the code into a platform plugin located\nin a directory outside your main application.\nSee developing packages for details.\n\nPublish platform-specific code as a package\n\nTo share your platform-specific code with other developers\nin the Flutter ecosystem, see publishing packages.\n\nCustom channels and codecs", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-57", "text": "Custom channels and codecs\n\nBesides the above mentioned MethodChannel,\nyou can also use the more basic\nBasicMessageChannel, which supports basic,\nasynchronous message passing using a custom message codec.\nYou can also use the specialized BinaryCodec,\nStringCodec, and JSONMessageCodec\nclasses, or create your own codec.\n\nYou might also check out an example of a custom codec\nin the cloud_firestore plugin,\nwhich is able to serialize and deserialize many more\ntypes than the default types.\n\nChannels and platform threading", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-58", "text": "Channels and platform threading\n\nWhen invoking channels on the platform side destined for Flutter,\ninvoke them on the platform\u2019s main thread.\nWhen invoking channels in Flutter destined for the platform side,\neither invoke them from any Isolate that is the root\nIsolate, or that is registered as a background Isolate.\nThe handlers for the platform side can execute on the platform\u2019s main thread\nor they can execute on a background thread if using a Task Queue.\nYou can invoke the platform side handlers asynchronously\nand on any thread when the Task Queue API is available;\notherwise, they must be invoked on the platform thread.\n\nNote:\n On Android, the platform\u2019s main thread is sometimes\n called the \u201cmain thread\u201d, but it is technically defined\n as the UI thread. Annotate methods that need\n to be run on the UI thread with @UiThread.\n On iOS, this thread is officially\n referred to as the main thread.\n\nUsing plugins and channels from background isolates", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-59", "text": "Using plugins and channels from background isolates\n\nPlugins and channels can be used by any Isolate, but that Isolate has to be\na root Isolate (the one created by Flutter) or registered as a background\nIsolate for a root Isolate.\n\nThe following example shows how to register a background Isolate in order to\nuse a plugin from a background Isolate.\n\nimport\n\n'package:flutter/services.dart'\n\nimport\n\n'package:shared_preferences/shared_preferences.dart'\n\nvoid\n\n_isolateMain\n\nRootIsolateToken\n\nrootIsolateToken\n\nasync\n\nBackgroundIsolateBinaryMessenger\n\nensureInitialized\n\nrootIsolateToken\n\n);\n\nSharedPreferences\n\nsharedPreferences\n\nawait\n\nSharedPreferences\n\ngetInstance", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-60", "text": "await\n\nSharedPreferences\n\ngetInstance\n\n();\n\nprint\n\nsharedPreferences\n\ngetBool\n\n'isDebug'\n\n));\n\nvoid\n\nmain\n\n()\n\nRootIsolateToken\n\nrootIsolateToken\n\nRootIsolateToken\n\ninstance\n\nIsolate\n\nspawn\n\n_isolateMain\n\nrootIsolateToken\n\n);\n\nExecuting channel handlers on background threads\n\nIn order for a channel\u2019s platform side handler to\nexecute on a background thread, you must use the\nTask Queue API. Currently this feature is only\nsupported on iOS and Android.\n\nIn Java:\n\n@Override\n\npublic\n\nvoid\n\nonAttachedToEngine", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-61", "text": "public\n\nvoid\n\nonAttachedToEngine\n\n@NonNull\n\nFlutterPluginBinding\n\nbinding\n\nBinaryMessenger\n\nmessenger\n\nbinding\n\ngetBinaryMessenger\n\n();\n\nBinaryMessenger\n\nTaskQueue\n\ntaskQueue\n\nmessenger\n\nmakeBackgroundTaskQueue\n\n();\n\nchannel\n\nnew\n\nMethodChannel\n\nmessenger\n\n\"com.example.foo\"\n\nStandardMethodCodec\n\nINSTANCE\n\ntaskQueue\n\n);\n\nchannel\n\nsetMethodCallHandler\n\nthis\n\n);\n\nIn Kotlin:\n\noverride\n\nfun\n\nonAttachedToEngine", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-62", "text": "override\n\nfun\n\nonAttachedToEngine\n\n@NonNull\n\nflutterPluginBinding\n\nFlutterPlugin\n\nFlutterPluginBinding\n\nval\n\ntaskQueue\n\nflutterPluginBinding\n\nbinaryMessenger\n\nmakeBackgroundTaskQueue\n\n()\n\nchannel\n\nMethodChannel\n\nflutterPluginBinding\n\nbinaryMessenger\n\n\"com.example.foo\"\n\nStandardMethodCodec\n\nINSTANCE\n\ntaskQueue\n\nchannel\n\nsetMethodCallHandler\n\nthis\n\nIn Swift:\n\nNote:\n In release 2.10, the Task Queue API is only available on the master channel\n for iOS.\n\npublic\n\nstatic\n\nfunc\n\nregister", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-63", "text": "public\n\nstatic\n\nfunc\n\nregister\n\nwith\n\nregistrar\n\nFlutterPluginRegistrar\n\nlet\n\ntaskQueue\n\nregistrar\n\nmessenger\n\nmakeBackgroundTaskQueue\n\n()\n\nlet\n\nchannel\n\nFlutterMethodChannel\n\nname\n\n\"com.example.foo\"\n\nbinaryMessenger\n\nregistrar\n\nmessenger\n\n(),\n\ncodec\n\nFlutterStandardMethodCodec\n\nsharedInstance\n\ntaskQueue\n\ntaskQueue\n\nlet\n\ninstance\n\nMyPlugin\n\n()\n\nregistrar\n\naddMethodCallDelegate\n\ninstance\n\nchannel", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-64", "text": "addMethodCallDelegate\n\ninstance\n\nchannel\n\nchannel\n\nIn Objective-C:\n\nNote:\n In release 2.10, the Task Queue API is only available on the master channel\n for iOS.\n\nvoid\n\nregisterWithRegistrar\n\n:(\n\nNSObject\n\nFlutterPluginRegistrar\n\n>*\n\nregistrar\n\nNSObject\n\nFlutterTaskQueue\n\n>*\n\ntaskQueue\n\n[[\n\nregistrar\n\nmessenger\n\nmakeBackgroundTaskQueue\n\n];\n\nFlutterMethodChannel\n\nchannel\n\nFlutterMethodChannel\n\nmethodChannelWithName\n\n@\"com.example.foo\"\n\nbinaryMessenger:\n\nregistrar", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-65", "text": "binaryMessenger:\n\nregistrar\n\nmessenger\n\ncodec:\n\nFlutterStandardMethodCodec\n\nsharedInstance\n\ntaskQueue:\n\ntaskQueue\n\n];\n\nMyPlugin\n\ninstance\n\n[[\n\nMyPlugin\n\nalloc\n\ninit\n\n];\n\nregistrar\n\naddMethodCallDelegate\n\ninstance\n\nchannel\n\nchannel\n\n];\n\nJumping to the UI thread in Android\n\nTo comply with channels\u2019 UI thread requirement,\nyou might need to jump from a background thread\nto Android\u2019s UI thread to execute a channel method.\nIn Android, you can accomplish this by post()ing a\nRunnable to Android\u2019s UI thread Looper,\nwhich causes the Runnable to execute on the\nmain thread at the next opportunity.", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-66", "text": "In Java:\n\nnew\n\nHandler\n\nLooper\n\ngetMainLooper\n\n()).\n\npost\n\nnew\n\nRunnable\n\n()\n\n@Override\n\npublic\n\nvoid\n\nrun\n\n()\n\n// Call the desired channel message here.\n\n});\n\nIn Kotlin:\n\nHandler\n\nLooper\n\ngetMainLooper\n\n()).\n\npost\n\n// Call the desired channel message here.\n\nJumping to the main thread in iOS\n\nTo comply with channel\u2019s main thread requirement,\nyou might need to jump from a background thread to\niOS\u2019s main thread to execute a channel method.\nYou can accomplish this in iOS by executing a\nblock on the main dispatch queue:", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "8ebcffba73da-67", "text": "In Objective-C:\n\ndispatch_async\n\ndispatch_get_main_queue\n\n(),\n\n// Call the desired channel message here.\n\n});\n\nIn Swift:\n\nDispatchQueue\n\nmain\n\nasync\n\n// Call the desired channel message here.", "source": "https://docs.flutter.dev/development/platform-integration/platform-channels/index.html"} {"id": "fbec2d782ebb-0", "text": "Building a web application with Flutter\n\nPlatform integration\n\nWeb\n\nWeb development\n\nRequirements\n\nCreate a new project with web support\n\nSet up\nCreate and run\n\nIDE\nCommand line\n\n\nBuild\n\nAdd web support to an existing app\n\nThis page covers the following steps for getting started with web support:\n\nConfigure the flutter tool for web support.\n\nCreate a new project with web support.\n\nRun a new project with web support.\n\nBuild an app with web support.\n\nAdd web support to an existing project.\n\nRequirements\n\nTo create a Flutter app with web support,\nyou need the following software:\n\nFlutter SDK. See the\nFlutter SDK installation instructions.\n\nChrome; debugging a web app requires\nthe Chrome browser.", "source": "https://docs.flutter.dev/development/platform-integration/web/building/index.html"} {"id": "fbec2d782ebb-1", "text": "Chrome; debugging a web app requires\nthe Chrome browser.\n\nOptional: An IDE that supports Flutter.\nYou can install Visual Studio Code,\nAndroid Studio, IntelliJ IDEA.\nAlso install the Flutter and Dart plugins\nto enable language support and tools for refactoring,\nrunning, debugging, and reloading your web app\nwithin an editor. See setting up an editor\nfor more details.\n\nFor more information, see the web FAQ.\n\nCreate a new project with web support\n\nYou can use the following steps\nto create a new project with web support.\n\nSet up\n\nRun the following commands to use the latest version of the Flutter SDK:\n\nflutter channel stable\n\nflutter upgrade\n\nIf Chrome is installed,\nthe flutter devices command outputs a Chrome device\nthat opens the Chrome browser with your app running,\nand a Web Server that provides the URL serving the app.\n\nflutter devices\n\n1 connected device:", "source": "https://docs.flutter.dev/development/platform-integration/web/building/index.html"} {"id": "fbec2d782ebb-2", "text": "flutter devices\n\n1 connected device:\n\nChrome (web) \u2022 chrome \u2022 web-javascript \u2022 Google Chrome 88.0.4324.150\n\nIn your IDE, you should see Chrome (web) in the device pulldown.\n\nCreate and run\n\nCreating a new project with web support is no different\nthan creating a new Flutter project for other platforms.\n\nIDE\n\nCreate a new app in your IDE and it automatically\ncreates iOS, Android, desktop, and web versions of your app.\nFrom the device pulldown, select Chrome (web)\nand run your app to see it launch in Chrome.\n\nCommand line\n\nTo create a new app that includes web support\n(in addition to mobile support), run the following commands,\nsubstituting my_app with the name of your project:\n\nflutter create my_app\n\ncd my_app", "source": "https://docs.flutter.dev/development/platform-integration/web/building/index.html"} {"id": "fbec2d782ebb-3", "text": "flutter create my_app\n\ncd my_app\n\nTo serve your app from localhost in Chrome,\nenter the following from the top of the package:\n\nflutter run\n\nd chrome\n\nNote:\n If there aren\u2019t any other connected devices,\n the -d chrome is optional.\n\nThe flutter run command launches the application using the\ndevelopment compiler in a Chrome browser.\n\nWarning:\n Hot reload is not supported in a web browser\n Currently, Flutter supports hot restart,\n but not hot reload in a web browser.\n\nBuild\n\nRun the following command to generate a release build:\n\nflutter build web\n\ndart2js\n(instead of the\n\ndevelopment compiler)\nto produce a single JavaScript file", "source": "https://docs.flutter.dev/development/platform-integration/web/building/index.html"} {"id": "fbec2d782ebb-4", "text": "development compiler)\nto produce a single JavaScript file\n\nYou can also include --web-renderer html or --web-renderer canvaskit to\nselect between the HTML or CanvasKit renderers, respectively. For more\ninformation, see Web renderers.\n\nFor more information, see\nBuild and release a web app.\n\nAdd web support to an existing app\n\nTo add web support to an existing project\ncreated using a previous version of Flutter,\nrun the following command\nfrom your project\u2019s top-level directory:\n\nflutter create\n\n-platforms web", "source": "https://docs.flutter.dev/development/platform-integration/web/building/index.html"} {"id": "a3c8a352c7f2-0", "text": "Web FAQ\n\nPlatform integration\n\nWeb\n\nWeb FAQ\n\nWhat scenarios are ideal for Flutter on the web?\n\nSearch Engine Optimization (SEO)\n\nHow do I create an app that also runs on the web?\n\nDoes hot reload work with a web app?\n\nHow do I restart the app running in the browser?\n\nWhich web browsers are supported by Flutter?\n\nCan I build, run, and deploy web apps in any of the IDEs?\n\nHow do I build a responsive app for the web?\n\nCan I use dart:io with a web app?\n\nHow do I handle web-specific imports?\n\nDoes Flutter web support concurrency?\n\nHow do I embed a Flutter web app in a web page?\n\nHow do I debug a web app?\n\nHow do I test a web app?", "source": "https://docs.flutter.dev/development/platform-integration/web/faq/index.html"} {"id": "a3c8a352c7f2-1", "text": "How do I test a web app?\n\nHow do I deploy a web app?\n\nDoes Platform.is work on the web?\n\nWhat scenarios are ideal for Flutter on the web?\n\nNot every web page makes sense in Flutter, but we think Flutter is particularly\nsuited for app-centric experiences:\n\nProgressive Web Apps\n\nSingle Page Apps\n\nExisting Flutter mobile apps\n\nAt this time, Flutter is not suitable for static websites with text-rich\nflow-based content. For example, blog articles benefit from the document-centric\nmodel that the web is built around, rather than the app-centric services that a\nUI framework like Flutter can deliver. However, you can use Flutter to embed\ninteractive experiences into these websites.\n\nFor more information on how you can use Flutter on the web,\nsee Web support for Flutter.\n\nSearch Engine Optimization (SEO)", "source": "https://docs.flutter.dev/development/platform-integration/web/faq/index.html"} {"id": "a3c8a352c7f2-2", "text": "Search Engine Optimization (SEO)\n\nIn general, Flutter is geared towards dynamic application experiences. Flutter\u2019s\nweb support is no exception. Flutter web prioritizes performance, fidelity, and\nconsistency. This means application output does not align with what search\nengines need to properly index. For web content that is static or document-like,\nwe recommend using HTML\u2014just like we do on flutter.dev,\ndart.dev, and pub.dev. You should also\nconsider separating your primary application experience\u2014created in Flutter\u2014from\nyour landing page, marketing content, and help content\u2014created using\nsearch-engine optimized HTML.\n\nHow do I create an app that also runs on the web?\n\nSee building a web app with Flutter.\n\nDoes hot reload work with a web app?", "source": "https://docs.flutter.dev/development/platform-integration/web/faq/index.html"} {"id": "a3c8a352c7f2-3", "text": "Does hot reload work with a web app?\n\nNo, but you can use hot restart. Hot restart is a fast way of seeing your\nchanges without having to relaunch your web app and wait for it to compile and\nload. This works similarly to the hot reload feature for Flutter mobile\ndevelopment. The only difference is that hot reload remembers your state and hot\nrestart doesn\u2019t.\n\nHow do I restart the app running in the browser?\n\nYou can either use the browser\u2019s refresh button,\nor you can enter \u201cR\u201d in the console where\n\u201cflutter run -d chrome\u201d is running.\n\nWhich web browsers are supported by Flutter?\n\nFlutter web apps can run on the following browsers:\n\nChrome (mobile & desktop)\n\nSafari (mobile & desktop)\n\nEdge (mobile & desktop)\n\nFirefox (mobile & desktop)", "source": "https://docs.flutter.dev/development/platform-integration/web/faq/index.html"} {"id": "a3c8a352c7f2-4", "text": "Edge (mobile & desktop)\n\nFirefox (mobile & desktop)\n\nDuring development, Chrome (on macOS, Windows, and Linux) and Edge (on Windows)\nare supported as the default browsers for debugging your app.\n\nCan I build, run, and deploy web apps in any of the IDEs?\n\nYou can select Chrome or Edge as the target device in\nAndroid Studio/IntelliJ and VS Code.\n\nThe device pulldown should now include the Chrome (web)\noption for all channels.\n\nHow do I build a responsive app for the web?\n\nSee Creating responsive apps.\n\nCan I use dart:io with a web app?\n\nNo. The file system is not accessible from the browser.\nFor network functionality, use the http\npackage. Note that security works somewhat\ndifferently because the browser (and not the app)\ncontrols the headers on an HTTP request.\n\nHow do I handle web-specific imports?", "source": "https://docs.flutter.dev/development/platform-integration/web/faq/index.html"} {"id": "a3c8a352c7f2-5", "text": "How do I handle web-specific imports?\n\nSome plugins require platform-specific imports, particularly if they use the\nfile system, which is not accessible from the browser. To use these plugins\nin your app, see the documentation for conditional imports\non dart.dev.\n\nDoes Flutter web support concurrency?\n\nDart\u2019s concurrency support via isolates\nis not currently supported in Flutter web.\n\nFlutter web apps can potentially work around this\nby using web workers,\nalthough no such support is built in.\n\nHow do I embed a Flutter web app in a web page?\n\nYou can embed a Flutter web app,\nas you would embed other content,\nin an iframe tag of an HTML file.\nIn the following example, replace \u201cURL\u201d\nwith the location of your hosted HTML page:\n\n\n\nIf you encounter problems, please file an issue.", "source": "https://docs.flutter.dev/development/platform-integration/web/faq/index.html"} {"id": "a3c8a352c7f2-6", "text": ">\n\nIf you encounter problems, please file an issue.\n\nHow do I debug a web app?\n\nUse Flutter DevTools for the following tasks:\n\nDebugging\n\nLogging\n\nRunning Flutter inspector\n\nUse Chrome DevTools for the following tasks:\n\nGenerating event timeline\n\nAnalyzing performance\u2014make sure to use a\nprofile build\n\nHow do I test a web app?\n\nUse widget tests or integration tests. To learn more about\nrunning integration tests in a browser, see the Integration testing page.\n\nHow do I deploy a web app?\n\nSee Preparing a web app for release.\n\nDoes Platform.is work on the web?\n\nNot currently.", "source": "https://docs.flutter.dev/development/platform-integration/web/faq/index.html"} {"id": "30461913a3e2-0", "text": "Web support for Flutter\n\nPlatform integration\n\nWeb\n\nResources\n\nFlutter\u2019s web support delivers the same experiences on the web as on mobile.\nBuilding on the portability of Dart, the power of the web platform and the\nflexibility of the Flutter framework, you can now build apps for iOS, Android,\nand the browser from the same codebase. You can compile existing Flutter code\nwritten in Dart into a web experience because it is exactly the same Flutter\nframework and web is just another device target for your app.", "source": "https://docs.flutter.dev/development/platform-integration/web/index.html"} {"id": "30461913a3e2-1", "text": "Adding web support to Flutter involved implementing Flutter\u2019s\ncore drawing layer on top of standard browser APIs, in addition\nto compiling Dart to JavaScript, instead of the ARM machine code that\nis used for mobile applications. Using a combination of DOM, Canvas, \nand WebAssembly, Flutter can provide a portable, high-quality,\nand performant user experience across modern browsers.\nWe implemented the core drawing layer completely in Dart\nand used Dart\u2019s optimized JavaScript compiler to compile the\nFlutter core and framework along with your application\ninto a single, minified source file that can be deployed to\nany web server.\n\nWhile you can do a lot on the web,\nFlutter\u2019s web support is most valuable in the\nfollowing scenarios:\n\nProgressive Web Application built with Flutter\n\nFlutter delivers high-quality PWAs that are integrated with a user\u2019s\nenvironment, including installation, offline support, and tailored UX.", "source": "https://docs.flutter.dev/development/platform-integration/web/index.html"} {"id": "30461913a3e2-2", "text": "Flutter\u2019s web support enables complex standalone web apps that are rich with\ngraphics and interactive content to reach end users on a wide variety of\ndevices.\n\nWeb support for Flutter provides a browser-based delivery model for existing\nFlutter mobile apps.\n\nNot every HTML scenario is ideally suited for Flutter at this time. \nFor example, text-rich, flow-based, static content such as blog articles\nbenefit from the document-centric model that the web is built around,\nrather than the app-centric services that a UI framework like Flutter\ncan deliver. However, you can use Flutter to embed interactive\nexperiences into these websites.\n\nFor a glimpse into how to migrate your mobile app to web, see\nthe following video:\n\nResources\n\nThe following resources can help you get started:\n\nTo add web support to an existing app, or to create a\nnew app that includes web support, see\nBuilding a web application with Flutter.", "source": "https://docs.flutter.dev/development/platform-integration/web/index.html"} {"id": "30461913a3e2-3", "text": "To learn about Flutter\u2019s different web renderers (HTML and CanvasKit), see \nWeb renderers\n\nTo learn how to create a responsive Flutter\napp, see Creating responsive apps.\n\nTo view commonly asked questions and answers, see the\nweb FAQ.\n\nTo see code examples,\ncheck out the web samples for Flutter.\n\nTo see a Flutter web app demo, check out the Flutter Gallery.\n\nTo learn about deploying a web app, see\nPreparing an app for web release.\n\nFile an issue on the main Flutter repo.\n\nYou can chat and ask web-related questions on the\n#help channel on Discord.", "source": "https://docs.flutter.dev/development/platform-integration/web/index.html"} {"id": "79eac8579107-0", "text": "Customizing web app initialization\n\nPlatform integration\n\nWeb\n\nCustomizing web app initialization\n\nGetting started\n\nCustomizing web app initialization\n\nLoading the entrypoint\nInitializing the engine\n\nSkipping this step\n\nExample: Display a progress indicator\n\nUpgrading an older project\n\nYou can customize how a Flutter app is initialized on the web\nusing the _flutter.loader JavaScript API provided by flutter.js.\nThis API can be used to display a loading indicator in CSS,\nprevent the app from loading based on a condition,\nor wait until the user presses a button before showing the app.\n\nThe initialization process is split into the following stages:\n\nFetches the main.dart.js script and initializes the service worker.\n\nInitializes Flutter\u2019s web engine by downloading required resources\nsuch as assets, fonts, and CanvasKit.", "source": "https://docs.flutter.dev/development/platform-integration/web/initialization/index.html"} {"id": "79eac8579107-1", "text": "Prepares the DOM for your Flutter app and runs it.\n\nThis page shows how to customize the behavior\nat each stage of the initialization process.\n\nGetting started\n\nBy default, the index.html file\ngenerated by the flutter create command\ncontains a script tag\nthat calls loadEntrypoint from the flutter.js file:\n\n\n\n \n\n\n\n\n\n \n\n\n\n\n\n Free AI Image Generator No sign-up. Instant results. Open Now \n\n\n\nNote:\n In Flutter 2.10 or earlier,\n this script doesn\u2019t support customization.\n To upgrade your index.html file to the latest version,\n see Upgrading an older project.", "source": "https://docs.flutter.dev/development/platform-integration/web/initialization/index.html"} {"id": "79eac8579107-3", "text": "The loadEntrypoint function calls the onEntrypointLoaded callback\nonce the Service Worker is initialized, and the main.dart.js entrypoint\nhas been downloaded and run by the browser. Flutter also calls\nonEntrypointLoaded on every hot restart during development.\n\nThe onEntrypointLoaded callback receives an engine initializer object as\nits only parameter. Use the engine initializer to set the run-time\nconfiguration, and start the Flutter Web engine.\n\nThe initializeEngine() function returns a Promise\nthat resolves with an app runner object. The app runner has a\nsingle method, runApp(), that runs the Flutter app.\n\nCustomizing web app initialization\n\nIn this section,\nlearn how to customize each stage of your app\u2019s initialization.\n\nLoading the entrypoint\n\nThe loadEntrypoint method accepts these parameters:\n\nentrypointUrl\n\nThe URL of your Flutter app\u2019s entrypoint. Defaults to \"main.dart.js\".\n\nString", "source": "https://docs.flutter.dev/development/platform-integration/web/initialization/index.html"} {"id": "79eac8579107-4", "text": "String\n\nonEntrypointLoaded\n\nThe function called when the engine is ready to be initialized. Receives an engineInitializer object as its only parameter.\n\nFunction\n\nserviceWorker\n\nThe configuration for the flutter_service_worker.js loader. (If not set, the service worker won\u2019t be used.)\n\nObject\n\nThe serviceWorker JavaScript object accepts the following properties:\n\nserviceWorkerUrl\n\nThe URL of the Service Worker JS file. The serviceWorkerVersion is appended to the URL. Defaults to \"flutter_service_worker.js?v=\"\n\nString\n\nserviceWorkerVersion\n\nPass the serviceWorkerVersion variable set by the build process in your index.html file.\n\nString\n\ntimeoutMillis\n\nThe timeout value for the service worker load. Defaults to 4000.\n\nNumber\n\nInitializing the engine", "source": "https://docs.flutter.dev/development/platform-integration/web/initialization/index.html"} {"id": "79eac8579107-5", "text": "Number\n\nInitializing the engine\n\nAs of Flutter 3.7.0, you can use the initializeEngine method to\nconfigure several run-time options of the Flutter web engine through a\nJsFlutterConfiguration object.\n\nYou can pass in the following (optional) parameters:\n\ncanvasKitBaseUrl\n\nThe base URL from where canvaskit.wasm is downloaded.\n\nString\n\ncanvasKitForceCpuOnly\n\nWhen true, forces CPU-only rendering in CanvasKit (the engine won\u2019t use WebGL).\n\nbool\n\ncanvasKitMaximumSurfaces\n\nThe maximum number of overlay surfaces that the CanvasKit renderer can use.\n\ndouble\n\ndebugShowSemanticNodes\n\nIf true, Flutter visibly renders the semantics tree onscreen (for debugging).\n\nbool\n\nrenderer", "source": "https://docs.flutter.dev/development/platform-integration/web/initialization/index.html"} {"id": "79eac8579107-6", "text": "bool\n\nrenderer\n\nSpecifies the web renderer for the current Flutter application, either \"canvaskit\" or \"html\".\n\nString\n\nNote:\n Some of the parameters described above might have been overridden\n in previous releases by using properties in the window object.\n That approach is still supported, but displays a deprecation\n notice in the JS console, as of Flutter 3.7.0.\n\nSkipping this step\n\nInstead of calling initializeEngine() on the engine initializer (and then\nrunApp() on the application runner), you can call autoStart() to\ninitialize the engine with its default configuration, and then start the app\nimmediately after the initialization is complete:\n\n_flutter\n\nloader\n\nloadEntrypoint\n\n({\n\nserviceWorker\n\nserviceWorkerVersion\n\nserviceWorkerVersion\n\n},\n\nonEntrypointLoaded\n\nasync", "source": "https://docs.flutter.dev/development/platform-integration/web/initialization/index.html"} {"id": "79eac8579107-7", "text": "},\n\nonEntrypointLoaded\n\nasync\n\nfunction\n\nengineInitializer\n\nawait\n\nengineInitializer\n\nautoStart\n\n();\n\n});\n\nExample: Display a progress indicator\n\nTo give the user of your application feedback\nduring the initialization process,\nuse the hooks provided for each stage to update the DOM:\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nFor a more practical example using CSS animations,\nsee the initialization code for the Flutter Gallery.\n\nUpgrading an older project\n\nIf your project was created in Flutter 2.10 or earlier,\nyou can create a new index.html file\nwith the latest initialization template by running\nflutter create as follows.\n\nFirst, remove the files from your /web directory.\n\nThen, from your project directory, run the following:", "source": "https://docs.flutter.dev/development/platform-integration/web/initialization/index.html"} {"id": "df06366f8b52-0", "text": "Web renderers\n\nPlatform integration\n\nWeb\n\nWeb renderers\n\nCommand line options\n\nRuntime configuration\n\nChoosing which option to use\n\nExamples\n\nWhen running and building apps for the web, you can choose between two different\nrenderers. This page describes both renderers and how to choose the best one for\nyour needs. The two renderers are:\n\nUses a combination of HTML elements, CSS, Canvas elements, and SVG elements.\nThis renderer has a smaller download size.\n\nThis renderer is fully consistent with Flutter mobile and desktop, has\nfaster performance with higher widget density, but adds about 2MB in\ndownload size.\n\nCommand line options\n\nThe --web-renderer command line option takes one of three values, auto,\nhtml, or canvaskit.", "source": "https://docs.flutter.dev/development/platform-integration/web/renderers/index.html"} {"id": "df06366f8b52-1", "text": "auto (default) - automatically chooses which renderer to use. This option\nchooses the HTML renderer when the app is running in a mobile browser, and\nCanvasKit renderer when the app is running in a desktop browser.\n\nhtml - always use the HTML renderer\n\ncanvaskit - always use the CanvasKit renderer\n\nThis flag can be used with the run or build subcommands. For example:\n\nThis flag is ignored when a non-browser (mobile or desktop) device\ntarget is selected.\n\nRuntime configuration\n\nTo override the web renderer at runtime:\n\nBuild the app with the auto option.\n\nPrepare a configuration object with the renderer property set to\n\"canvaskit\" or \"html\".\n\nPass that object to the engineInitializer.initializeEngine(configuration);\nmethod on your Flutter Web app initialization.\n\nlet\n\nuseHtml\n\n// ...\n\n_flutter", "source": "https://docs.flutter.dev/development/platform-integration/web/renderers/index.html"} {"id": "df06366f8b52-2", "text": "useHtml\n\n// ...\n\n_flutter\n\nloader\n\nloadEntrypoint\n\n({\n\nonEntrypointLoaded\n\nasync\n\nfunction\n\nengineInitializer\n\n// Run-time engine configuration\n\nlet\n\nconfig\n\nrenderer\n\nuseHtml\n\nhtml\n\ncanvaskit\n\nlet\n\nappRunner\n\nawait\n\nengineInitializer\n\ninitializeEngine\n\nconfig\n\n);\n\nawait\n\nappRunner\n\nrunApp\n\n();\n\n});\n\nThe web renderer can\u2019t be changed after the Flutter engine startup process\nbegins in main.dart.js.\n\nCustomizing web app initialization.\n\nChoosing which option to use", "source": "https://docs.flutter.dev/development/platform-integration/web/renderers/index.html"} {"id": "df06366f8b52-3", "text": "Customizing web app initialization.\n\nChoosing which option to use\n\nChoose the auto option (default) if you are optimizing for download size on\nmobile browsers and optimizing for performance on desktop browsers.\n\nChoose the html option if you are optimizing download size over performance on\nboth desktop and mobile browsers.\n\nChoose the canvaskit option if you are prioritizing performance and\npixel-perfect consistency on both desktop and mobile browsers.\n\nExamples\n\nRun in Chrome using the default renderer option (auto):\n\nBuild your app in release mode, using the default (auto) option:\n\nBuild your app in release mode, using just the CanvasKit renderer:\n\nRun your app in profile mode using the HTML renderer:", "source": "https://docs.flutter.dev/development/platform-integration/web/renderers/index.html"} {"id": "39a9209237bd-0", "text": "Support for WebAssembly (Wasm)\n\nPlatform integration\n\nWeb\n\nWasm\n\nWebAssembly support for Dart and Flutter is under active development,\nand is currently considered experimental.\nWe hope to have the feature ready to try out later in 2023.\n\nThe Flutter and Dart teams are excited to add\nWebAssembly as a compilation target when building\napplications for the web.\n\nCompiling Dart to this new target requires\nWebAssembly Garbage Collection (WasmGC),\nan upcoming addition to the WebAssembly standard. The Chrome team is actively\nworking on WasmGC. You can\nsee the status of the Garbage Collection proposal\u2014and all other Wasm \nproposals\u2014on the WebAssembly roadmap.\n\nIn the mean time, check out Flutter\u2019s\nexisting support for the web. We are\noptimistic that existing Flutter web applications will have to do little or no\nwork to support WebAssembly once work is complete.", "source": "https://docs.flutter.dev/development/platform-integration/web/wasm/index.html"} {"id": "39a9209237bd-1", "text": "You might also be interested in this talk by folks on our team:\nFlutter, Dart, and WasmGC: A new model for web applications.\n\nFor the latest updates on this effort, \ncheck out flutter.dev/wasm.", "source": "https://docs.flutter.dev/development/platform-integration/web/wasm/index.html"} {"id": "477564d170d8-0", "text": "Displaying images on the web\n\nPlatform integration\n\nWeb\n\nWeb images\n\nImages in Flutter\n\nImages on the web\n\nCross-Origin Resource Sharing (CORS)\n\nFlutter renderers on the web\n\nIn-memory, asset, and same-origin network images\n\nCross-origin images\n\nHost your images in a CORS-enabled CDN.\nLack control over the image server? Use a CORS proxy.\nUse in a platform view.\n\nThe web supports the standard Image widget to display images.\nHowever, because web browsers are built to run untrusted code safely,\nthere are certain limitations in what you can do with images compared\nto mobile and desktop platforms. This page explains these limitations\nand offers ways to work around them.\n\nBackground\n\nThis section summarizes the technologies available\nacross Flutter and the web,\non which the solutions below are based on.", "source": "https://docs.flutter.dev/development/platform-integration/web/web-images/index.html"} {"id": "477564d170d8-1", "text": "Images in Flutter\n\nFlutter offers the Image widget as well as the low-level\ndart:ui/Image class for rendering images.\nThe Image widget has enough functionality for most use-cases.\nThe dart:ui/Image class can be used in\nadvanced situations where fine-grained control\nof the image is needed.\n\nImages on the web\n\nThe web offers several methods for displaying images.\nBelow are some of the common ones:\n\nThe built-in and HTML elements.\n\nThe drawImage method on the element.\n\nCustom image codec that renders to a WebGL canvas.", "source": "https://docs.flutter.dev/development/platform-integration/web/web-images/index.html"} {"id": "477564d170d8-2", "text": "Custom image codec that renders to a WebGL canvas.\n\nEach option has its own benefits and drawbacks.\nFor example, the built-in elements fit nicely among\nother HTML elements, and they automatically take\nadvantage of browser caching, and built-in image\noptimization and memory management.\nThey allow you to safely display images from arbitrary sources\n(more on than in the CORS section below).\ndrawImage is great when the image must fit within\nother content rendered using the element.\nYou also gain control over image sizing and,\nwhen the CORS policy allows it, read the pixels\nof the image back for further processing.\nFinally, WebGL gives you the highest degree of\ncontrol over the image. Not only can you read the pixels and\napply custom image algorithms, but you can also use GLSL for\nhardware-acceleration.\n\nCross-Origin Resource Sharing (CORS)", "source": "https://docs.flutter.dev/development/platform-integration/web/web-images/index.html"} {"id": "477564d170d8-3", "text": "Cross-Origin Resource Sharing (CORS)\n\nCORS is a mechanism that browsers use to control\nhow one site accesses the resources of another site.\nIt is designed such that, by default, one web-site\nis not allowed to make HTTP requests to another site\nusing XHR or fetch.\nThis prevents scripts on another site from acting on behalf\nof the user and from gaining access to another\nsite\u2019s resources without permission.\n\nWhen using , , or ,\nthe browser automatically blocks access to pixels\nwhen it knows that an image is coming from another site\nand the CORS policy disallows access to data.\n\nWebGL requires access to the image data in order\nto be able to render the image. Therefore,\nimages to be rendered using WebGL must only come from servers\nthat have a CORS policy configured to work with\nthe domain that serves your application.\n\nFlutter renderers on the web\n\nFlutter offers a choice of two renderers on the web:", "source": "https://docs.flutter.dev/development/platform-integration/web/web-images/index.html"} {"id": "477564d170d8-4", "text": "Flutter offers a choice of two renderers on the web:\n\nHTML: this renderer uses a combination of HTML,\nCSS, Canvas 2D, and SVG to render UI.\nIt uses the element to render images.\n\nCanvasKit: this renderer uses WebGL to render UI,\nand therefore requires\naccess to the pixels of the image.\n\nBecause the HTML renderer uses the \nelement it can display images from\narbitrary sources. However,\nthis places the following limitations on what you\ncan do with them:\n\nLimited support for Image.toByteData.\n\nNo support for OffsetLayer.toImage and\nScene.toImage.\n\nNo access to frame data in animated images\n(Codec.getNextFrame,\nframeCount is always 1, repetitionCount is always 0).\n\nNo support for ImageShader.\n\nLimited support for shader effects that can be applied to images.", "source": "https://docs.flutter.dev/development/platform-integration/web/web-images/index.html"} {"id": "477564d170d8-5", "text": "Limited support for shader effects that can be applied to images.\n\nNo control over image memory (Image.dispose has no effect).\nThe memory is managed by the browser behind-the-scenes.\n\nThe CanvasKit renderer implements Flutter\u2019s image API fully.\nHowever, it requires access to image pixels to do so,\nand is therefore subject to the CORS policy.\n\nSolutions\n\nIn-memory, asset, and same-origin network images\n\nIf the app has the bytes of the encoded image in memory,\nprovided as an asset, or stored on the\nsame server that serves the application\n(also known as same-origin), no extra effort is necessary.\nThe image can be displayed using\nImage.memory, Image.asset, and Image.network\nin both HTML and CanvasKit modes.\n\nCross-origin images\n\nThe HTML renderer can load cross-origin images\nwithout extra configuration.", "source": "https://docs.flutter.dev/development/platform-integration/web/web-images/index.html"} {"id": "477564d170d8-6", "text": "The HTML renderer can load cross-origin images\nwithout extra configuration.\n\nCanvasKit requires that the app gets the bytes of the encoded image.\nThere are several ways to do this, discussed below.\n\nHost your images in a CORS-enabled CDN.\n\nTypically, content delivery networks (CDN)\ncan be configured to customize what domains\nare allowed to access your content.\nFor example, Firebase site hosting allows\nspecifying a custom Access-Control-Allow-Origin\nheader in the firebase.json file.\n\nLack control over the image server? Use a CORS proxy.\n\nIf the image server cannot be configured to allow CORS\nrequests from your application,\nyou may still be able to load images by proxying the requests\nthrough another server. This requires that the\nintermediate server has sufficient access to load the images.\n\nThis method can be used in situations when the original\nimage server serves images publicly,\nbut is not configured with the correct CORS headers.\n\nExamples:", "source": "https://docs.flutter.dev/development/platform-integration/web/web-images/index.html"} {"id": "477564d170d8-7", "text": "Examples:\n\nUsing CloudFlare Workers.\n\nUsing Firebase Functions.\n\nUse in a platform view.\n\nFlutter supports embedding HTML inside the app using\nHtmlElementView. Use it to create an \nelement to render the image from another domain.\nHowever, do keep in mind that this comes with the\nlimitations explained in the section\n\u201cFlutter renderers on the web\u201d above.\n\nAs of today, using too many HTML elements\nwith the CanvasKit renderer may hurt performance.\nIf images interleave non-image content Flutter needs to\ncreate extra WebGL contexts between the elements.\nIf your application needs to display a lot of images\non the same screen all at once, consider using\nthe HTML renderer instead of CanvasKit.", "source": "https://docs.flutter.dev/development/platform-integration/web/web-images/index.html"} {"id": "8c0e1648bb75-0", "text": "Building Windows apps with Flutter\n\nPlatform integration\n\nWindows\n\nWindows development\n\nIntegrating with Windows\n\nSupporting Windows UI guidelines\n\nCustomizing the Windows host application\n\nCompiling with Visual Studio\n\nDistributing Windows apps\n\nMSIX packaging\n\nCreate a self-signed .pfx certificate for local testing\n\n\nBuilding your own zip file for Windows\n\nThis page discusses considerations unique to building\nWindows apps with Flutter, including shell integration\nand distribution of Windows apps through the\nMicrosoft Store on Windows.\n\nIntegrating with Windows", "source": "https://docs.flutter.dev/development/platform-integration/windows/building/index.html"} {"id": "8c0e1648bb75-1", "text": "Integrating with Windows\n\nThe Windows programming interface combines traditional Win32 APIs,\nCOM interfaces and more modern Windows Runtime libraries.\nAs all these provide a C-based ABI,\nyou can call into the services provided by the operating\nsystem using Dart\u2019s Foreign Function Interface library (dart:ffi).\nFFI is designed to enable Dart programs to efficiently call into\nC libraries. It provides Flutter apps with the ability to allocate\nnative memory with malloc or calloc, support for pointers,\nstructs and callbacks, and ABI types like long and size_t.\n\nFor more information about calling C libraries from Flutter,\nsee C interop using dart:ffi.", "source": "https://docs.flutter.dev/development/platform-integration/windows/building/index.html"} {"id": "8c0e1648bb75-2", "text": "In practice, while it is relatively straightforward to call\nbasic Win32 APIs from Dart in this way,\nit is easier to use a wrapper library that abstracts the\nintricacies of the COM programming model.\nThe win32 package provides a library\nfor accessing thousands of common Windows APIs,\nusing metadata provided by Microsoft for consistency and correctness.\nThe package also includes examples of\na variety of common use cases,\nsuch as WMI, disk management, shell integration,\nand system dialogs.\n\nA number of other packages build on this foundation,\nproviding idiomatic Dart access for the Windows registry,\ngamepad support, biometric storage,\ntaskbar integration, and serial port access, to name a few.\n\nMore generally, many other packages support Windows,\nincluding common packages such as url_launcher, shared_preferences, file_selector, and path_provider.\n\nSupporting Windows UI guidelines", "source": "https://docs.flutter.dev/development/platform-integration/windows/building/index.html"} {"id": "8c0e1648bb75-3", "text": "Supporting Windows UI guidelines\n\nWhile you can use any visual style or theme you choose,\nincluding Material, some app authors might wish to build\nan app that matches the conventions of Microsoft\u2019s\nFluent design system. The fluent_ui package,\na Flutter Favorite, provides support for visuals\nand common controls that are commonly found in\nmodern Windows apps, including navigation views,\ncontent dialogs, flyouts, date\npickers, and tree view widgets.\n\nIn addition, Microsoft offers fluentui_system_icons,\na package that provides easy access to thousands of\nFluent icons for use in your Flutter app.\n\nLastly, the bitsdojo_window package provides support\nfor \u201cowner draw\u201d title bars, allowing you to replace\nthe standard Windows title bar with a custom one\nthat matches the rest of your app.\n\nCustomizing the Windows host application", "source": "https://docs.flutter.dev/development/platform-integration/windows/building/index.html"} {"id": "8c0e1648bb75-4", "text": "Customizing the Windows host application\n\nWhen you create a Windows app, Flutter generates a\nsmall C++ application that hosts Flutter.\nThis \u201crunner app\u201d is responsible for creating and sizing a\ntraditional Win32 window, initializing the Flutter\nengine and any native plugins,\nand running the Windows message loop\n(passing relevant messages on to Flutter for further processing).\n\nYou can, of course, make changes to this code to suit your needs,\nincluding modifying the app name and icon,\nand setting the window\u2019s initial size and location.\nThe relevant code is in main.cpp,\nwhere you will find code similar to the following:\n\nWin32Window\n\n::\n\nPoint\n\norigin\n\n10\n\n10\n\n);\n\nWin32Window\n\n::\n\nSize\n\nsize\n\n1280\n\n720", "source": "https://docs.flutter.dev/development/platform-integration/windows/building/index.html"} {"id": "8c0e1648bb75-5", "text": "1280\n\n720\n\n);\n\nif\n\nwindow\n\nCreateAndShow\n\nL\"myapp\"\n\norigin\n\nsize\n\n))\n\nreturn\n\nEXIT_FAILURE\n\nReplace myapp with the title you would like displayed in the\nWindows caption bar, as well as optionally adjusting the\ndimensions for size and the window coordinates.\n\nTo change the Windows application icon, replace the\napp_icon.ico file in the windows\\runner\\resources\ndirectory with an icon of your preference.\n\nThe generated Windows executable filename can be changed\nby editing the BINARY_NAME variable in windows/CMakeLists.txt:\n\ncmake_minimum_required\n\n(VERSION 3.14\n\nproject\n\n(windows_desktop_app LANGUAGES CXX", "source": "https://docs.flutter.dev/development/platform-integration/windows/building/index.html"} {"id": "8c0e1648bb75-6", "text": "project\n\n(windows_desktop_app LANGUAGES CXX\n\n# The name of the executable created for the application.\n\n# Change this to change the on-disk name of your application.\n\nset\n\n(BINARY_NAME\n\n\"YourNewApp\"\n\ncmake_policy\n\n(SET CMP0063 NEW\n\nWhen you run flutter build windows,\nthe executable file generated in the\nbuild\\windows\\runner\\Release directory\nwill match the newly given name.\n\nFinally, further properties for the app executable\nitself can be found in the Runner.rc file in the\nwindows\\runner directory. Here you can change the\ncopyright information and application version that\nis embedded in the Windows app, which is displayed\nin the Windows Explorer properties dialog box.\nTo change the version number, edit the VERSION_AS_NUMBER\nand VERSION_AS_STRING properties;\nother information can be edited in the StringFileInfo block.", "source": "https://docs.flutter.dev/development/platform-integration/windows/building/index.html"} {"id": "8c0e1648bb75-7", "text": "Compiling with Visual Studio\n\nFor most apps, it\u2019s sufficient to allow Flutter to\nhandle the compilation process using the flutter run\nand flutter build commands. If you are making significant\nchanges to the runner app or integrating Flutter into an existing app,\nyou might want to load or compile the Flutter app in Visual Studio itself.\n\nFollow these steps:\n\nRun flutter build windows to create the build\\ directory.\n\nOpen the Visual Studio solution file for the Windows runner,\nwhich can now be found in the build\\windows directory,\nnamed according to the parent Flutter app.\n\nIn Solution Explorer, you will see a number of projects.\nRight-click the one that has the same name as the Flutter app,\nand choose Set as Startup Project.\n\nRun Build / Build Solution (or press Ctrl+Shift+B)\nto generate the necessary dependencies.\nYou should now be able to run Debug / Start Debugging\n(or press F5) to run the Windows app from Visual Studio.", "source": "https://docs.flutter.dev/development/platform-integration/windows/building/index.html"} {"id": "8c0e1648bb75-8", "text": "Use the toolbar to switch between Debug and Release\nconfigurations as appropriate.\n\nDistributing Windows apps\n\nThere are various approaches you can use for\ndistributing your Windows application.\nHere are some options:\n\nUse tooling to construct an MSIX installer\n(described in the next section)\nfor your application and distribute it through\nthe Microsoft Windows App Store.\nYou don\u2019t need to manually create a signing\ncertificate for this option as it is\nhandled for you.\n\nConstruct an MSIX installer and distribute\nit through your own website. For this\noption, you need to to give your application a\ndigital signature in the form of a\n.pfx certificate.\n\nCollect all of the necessary pieces\nand build your own zip file.\n\nMSIX packaging", "source": "https://docs.flutter.dev/development/platform-integration/windows/building/index.html"} {"id": "8c0e1648bb75-9", "text": "MSIX packaging\n\nMSIX, the new Windows application package format,\nprovides a modern packaging format and installer.\nThis format can either be used to ship applications\nto the Microsoft Store on Windows, or you can\ndistribute app installers directly.\n\nThe easiest way to create an MSIX distribution\nfor a Flutter project is to use the\nmsix pub package.\nFor an example of using the msix package\nfrom a Flutter desktop app,\nsee the Desktop Photo Search sample.\n\nCreate a self-signed .pfx certificate for local testing\n\nFor private deployment and testing with the help\nof the MSIX installer, you need to give your application a\ndigital signature in the form of a .pfx certificate.\n\nFor deployment through the Windows Store,\ngenerating a .pfx certificate is not required.\nThe Windows Store handles creation and management\nof certificates for applications\ndistributed through its store.", "source": "https://docs.flutter.dev/development/platform-integration/windows/building/index.html"} {"id": "8c0e1648bb75-10", "text": "Distributing your application by self hosting it on a\nwebsite requires a certificate signed by a\nCertificate Authority known to Windows.\n\nUse the following instructions to generate a\nself-signed .pfx certificate.\n\nIf you haven\u2019t already, download the OpenSSL\ntoolkit to generate your certificates.\n\nGo to where you installed OpenSSL, for example,\nC:\\Program Files\\OpenSSL-Win64\\bin.\n\nSet an environment variable so that you can access\nOpenSSL from anywhere:\n\"C:\\Program Files\\OpenSSL-Win64\\bin\"\n\nGenerate a private key as follows:\nopenssl genrsa -out mykeyname.key 2048\n\nGenerate a certificate signing request (CSR)\nfile using the private key:\nopenssl req -new -key mykeyname.key -out mycsrname.csr", "source": "https://docs.flutter.dev/development/platform-integration/windows/building/index.html"} {"id": "8c0e1648bb75-11", "text": "Generate the signed certificate (CRT) file using\nthe private key and CSR file:\nopenssl x509 -in mycsrname.csr -out mycrtname.crt -req -signkey mykeyname.key -days 10000\n\nGenerate the .pfx file using the private key and\nCRT file:\nopenssl pkcs12 -export -out CERTIFICATE.pfx -inkey mykeyname.key -in mycrtname.crt\n\nInstall the .pfx certificate first on the local machine\nin Certificate store as\nTrusted Root Certification Authorities\nbefore installing the app.\n\nBuilding your own zip file for Windows\n\nThe Flutter executable, .exe, can be found in your\nproject under build\\windows\\runner\\\\.\nIn addition to that executable, you need the following:\n\nFrom the same directory:\n \n all the .dll files\n the data directory", "source": "https://docs.flutter.dev/development/platform-integration/windows/building/index.html"} {"id": "8c0e1648bb75-12", "text": "From the same directory:\n \n all the .dll files\n the data directory\n\nThe Visual C++ redistributables.\nYou can use any of the methods shown in the\ndeployment example walkthroughs on the Microsoft site\nto ensure that end users have the C++ redistributables.\nIf you use the application-local option, you need to copy:\n \n msvcp140.dll\n vcruntime140.dll\n vcruntime140_1.dll\n \n\n Place the DLL files in the directory next to the executable\nand the other DLLs, and bundle them together in a zip file.\nThe resulting structure looks something like this:\n\n \nRelease\n\u2502 flutter_windows.dll\n\u2502 msvcp140.dll\n\u2502 my_app.exe\n\u2502 vcruntime140.dll\n\u2502 vcruntime140_1.dll\n\u2502\n\u2514\u2500\u2500\u2500data\n\u2502 \u2502 app.so\n\u2502 \u2502 icudtl.dat", "source": "https://docs.flutter.dev/development/platform-integration/windows/building/index.html"} {"id": "8c0e1648bb75-13", "text": "...\n\nAt this point if desired it would be relatively simple to\nadd this folder to a Windows installer such as Inno Setup, WiX, etc.", "source": "https://docs.flutter.dev/development/platform-integration/windows/building/index.html"} {"id": "72febf8be152-0", "text": "Migrate a Windows project to support dark title bars\n\nPlatform integration\n\nWindows\n\nMigrate a Windows project to support dark title bars\n\nMigration steps\n\nExample\n\nProjects created before Flutter 3.7 have light title bars even\nwhen the Windows theme is dark mode. Projects created before\nFlutter 3.7 need to be migrated to support dark title bars.\n\nMigration steps\n\nYour project can be updated using these steps:\n\nVerify you are on Flutter version 3.7 or newer using flutter --version\n\nIf needed, use flutter upgrade to update to the latest version of the\nFlutter SDK\n\nBackup your project, possibly using git or some other version control system\n\nDelete the following files:\n \n windows/runner/CMakeLists.txt\n windows/runner/win32_window.cpp\n windows/runner/win32_window.h", "source": "https://docs.flutter.dev/development/platform-integration/windows/dark-mode-migration/index.html"} {"id": "72febf8be152-1", "text": "Run flutter create --platforms=windows .\n\nReview the changes to the following files:\n \n windows/runner/CMakeLists.txt\n windows/runner/win32_window.cpp\n windows/runner/win32_window.h\n\nVerify your app builds using flutter build windows\n\nNote:\n Follow the run loop migration guide if the build fails\n with the following error message:\n\nExample\n\nPR 862 shows the migration work for the\nFlutter Gallery app.", "source": "https://docs.flutter.dev/development/platform-integration/windows/dark-mode-migration/index.html"} {"id": "044100ae7410-0", "text": "Windows\n\nPlatform integration\n\nWindows\n\nTopics:\n\nBuilding Windows apps\n\nRun loop migration\n\nVersion information migration\n\nDark mode migration", "source": "https://docs.flutter.dev/development/platform-integration/windows/index.html"} {"id": "f2f45bce2ad3-0", "text": "Migrate a Windows project to the idiomatic run loop\n\nPlatform integration\n\nWindows\n\nMigrate a Windows project to the idiomatic run loop\n\nMigration steps\n\nFlutter 2.5 replaced Windows apps\u2019 run loop with an idiomatic\nWindows message pump to reduce CPU usage.\n\nProjects created before Flutter version 2.5 need to be\nmigrated to get this improvement. You should follow the\nmigration steps below if the windows/runner/run_loop.h\nfile exists in your project.\n\nMigration steps\n\nNote:\n As part of this migration, you must recreate your Windows project,\n which clobbers any custom changes to the\n files in the windows/runner folder. The following steps\n include instructions for this scenario.\n\nYour project can be updated using these steps:\n\nVerify you are on Flutter version 2.5 or newer using flutter --version", "source": "https://docs.flutter.dev/development/platform-integration/windows/run-loop-migration/index.html"} {"id": "f2f45bce2ad3-1", "text": "Verify you are on Flutter version 2.5 or newer using flutter --version\n\nIf needed, use flutter upgrade to update to the latest version of the\nFlutter SDK\n\nBackup your project with git (or your preferred version control system),\nsince you need to reapply any local changes you\u2019ve made (if any) to your\nproject in a later step\n\nDelete all files under the windows/runner folder\n\nRun flutter create --platforms=windows . to recreate the Windows project\n\nReview the changes to files in the windows/runner folder\n\nReapply any custom changes made to the files in the\nwindows/runner folder prior to this migration\n\nVerify that your app builds using flutter build windows", "source": "https://docs.flutter.dev/development/platform-integration/windows/run-loop-migration/index.html"} {"id": "775486a5fa31-0", "text": "Migrate a Windows project to set version information\n\nPlatform integration\n\nWindows\n\nMigrate a Windows project to set version information\n\nMigration steps\n\nExample\n\nFlutter 3.3 added support for setting the Windows app\u2019s version from\nthe pubspec.yaml file or through the --build-name and --build-number\nbuild arguments. For more information, refer to the\nBuild and release a Windows app documentation.\n\nProjects created before Flutter version 3.3 need to be migrated\nto support versioning.\n\nMigration steps\n\nYour project can be updated using these steps:\n\nVerify you are on Flutter version 3.3 or newer using flutter --version\n\nIf needed, use flutter upgrade to update to the latest version of the\nFlutter SDK\n\nBackup your project, possibly using git or some other version control system", "source": "https://docs.flutter.dev/development/platform-integration/windows/version-migration/index.html"} {"id": "775486a5fa31-1", "text": "Backup your project, possibly using git or some other version control system\n\nDelete the windows/runner/CMakeLists.txt and windows/runner/Runner.rc\nfiles\n\nRun flutter create --platforms=windows .\n\nReview the changes to your windows/runner/CMakeLists.txt and\nwindows/runner/Runner.rc files\n\nVerify your app builds using flutter build windows\n\nNote:\n Follow the run loop migration guide if the build fails\n with the following error message:\n\nExample\n\nPR 721 shows the migration work for the\nFlutter Gallery app.", "source": "https://docs.flutter.dev/development/platform-integration/windows/version-migration/index.html"} {"id": "d09c39894687-0", "text": "Android Studio and IntelliJ\n\nTools\n\nAndroid Studio and IntelliJ\n\nInstallation and setup\n\nUpdating the plugins\n\nCreating projects\n\nCreating a new project\nCreating a new project from existing source code\n\nEditing code and viewing issues\n\nRunning and debugging\n\nSelecting a target\nRun app without breakpoints\nRun app with breakpoints\n\nFast edit and refresh development cycle\n\nShow performance data\n\nEditing tips for Flutter code\n\nAssists & quick fixes\n\nWrap with new widget assist\nWrap widget list with new widget assist\nConvert child to children assist\n\n\nLive templates\nKeyboard shortcuts\nHot reload vs. hot restart\n\nEditing Android code in Android Studio with full IDE support\n\nEditing Android code in IntelliJ IDEA\n\nTips and tricks\n\nTroubleshooting", "source": "https://docs.flutter.dev/development/tools/android-studio/index.html"} {"id": "d09c39894687-1", "text": "Tips and tricks\n\nTroubleshooting\n\nKnown issues and feedback\n\nAndroid Studio and IntelliJ\n\nVisual Studio Code\n\nInstallation and setup\n\nFollow the Set up an editor\ninstructions to install the Dart and Flutter plugins.\n\nUpdating the plugins\n\nUpdates to the plugins are shipped on a regular basis.\nYou should be prompted in the IDE when an update is available.\n\nTo check for updates manually:\n\nOpen preferences (Android Studio > Check for Updates on macOS,\nHelp > Check for Updates on Linux).\n\nIf dart or flutter are listed, update them.\n\nCreating projects\n\nYou can create a new project in one of several ways.\n\nCreating a new project\n\nTo create a new Flutter project from the Flutter starter app template:", "source": "https://docs.flutter.dev/development/tools/android-studio/index.html"} {"id": "d09c39894687-2", "text": "To create a new Flutter project from the Flutter starter app template:\n\nIn the IDE, click New Project from the Welcome\nwindow or File > New > Project from the main IDE window.\n\nSpecify the Flutter SDK path and click Next.\n\nEnter your desired Project name, Description and Project location.\n\nIf you might publish this app, set the company domain.\n\nClick Finish.\n\nSetting the company domain\n\nWhen creating a new app, some Flutter IDE plugins ask for an\n organization name in reverse domain order,\n something like com.example. Along with the name of the app,\n this is used as the package name for Android, and the Bundle ID for iOS\n when the app is released. If you think you might ever release this app,\n it is better to specify these now. They cannot be changed once the app\n is released. Your organization name should be unique.\n\nCreating a new project from existing source code", "source": "https://docs.flutter.dev/development/tools/android-studio/index.html"} {"id": "d09c39894687-3", "text": "Creating a new project from existing source code\n\nTo create a new Flutter project containing existing Flutter source code\nfiles:\n\nIn the IDE, click Create New Project from the\nWelcome window or File > New > Project\nfrom the main IDE window.\n\n \n Important:\n Do not use the New > Project from existing sources\n option for Flutter projects.\n\nSelect Flutter in the menu, and click Next.\n\nUnder Project location enter, or browse to,\nthe directory holding your\nexisting Flutter source code files.\n\nClick Finish.\n\nEditing code and viewing issues\n\nThe Flutter plugin performs code analysis that enables the following:\n\nSyntax highlighting.\n\nCode completions based on rich type analysis.\n\nNavigating to type declarations (Navigate > Declaration),\nand finding type usages (Edit > Find > Find Usages).", "source": "https://docs.flutter.dev/development/tools/android-studio/index.html"} {"id": "d09c39894687-4", "text": "Viewing all current source code problems\n(View > Tool Windows > Dart Analysis).\nAny analysis issues are shown in the Dart Analysis pane:\n\nRunning and debugging\n\nNote:\n You can debug your app in a few ways.\n\nUsing DevTools, a suite of debugging and profiling\ntools that run in a browser\nand include the Flutter inspector.\n\nUsing Android Studio\u2019s (or IntelliJ\u2019s) built-in debugging\nfeatures, such as the ability to set breakpoints.\n\nUsing the Flutter inspector, directly available in\nAndroid Studio and IntelliJ.\n\nThe instructions below describe features available in Android\n Studio and IntelliJ. For information on launching DevTools,\n see Running DevTools from Android Studio in the\n DevTools docs.\n\nRunning and debugging are controlled from the main toolbar:\n\nSelecting a target", "source": "https://docs.flutter.dev/development/tools/android-studio/index.html"} {"id": "d09c39894687-5", "text": "Running and debugging are controlled from the main toolbar:\n\nSelecting a target\n\nWhen a Flutter project is open in the IDE, you should see a set of\nFlutter-specific buttons on the right-hand side of the toolbar.\n\nNote:\n If the Run and Debug buttons are disabled, and no targets are listed,\n Flutter has not been able to discover any connected iOS or\n Android devices or simulators.\n You need to connect a device, or start a simulator, to proceed.\n\nLocate the Flutter Target Selector drop-down button.\nThis shows a list of available targets.\n\nSelect the target you want your app to be started on.\nWhen you connect devices, or start simulators,\nadditional entries appear.\n\nRun app without breakpoints\n\nClick the Play icon in the toolbar, or invoke Run > Run.\nThe bottom Run pane shows logs output.\n\nRun app with breakpoints\n\nIf desired, set breakpoints in your source code.", "source": "https://docs.flutter.dev/development/tools/android-studio/index.html"} {"id": "d09c39894687-6", "text": "If desired, set breakpoints in your source code.\n\nClick the Debug icon in the toolbar, or invoke Run > Debug.\n \n The bottom Debugger pane shows Stack Frames and Variables.\n The bottom Console pane shows detailed logs output.\n Debugging is based on a default launch configuration.\nTo customize this, click the drop-down button to the right\nof the device selector, and select Edit configuration.\n\nFast edit and refresh development cycle\n\nFlutter offers a best-in-class developer cycle enabling you to see the effect\nof your changes almost instantly with the Stateful Hot Reload feature.\nTo learn more, check out Hot reload.\n\nShow performance data\n\nNote:\n To examine performance issues in Flutter, see the\n Timeline view.\n\nTo view the performance data, including the widget rebuild\ninformation, start the app in Debug mode, and then open\nthe Performance tool window using\nView > Tool Windows > Flutter Performance.", "source": "https://docs.flutter.dev/development/tools/android-studio/index.html"} {"id": "d09c39894687-7", "text": "To see the stats about which widgets are being rebuilt, and how often,\nclick Show widget rebuild information in the Performance pane.\nThe exact count of the rebuilds for this frame displays in the second\ncolumn from the right. For a high number of rebuilds, a yellow spinning\ncircle displays. The column to the far right shows how many times a\nwidget was rebuilt since entering the current screen.\nFor widgets that aren\u2019t rebuilt, a solid grey circle displays.\nOtherwise, a grey spinning circle displays.\n\nThe app shown in this screenshot has been designed to deliver\n poor performance, and the rebuild profiler gives you a clue\n about what is happening in the frame that might cause poor\n performance. The widget rebuild profiler is not a diagnostic\n tool, by itself, about poor performance.", "source": "https://docs.flutter.dev/development/tools/android-studio/index.html"} {"id": "d09c39894687-8", "text": "The purpose of this feature is to make you aware when widgets are\nrebuilding\u2014you might not realize that this is happening when just\nlooking at the code. If widgets are rebuilding that you didn\u2019t expect,\nit\u2019s probably a sign that you should refactor your code by splitting\nup large build methods into multiple widgets.\n\nThis tool can help you debug at least four common performance issues:\n\nThe whole screen (or large pieces of it) are built by a single\nStatefulWidget, causing unnecessary UI building. Split up the\nUI into smaller widgets with smaller build() functions.\n\nOffscreen widgets are being rebuilt. This can happen, for example,\nwhen a ListView is nested in a tall Column that extends offscreen.\nOr when the RepaintBoundary is not set for a list that extends\noffscreen, causing the whole list to be redrawn.\n\nThe build() function for an AnimatedBuilder draws a subtree that\ndoes not need to be animated, causing unnecessary rebuilds of static\nobjects.", "source": "https://docs.flutter.dev/development/tools/android-studio/index.html"} {"id": "d09c39894687-9", "text": "An Opacity widget is placed unnecessarily high in the widget tree.\nOr, an Opacity animation is created by directly manipulating the\nopacity property of the Opacity widget, causing the widget itself\nand its subtree to rebuild.\n\nYou can click on a line in the table to navigate to the line\nin the source where the widget is created. As the code runs,\nthe spinning icons also display in the code pane to help you\nvisualize which rebuilds are happening.\n\nNote that numerous rebuilds doesn\u2019t necessarily indicate a problem.\nTypically you should only worry about excessive rebuilds if you have\nalready run the app in profile mode and verified that the performance\nis not what you want.\n\nAnd remember, the widget rebuild information is only available in\na debug build. Test the app\u2019s performance on a real device in a profile\nbuild, but debug performance issues in a debug build.\n\nEditing tips for Flutter code\n\nIf you have additional tips we should share, let us know!", "source": "https://docs.flutter.dev/development/tools/android-studio/index.html"} {"id": "d09c39894687-10", "text": "If you have additional tips we should share, let us know!\n\nAssists & quick fixes\n\nAssists are code changes related to a certain code identifier.\nA number of these are available when the cursor is placed on a\nFlutter widget identifier, as indicated by the yellow lightbulb icon.\nThe assist can be invoked by clicking the lightbulb, or by using the\nkeyboard shortcut (Alt+Enter on Linux and Windows,\nOption+Return on macOS), as illustrated here:\n\nQuick Fixes are similar, only they are shown with a piece of code has an error\nand they can assist in correcting it. They are indicated with a red lightbulb.\n\nWrap with new widget assist\n\nThis can be used when you have a widget that you want to wrap in a surrounding\nwidget, for example if you want to wrap a widget in a Row or Column.\n\nWrap widget list with new widget assist\n\nSimilar to the assist above, but for wrapping an existing list of\nwidgets rather than an individual widget.", "source": "https://docs.flutter.dev/development/tools/android-studio/index.html"} {"id": "d09c39894687-11", "text": "Convert child to children assist\n\nChanges a child argument to a children argument,\nand wraps the argument value in a list.\n\nLive templates\n\nLive templates can be used to speed up entering typical code structures.\nThey are invoked by typing their prefix, and then selecting it in the code\ncompletion window:\n\nThe Flutter plugin includes the following templates:\n\nPrefix stless: Create a new subclass of StatelessWidget.\n\nPrefix stful: Create a new subclass of StatefulWidget and\nits associated State subclass.\n\nPrefix stanim: Create a new subclass of StatefulWidget and its\nassociated State subclass, including a field initialized with an\nAnimationController.\n\nYou can also define custom templates in Settings > Editor > Live Templates.\n\nKeyboard shortcuts\n\nHot reload\n\nOn macOS (keymap Mac OS X 10.5+ copy) the keyboard shortcuts are\nCommand+Option and Command+Backslash.", "source": "https://docs.flutter.dev/development/tools/android-studio/index.html"} {"id": "d09c39894687-12", "text": "Keyboard mappings can be changed in the IDE Preferences/Settings: Select\nKeymap, then enter flutter into the search box in the upper right corner.\nRight click the binding you want to change and Add Keyboard Shortcut.\n\nHot reload vs. hot restart\n\nHot reload works by injecting updated source code files into the running\nDart VM (Virtual Machine). This includes not only adding new classes,\nbut also adding methods and fields to existing classes,\nand changing existing functions.\nA few types of code changes cannot be hot reloaded though:\n\nGlobal variable initializers\n\nStatic field initializers\n\nThe main() method of the app\n\nFor these changes you can fully restart your application,\nwithout having to end your debugging session. To perform a hot restart,\ndon\u2019t click the Stop button, simply re-click the Run button (if in a run\nsession) or Debug button (if in a debug session), or shift-click the \u2018hot\nreload\u2019 button.\n\nEditing Android code in Android Studio with full IDE support", "source": "https://docs.flutter.dev/development/tools/android-studio/index.html"} {"id": "d09c39894687-13", "text": "Editing Android code in Android Studio with full IDE support\n\nOpening the root directory of a Flutter project doesn\u2019t expose all the Android\nfiles to the IDE. Flutter apps contain a subdirectory named android. If you\nopen this subdirectory as its own separate project in Android Studio, the IDE\nwill be able to fully support editing and refactoring all Android files (like\nGradle scripts).\n\nIf you already have the entire project opened as a Flutter app in Android\nStudio, there are two equivalent ways to open the Android files on their own\nfor editing in the IDE. Before trying this, make sure that you\u2019re on the latest\nversion of Android Studio and the Flutter plugins.\n\nIn the \u201cproject view\u201d, you should see a subdirectory immediately under\nthe root of your flutter app named android. Right click on it,\nthen select Flutter > Open Android module in Android Studio.", "source": "https://docs.flutter.dev/development/tools/android-studio/index.html"} {"id": "d09c39894687-14", "text": "OR, you can open any of the files under the android subdirectory for\nediting. You should then see a \u201cFlutter commands\u201d banner at the top of the\neditor with a link labeled Open for Editing in Android Studio.\nClick that link.\n\nFor both options, Android Studio gives you the option to use separate windows or\nto replace the existing window with the new project when opening a second\nproject. Either option is fine.\n\nIf you don\u2019t already have the Flutter project opened in Android studio,\nyou can open the Android files as their own project from the start:\n\nClick Open an existing Android Studio Project on the Welcome\nsplash screen, or File > Open if Android Studio is already open.\n\nOpen the android subdirectory immediately under the flutter app root.\nFor example if the project is called flutter_app,\nopen flutter_app/android.", "source": "https://docs.flutter.dev/development/tools/android-studio/index.html"} {"id": "d09c39894687-15", "text": "If you haven\u2019t run your Flutter app yet, you might see Android Studio report a\nbuild error when you open the android project. Run flutter pub get in\nthe app\u2019s root directory and rebuild the project by selecting Build > Make\nto fix it.\n\nEditing Android code in IntelliJ IDEA\n\nTo enable editing of Android code in IntelliJ IDEA, you need to configure the\nlocation of the Android SDK:\n\nIn Preferences > Plugins, enable Android Support if you\nhaven\u2019t already.\n\nRight-click the android folder in the Project view, and select Open\nModule Settings.\n\nIn the Sources tab, locate the Language level field, and\nselect level 8 or later.\n\nIn the Dependencies tab, locate the Module SDK field,\nand select an Android SDK. If no SDK is listed, click New\nand specify the location of the Android SDK.\nMake sure to select an Android SDK matching the one used by\nFlutter (as reported by flutter doctor).\n\nClick OK.", "source": "https://docs.flutter.dev/development/tools/android-studio/index.html"} {"id": "d09c39894687-16", "text": "Click OK.\n\nTips and tricks\n\nFlutter IDE cheat sheet, MacOS version\n\nFlutter IDE cheat sheet, Windows & Linux version\n\nTroubleshooting\n\nKnown issues and feedback\n\nImportant known issues that might impact your experience are documented\nin the Flutter plugin README file.\n\nAll known bugs are tracked in the issue trackers:\n\nFlutter plugin: GitHub issue tracker\n\nDart plugin: JetBrains YouTrack\n\nWe welcome feedback, both on bugs/issues and feature requests.\nPrior to filing new issues:\n\nDo a quick search in the issue trackers to see if the issue is already\ntracked.\n\nMake sure you have updated to the most recent version of the\nplugin.\n\nWhen filing new issues, include the output of flutter doctor.", "source": "https://docs.flutter.dev/development/tools/android-studio/index.html"} {"id": "fe4b0dc19d5d-0", "text": "Install and run DevTools from Android Studio\n\nTools\n\nDevTools\n\nInstall and run DevTools from Android Studio\n\nInstall the Flutter plugin\n\nStart an app to debug\n\nLaunch DevTools from the toolbar/menu\n\nLaunch DevTools from an action\n\nInstall the Flutter plugin\n\nInstall the Flutter plugin if you don\u2019t already have it installed.\nThis can be done using the normal Plugins page in the IntelliJ\nand Android Studio settings. Once that page is open,\nyou can search the marketplace for the Flutter plugin.\n\nStart an app to debug\n\nTo open DevTools, you first need to run a Flutter app.\nThis can be accomplished by opening a Flutter project,\nensuring that you have a device connected,\nand clicking the Run or Debug toolbar buttons.\n\nLaunch DevTools from the toolbar/menu", "source": "https://docs.flutter.dev/development/tools/devtools/android-studio/index.html"} {"id": "fe4b0dc19d5d-1", "text": "Launch DevTools from the toolbar/menu\n\nOnce an app is running,\nyou can start DevTools using one of the following:\n\nSelect the Open DevTools toolbar action in the Run view.\n\nSelect the Open DevTools toolbar action in the Debug view.\n(if debugging)\n\nSelect the Open DevTools action from the More Actions\nmenu in the Flutter Inspector view.\n\nLaunch DevTools from an action\n\nYou can also open DevTools from an IntelliJ action.\nOpen the Find Action\u2026 dialog\n(on a Mac, press Command+Shift+A), and search for the\nOpen DevTools action. When you select that action,\nDevTools is installed (if it isn\u2019t already), the DevTools server\nlaunches, and a browser instance opens pointing to the DevTools app.", "source": "https://docs.flutter.dev/development/tools/devtools/android-studio/index.html"} {"id": "fe4b0dc19d5d-2", "text": "When opened with an IntelliJ action, DevTools is not connected\nto a Flutter app. You\u2019ll need to provide a service protocol port\nfor a currently running app. You can do this using the inline\nConnect to a running app dialog.", "source": "https://docs.flutter.dev/development/tools/devtools/android-studio/index.html"} {"id": "73ea98ef8e96-0", "text": "Using the app size tool\n\nTools\n\nDevTools\n\nUsing the app size tool\n\nWhat is it?\n\nWhat is \u201csize information\u201d?\nDart size information\n\nHow to use it\n\nAnalysis tab\n\nLoading a size file\nTreemap and table\n\nUsing the treemap\n\n\nDominator tree and call graph\n\nUsing the dominator tree\nUsing the call graph\nShould I use the dominator tree or the call graph?\n\nDiff tab\n\nLoading size files\nTreemap and table\n\nGenerating size files\n\nOther resources\n\nWhat is it?\n\nThe app size tool allows you to analyze the total size of your app.\nYou can view a single snapshot of \u201csize information\u201d\nusing the Analysis tab, or compare two different\nsnapshots of \u201csize information\u201d using the Diff tab.", "source": "https://docs.flutter.dev/development/tools/devtools/app-size/index.html"} {"id": "73ea98ef8e96-1", "text": "What is \u201csize information\u201d?\n\n\u201cSize information\u201d contains size data for Dart code,\nnative code, and non-code elements of your app,\nlike the application package, assets and fonts. A \u201csize\ninformation\u201d file contains data for the total picture\nof your application size.\n\nDart size information\n\nThe Dart AOT compiler performs tree-shaking on your code\nwhen compiling your application (profile or release mode\nonly\u2014the AOT compiler is not used for debug builds,\nwhich are JIT compiled). This means that the compiler\nattempts to optimize your app\u2019s size by removing\npieces of code that are unused or unreachable.\n\nAfter the compiler optimizes your code as much as it can,\nthe end result can be summarized as the collection of packages,\nlibraries, classes, and functions that exist in the binary output,\nalong with their size in bytes. This is the Dart portion of\n\u201csize information\u201d we can analyze in the app size tool to further\noptimize Dart code and track down size issues.", "source": "https://docs.flutter.dev/development/tools/devtools/app-size/index.html"} {"id": "73ea98ef8e96-2", "text": "How to use it\n\nIf DevTools is already connected to a running application,\nnavigate to the \u201cApp Size\u201d tab.\n\nIf DevTools is not connected to a running application, you can\naccess the tool from the landing page that appears once you have launched\nDevTools (see installation instructions).\n\nAnalysis tab\n\nThe analysis tab allows you to inspect a single snapshot\nof size information. You can view the hierarchical structure\nof the size data using the treemap and table,\nand you can view code attribution data\n(for example, why a piece of code is included in your compiled\napplication) using the dominator tree and call graph.\n\nLoading a size file\n\nWhen you open the Analysis tab, you\u2019ll see instructions\nto load an app size file. Drag and drop an app size\nfile into the dialog, and click \u201cAnalyze Size\u201d.\n\nSee Generating size files below for information on\ngenerating size files.\n\nTreemap and table", "source": "https://docs.flutter.dev/development/tools/devtools/app-size/index.html"} {"id": "73ea98ef8e96-3", "text": "Treemap and table\n\nThe treemap and table show the hierarchical data for your app\u2019s size.\n\nUsing the treemap\n\nA treemap is a visualization for hierarchical data.\nThe space is broken up into rectangles,\nwhere each rectangle is sized and ordered by some quantitative\nvariable (in this case, size in bytes).\nThe area of each rectangle is proportional to the size\nthe node occupies in the compiled application. Inside\nof each rectangle (call one A), there are additional\nrectangles that exist one level deeper in the data\nhierarchy (children of A).\n\nTo drill into a cell in the treemap, select the cell.\nThis re-roots the tree so that the selected cell becomes\nthe visual root of the treemap.\n\nTo navigate back, or up a level, use the breadcrumb\nnavigator at the top of the treemap.\n\nDominator tree and call graph", "source": "https://docs.flutter.dev/development/tools/devtools/app-size/index.html"} {"id": "73ea98ef8e96-4", "text": "Dominator tree and call graph\n\nThis section of the page shows code size attribution data\n(for example, why a piece of code is included in your\ncompiled application). This data is visible\nin the form of a dominator tree as well as a call graph.\n\nUsing the dominator tree\n\nA dominator tree is a tree where each node\u2019s\nchildren are those nodes it immediately dominates.\nA node a is said to \u201cdominate\u201d a node b if\nevery path to b must go through a.\n\nIn this example, package:a dominates package:d,\nso the dominator tree for this data would look like:\n\nThis information is helpful for understanding why certain\npieces of code are present in your compiled application.\nFor example, if you are analyzing your app size and find\nan unexpected package included in your compiled app, you can\nuse the dominator tree to trace the package to its root source.\n\nUsing the call graph", "source": "https://docs.flutter.dev/development/tools/devtools/app-size/index.html"} {"id": "73ea98ef8e96-5", "text": "Using the call graph\n\nA call graph provides similar information to the dominator\ntree in regards to helping you understand why code exists\nin a compiled application. However, instead of showing\nthe one-to-many dominant relationships between nodes of code\nsize data like the dominator tree, the call graph shows the many-to-many\nrelationships that existing between nodes of code size data.\n\nAgain, using the following example:\n\nThe call graph for this data would link package:d\nto its direct callers, package:b and package:c,\ninstead of its \u201cdominator\u201d, package:a.\n\nThis information is useful for understanding the\nfine-grained dependencies of between pieces of your code\n(packages, libraries, classes, functions).\n\nShould I use the dominator tree or the call graph?\n\nUse the dominator tree if you want to understand the\nroot cause for why a piece of code is included in your\napplication. Use the call graph if you want to understand\nall the call paths to and from a piece of code.", "source": "https://docs.flutter.dev/development/tools/devtools/app-size/index.html"} {"id": "73ea98ef8e96-6", "text": "A dominator tree is an analysis or slice of call graph data,\nwhere nodes are connected by \u201cdominance\u201d instead of\nparent-child hierarchy. In the case where a parent node\ndominates a child, the relationship in the call graph and the\ndominator tree would be identical, but this is not always the case.\n\nIn the scenario where the call graph is complete\n(an edge exists between every pair of nodes),\nthe dominator tree would show the that root is the\ndominator for every node in the graph.\nThis is an example where the call graph would give\nyou a better understanding around why a piece of code is\nincluded in your application.\n\nDiff tab\n\nThe diff tab allows you to compare two snapshots of\nsize information. The two size information files\nyou are comparing should be generated from two different\nversions of the same app; for example,\nthe size file generated before and after\nchanges to your code. You can visualize the\ndifference between the two data sets\nusing the treemap and table.\n\nLoading size files", "source": "https://docs.flutter.dev/development/tools/devtools/app-size/index.html"} {"id": "73ea98ef8e96-7", "text": "Loading size files\n\nWhen you open the Diff tab,\nyou\u2019ll see instructions to load \u201cold\u201d and \u201cnew\u201d size\nfiles. Again, these files need to be generated from\nthe same application. Drag and drop these files into\ntheir respective dialogs, and click Analyze Diff.\n\nSee Generating size files below for information\non generating these files.\n\nTreemap and table\n\nIn the diff view, the treemap and tree table show\nonly data that differs between the two imported size files.\n\nFor questions about using the treemap, see Using the treemap above.\n\nGenerating size files\n\nTo use the app size tool, you\u2019ll need to generate a\nFlutter size analysis file. This file contains size\ninformation for your entire application (native code,\nDart code, assets, fonts, etc.), and you can generate it using the\n--analyze-size flag:", "source": "https://docs.flutter.dev/development/tools/devtools/app-size/index.html"} {"id": "73ea98ef8e96-8", "text": "This builds your application, prints a size summary\nto the command line, and prints a line\ntelling you where to find the size analysis file.\n\nIn this example, import the build/apk-code-size-analysis_01.json\nfile into the app size tool to analyze further.\nFor more information, see App Size Documentation.\n\nOther resources\n\nTo learn how to perform a step-by-step size analysis of\nthe Wonderous App using DevTools, check out the\nApp Size Tool tutorial. Various strategies\nto reduce an app\u2019s size are also discussed.", "source": "https://docs.flutter.dev/development/tools/devtools/app-size/index.html"} {"id": "24e0ff14b2ab-0", "text": "Install and run DevTools from the command line\n\nTools\n\nDevTools\n\nInstall and run DevTools from the command line\n\nStart an application to debug\n\nConnect to a new app instance\n\nTo run Dart DevTools from the CLI, you must have dart on your path. Then\nyou can run the following command to launch DevTools:\n\nTo upgrade DevTools, upgrade your Dart SDK. If a newer Dart SDK\nincludes a newer version of DevTools, dart devtools will automatically\nlaunch this version. If which dart points to the Dart SDK included in\nyour Flutter SDK, then DevTools will be upgraded when you upgrade your\nFlutter SDK to a newer version.\n\nWhen you run DevTools from the command line, you should see output that\nlooks something like:\n\nStart an application to debug", "source": "https://docs.flutter.dev/development/tools/devtools/cli/index.html"} {"id": "24e0ff14b2ab-1", "text": "Start an application to debug\n\nNext, start an app to connect to.\nThis can be either a Flutter application\nor a Dart command-line application.\nThe command below specifies a Flutter app:\n\nYou need to have a device connected, or a simulator open,\nfor flutter run to work. Once the app starts, you\u2019ll see a\nmessage in your terminal that looks like the following:\n\nOpen the DevTools instance connected to your app\nby opening the second link in Chrome.\n\nThis URL contains a security token, \nso it\u2019s different for each run of your app. \nThis means that if you stop your application and re-run it, \nyou need to connect to DevTools again with the new URL.\n\nConnect to a new app instance\n\nIf your app stops running\nor you opened DevTools manually,\nyou should see a Connect dialog:", "source": "https://docs.flutter.dev/development/tools/devtools/cli/index.html"} {"id": "24e0ff14b2ab-2", "text": "You can manually connect DevTools to a new app instance\nby copying the Observatory link you got from running your app,\nsuch as http://127.0.0.1:52129/QjqebSY4lQ8=/\nand pasting it into the connect dialog:", "source": "https://docs.flutter.dev/development/tools/devtools/cli/index.html"} {"id": "e47c499845fd-0", "text": "Using the CPU profiler view\n\nTools\n\nDevTools\n\nUsing the CPU profiler view\n\nWhat is it?\n\nCPU Profiler\n\nProfile granularity\nFlame chart\nCall tree\nBottom up\n\nOther resources\n\nNote:\n The CPU profiler view works with Dart CLI and mobile apps only.\n Use Chrome DevTools to analyze performance\n of a web app.\n\nWhat is it?\n\nThe CPU profiler view allows you to record and profile a\nsession from your Dart or Flutter application.\n\nNote:\n If you are running a Flutter application,\n use a profile build to analyze performance.\n CPU profiles are not indicative of release performance\n unless your Flutter application is run in profile mode.\n\nCPU Profiler", "source": "https://docs.flutter.dev/development/tools/devtools/cpu-profiler/index.html"} {"id": "e47c499845fd-1", "text": "CPU Profiler\n\nStart recording a CPU profile by clicking Record.\nWhen you are done recording, click Stop. At this point,\nCPU profiling data is pulled from the VM and displayed\nin the profiler views (Call Tree, Bottom Up, and Flame Chart).\n\nProfile granularity\n\nThe default rate at which the VM collects CPU samples\nis 1 sample / 250 \u03bcs. This is selected by default on\nthe CPU profiler view as \u201cProfile granularity: medium\u201d.\nThis rate can be modified using the selector at the top\nof the page. The sampling rates for low, medium,\nand high granularity are 1 / 1000 \u03bcs, 1 / 250 \u03bcs, and 1 / 50 \u03bcs,\nrespectively. It is important to know the trade-offs\nof modifying this setting.", "source": "https://docs.flutter.dev/development/tools/devtools/cpu-profiler/index.html"} {"id": "e47c499845fd-2", "text": "A higher granularity profile has a higher sampling rate,\nand therefore yields a fine-grained CPU profile with more samples.\nThis might also impact performance of your app since the VM\nis being interrupted more often to collect samples. This also\ncauses the VM\u2019s CPU sample buffer to overflow more quickly.\nThe VM has limited space where it can store CPU sample information.\nAt a higher sampling rate, the space fills up and begins\nto overflow sooner than it would have if a lower sampling\nrate was used. This means that you might not have access to CPU samples\nfrom the beginning of the recorded profile.\n\nA lower granularity profile has a lower sampling rate,\nand therefore yields a coarse-grained CPU profile with fewer samples.\nHowever, this impacts your app\u2019s performance less.\nThe VM\u2019s sample buffer also fills more slowly, so you can see\nCPU samples for a longer period of app run time. This means that\nyou have a better chance of viewing CPU samples from the beginning\nof the recorded profile.\n\nFlame chart", "source": "https://docs.flutter.dev/development/tools/devtools/cpu-profiler/index.html"} {"id": "e47c499845fd-3", "text": "Flame chart\n\nThis tab of the profiler shows CPU samples for the recorded duration.\nThis chart should be viewed as a top-down stack trace, where the\ntop-most stack frame calls the one below it. The width of each stack\nframe represents the amount of time it consumed the CPU. Stack frames\nthat consume a lot of CPU time might be a good place to look for possible\nperformance improvements.\n\nCall tree\n\nThe call tree view shows the method trace for the CPU profile.\nThis table is a top-down representation of the profile,\nmeaning that a method can be expanded to show its callees.\n\nTime the method spent executing its own code as well as\n the code for its callees.\n\nTime the method spent executing only its own code.\n\nName of the called method.\n\nFile path for the method call site.\n\nBottom up", "source": "https://docs.flutter.dev/development/tools/devtools/cpu-profiler/index.html"} {"id": "e47c499845fd-4", "text": "File path for the method call site.\n\nBottom up\n\nThe bottom up view shows the method trace for the CPU profile but,\nas the name suggests, it\u2019s a bottom-up representation of the profile.\nThis means that each top-level method in the table is actually the\nlast method in the call stack for a given CPU sample (in other words,\nit\u2019s the leaf node for the sample).\n\nIn this table, a method can be expanded to show its callers.\n\nTime the method spent executing its own code\n as well as the code for its callee.", "source": "https://docs.flutter.dev/development/tools/devtools/cpu-profiler/index.html"} {"id": "e47c499845fd-5", "text": "For top-level methods in the bottom-up tree\n (leaf stack frames in the profile), this is the time the\n method spent executing only its own code. For sub nodes\n (the callers in the CPU profile), this is the self time\n of the callee when being called by the caller.\n In the following example, the self time of the caller\n createRenderObject is equal to the self time of\n the callee debugCheckHasDirectionality when being called by\n the caller.\n\nName of the called method.\n\nFile path for the method call site.\n\n \n\n \nOther resources\n\n To learn how to use DevTools to analyze\nthe CPU usage of a compute-intensive Mandelbrot app,\ncheck out a guided CPU Profiler View tutorial.\nAlso, learn how to analyze CPU usage when the app\nuses isolates for parallel computing.", "source": "https://docs.flutter.dev/development/tools/devtools/cpu-profiler/index.html"} {"id": "a80bc7878885-0", "text": "Using the debugger\n\nTools\n\nDevTools\n\nUsing the debugger\n\nGetting started\n\nSetting breakpoints\n\nThe call stack and variable areas\n\nStepping through source code\n\nConsole output\n\nBreaking on exceptions\n\nKnown issues\n\nOther resources\n\nNote:\n DevTools hides the Debugger tab if the app was launched\n from VS Code because VS Code has a built-in debugger.\n\nGetting started\n\nDevTools includes a full source-level debugger, supporting\nbreakpoints, stepping, and variable inspection.\n\nNote:\n The debugger works with all Flutter and Dart applications.\n If you are looking for a way to use GDB to remotely debug the\n Flutter engine running within an Android app process,\n check out flutter_gdb.", "source": "https://docs.flutter.dev/development/tools/devtools/debugger/index.html"} {"id": "a80bc7878885-1", "text": "When you open the debugger tab, you should see the source for the main\nentry-point for your app loaded in the debugger.\n\nIn order to browse around more of your application sources, click Libraries\n(top right) or use the hot key command \u2318 + P / ctrl + P. This will open the\nlibraries window and allow you to search for other source files.\n\nSetting breakpoints\n\nTo set a breakpoint, click the left margin (the line number ruler)\nin the source area. Clicking once sets a breakpoint, which should\nalso show up in the Breakpoints area on the left. Clicking\nagain removes the breakpoint.\n\nThe call stack and variable areas", "source": "https://docs.flutter.dev/development/tools/devtools/debugger/index.html"} {"id": "a80bc7878885-2", "text": "The call stack and variable areas\n\nWhen your application encounters a breakpoint, it pauses there,\nand the DevTools debugger shows the paused execution location\nin the source area. In addition, the Call stack and Variables\nareas populate with the current call stack for the paused isolate,\nand the local variables for the selected frame. Selecting other\nframes in the Call stack area changes the contents of the variables.\n\nWithin the Variables area, you can inspect individual objects by\ntoggling them open to see their fields. Hovering over an object\nin the Variables area calls toString() for that object and\ndisplays the result.\n\nStepping through source code\n\nWhen paused, the three stepping buttons become active.\n\nUse Step in to step into a method invocation, stopping at\nthe first executable line in that invoked method.\n\nUse Step over to step over a method invocation;\nthis steps through source lines in the current method.", "source": "https://docs.flutter.dev/development/tools/devtools/debugger/index.html"} {"id": "a80bc7878885-3", "text": "Use Step out to step out of the current method,\nwithout stopping at any intermediary lines.\n\nIn addition, the Resume button continues regular\nexecution of the application.\n\nConsole output\n\nConsole output for the running app (stdout and stderr) is\ndisplayed in the console, below the source code area.\nYou can also see the output in the Logging view.\n\nBreaking on exceptions\n\nTo adjust the stop-on-exceptions behavior, toggle the\nIgnore dropdown at the top of the debugger view.\n\nBreaking on unhandled excepts only pauses execution if the\nbreakpoint is considered uncaught by the application code.\nBreaking on all exceptions causes the debugger to pause\nwhether or not the breakpoint was caught by application code.\n\nKnown issues\n\nWhen performing a hot restart for a Flutter application,\nuser breakpoints are cleared.\n\nOther resources\n\nFor more information on debugging and profiling, see the\nDebugging page.", "source": "https://docs.flutter.dev/development/tools/devtools/debugger/index.html"} {"id": "c9a3f90b4c33-0", "text": "DevTools\n\nTools\n\nDevTools\n\nTopics:\n\nOverview\n\nInstall from Android Studio & IntelliJ\n\nInstall from VS Code\n\nInstall from command line\n\nFlutter inspector\n\nPerformance view\n\nCPU Profiler view\n\nMemory view\n\nNetwork view\n\nDebugger\n\nLogging view\n\nApp size tool\n\nRelease notes", "source": "https://docs.flutter.dev/development/tools/devtools/index.html"} {"id": "ff26818d7ee4-0", "text": "Using the Flutter inspector\n\nTools\n\nDevTools\n\nUsing the Flutter inspector\n\nWhat is it?\n\nGet started\n\nDebugging layout issues visually\n\nInspecting a widget\n\nFlutter Layout Explorer\n\nUsing the Layout Explorer\n\nFlex layouts\nFixed size layouts\n\nVisual debugging\n\nSlow animations\n\nSee also\n\n\nShow guidelines\n\nRender boxes\nAlignments\nPadding\nScroll views\nClipping\nSpacers\n\n\nShow baselines\nHighlight repaints\nHighlight oversized images\n\nFixing images\nMore information\n\nDetails Tree\n\nTrack widget creation\n\nOther resources\n\nNote:\n The inspector works with all Flutter applications.\n\nWhat is it?", "source": "https://docs.flutter.dev/development/tools/devtools/inspector/index.html"} {"id": "ff26818d7ee4-1", "text": "What is it?\n\nThe Flutter widget inspector is a powerful tool for visualizing and\nexploring Flutter widget trees. The Flutter framework uses widgets\nas the core building block for anything from controls\n(such as text, buttons, and toggles),\nto layout (such as centering, padding, rows, and columns).\nThe inspector helps you visualize and explore Flutter widget\ntrees, and can be used for the following:\n\nunderstanding existing layouts\n\ndiagnosing layout issues\n\nGet started\n\nTo debug a layout issue, run the app in debug mode and\nopen the inspector by clicking the Flutter Inspector\ntab on the DevTools toolbar.\n\nNote:\n You can still access the Flutter inspector directly from\n Android Studio/IntelliJ, but you might prefer the\n more spacious view when running it from DevTools\n in a browser.\n\nDebugging layout issues visually", "source": "https://docs.flutter.dev/development/tools/devtools/inspector/index.html"} {"id": "ff26818d7ee4-2", "text": "Debugging layout issues visually\n\nThe following is a guide to the features available in the\ninspector\u2019s toolbar. When space is limited, the icon is\nused as the visual version of the label.\n\nEnable this button in order to select\n a widget on the device to inspect it. For more information,\n see Inspecting a widget.\n\nReload the current widget info.\n\nSlow animations\n\nRun animations 5 times slower to help fine-tune them.\n\nShow guidelines\n\nOverlay guidelines to assist with fixing layout issues.\n\nShow baselines\n\nShow baselines, which are used for aligning text.\n Can be useful for checking if text is aligned.\n\nHighlight repaints\n\nShow borders that change color when elements repaint.\n Useful for finding unnecessary repaints.\n\nHighlight oversized images", "source": "https://docs.flutter.dev/development/tools/devtools/inspector/index.html"} {"id": "ff26818d7ee4-3", "text": "Highlight oversized images\n\nHighlights images that are using too much memory\n by inverting colors and flipping them.\n\nInspecting a widget\n\nYou can browse the interactive widget tree to view nearby\nwidgets and see their field values.\n\nTo locate individual UI elements in the widget tree,\nclick the Select Widget Mode button in the toolbar.\nThis puts the app on the device into a \u201cwidget select\u201d mode.\nClick any widget in the app\u2019s UI; this selects the widget on the\napp\u2019s screen, and scrolls the widget tree to the corresponding node.\nToggle the Select Widget Mode button again to exit\nwidget select mode.\n\nWhen debugging layout issues, the key fields to look at are the\nsize and constraints fields. The constraints flow down the tree,\nand the sizes flow back up. For more information on how this works,\nsee Understanding constraints.\n\nFlutter Layout Explorer\n\nThe Flutter Layout Explorer helps you to better understand\nFlutter layouts.", "source": "https://docs.flutter.dev/development/tools/devtools/inspector/index.html"} {"id": "ff26818d7ee4-4", "text": "The Flutter Layout Explorer helps you to better understand\nFlutter layouts.\n\nFor an overview of what you can do with this tool, see\nthe Flutter Explorer video:\n\nYou might also find the following step-by-step article useful:\n\nHow to debug layout issues with the Flutter Inspector\n\nUsing the Layout Explorer\n\nFrom the Flutter Inspector, select a widget. The Layout Explorer\nsupports both flex layouts and fixed size layouts, and has\nspecific tooling for both kinds.\n\nFlex layouts\n\nWhen you select a flex widget (for example, Row, Column, Flex)\nor a direct child of a flex widget, the flex layout tool will\nappear in the Layout Explorer.", "source": "https://docs.flutter.dev/development/tools/devtools/inspector/index.html"} {"id": "ff26818d7ee4-5", "text": "The Layout Explorer visualizes how Flex widgets and their\nchildren are laid out. The explorer identifies the main axis\nand cross axis, as well as the current alignment for each\n(for example, start, end, and spaceBetween).\nIt also shows details like flex factor, flex fit, and layout\nconstraints.\n\nAdditionally, the explorer shows layout constraint violations\nand render overflow errors. Violated layout constraints\nare colored red, and overflow errors are presented in the\nstandard \u201cyellow-tape\u201d pattern, as you might see on a running\ndevice. These visualizations aim to improve understanding of\nwhy overflow errors occur as well as how to fix them.\n\nClicking a widget in the layout explorer mirrors\nthe selection on the on-device inspector. Select Widget Mode\nneeds to be enabled for this. To enable it,\nclick on the Select Widget Mode button in the inspector.", "source": "https://docs.flutter.dev/development/tools/devtools/inspector/index.html"} {"id": "ff26818d7ee4-6", "text": "For some properties, like flex factor, flex fit, and alignment,\nyou can modify the value via dropdown lists in the explorer.\nWhen modifying a widget property, you see the new value reflected\nnot only in the Layout Explorer, but also on the\ndevice running your Flutter app. The explorer animates\non property changes so that the effect of the change is clear.\nWidget property changes made from the layout explorer don\u2019t\nmodify your source code and are reverted on hot reload.\n\nInteractive Properties\n\nmainAxisAlignment,\n\ncrossAxisAlignment, and\n\nFlexParentData.flex.\nIn the future, we may add support for additional properties\nsuch as\n\nmainAxisSize,\n\ntextDirection, and\n\nFlexParentData.fit.\n\nmainAxisAlignment\n\nSupported values:\n\nMainAxisAlignment.start\n\nMainAxisAlignment.end\n\nMainAxisAlignment.center", "source": "https://docs.flutter.dev/development/tools/devtools/inspector/index.html"} {"id": "ff26818d7ee4-7", "text": "MainAxisAlignment.end\n\nMainAxisAlignment.center\n\nMainAxisAlignment.spaceBetween\n\nMainAxisAlignment.spaceAround\n\nMainAxisAlignment.spaceEvenly\n\ncrossAxisAlignment\n\nSupported values:\n\nCrossAxisAlignment.start\n\nCrossAxisAlignment.center\n\nCrossAxisAlignment.end\n\nCrossAxisAlignment.stretch\n\nFlexParentData.flex\n\nLayout Explorer supports 7 flex options in the UI\n(null, 0, 1, 2, 3, 4, 5), but technically the flex\nfactor of a flex widget\u2019s child can be any int.\n\nFlexible.fit\n\nLayout Explorer supports the two different types of\nFlexFit: loose and tight.\n\nFixed size layouts", "source": "https://docs.flutter.dev/development/tools/devtools/inspector/index.html"} {"id": "ff26818d7ee4-8", "text": "Fixed size layouts\n\nWhen you select a fixed size widget that is not a child\nof a flex widget, fixed size layout information will appear\nin the Layout Explorer. You can see size, constraint, and padding\ninformation for both the selected widget and its nearest upstream\nRenderObject.\n\nVisual debugging\n\nThe Flutter Inspector provides several options for visually debugging your app.\nThese are the options available from the inspector within Flutter DevTools.\n\nSlow animations\n\nWhen enabled, this option runs animations 5 times slower for easier visual\ninspection.\nThis can be useful if you want to carefully observe and tweak an animation that\ndoesn\u2019t look quite right.\n\nThis can also be set in code:\n\nThis slows the animations by 5x.\n\nSee also\n\nThe following links provide more info.\n\nFlutter documentation: timeDilation property\n\nThe following screen recordings show before and after slowing an animation.", "source": "https://docs.flutter.dev/development/tools/devtools/inspector/index.html"} {"id": "ff26818d7ee4-9", "text": "The following screen recordings show before and after slowing an animation.\n\nShow guidelines\n\nThis feature draws guidelines over your app that display render boxes, alignments,\npaddings, scroll views, clippings and spacers.\n\nThis tool can be used for better understanding your layout. For instance,\nby finding unwanted padding or understanding widget alignment.\n\nYou can also enable this in code:\n\nRender boxes\n\nWidgets that draw to the screen create a render box, the \nbuilding blocks of Flutter layouts. They\u2019re shown with a bright blue border:\n\nAlignments\n\nAlignments are shown with yellow arrows. These arrows show the vertical\nand horizontal offsets of a widget relative to its parent.\nFor example, this button\u2019s icon is shown as being centered by the four arrows:\n\nPadding\n\nPadding is shown with a semi-transparent blue background:\n\nScroll views", "source": "https://docs.flutter.dev/development/tools/devtools/inspector/index.html"} {"id": "ff26818d7ee4-10", "text": "Scroll views\n\nWidgets with scrolling contents (such as list views) are shown with green arrows:\n\nClipping\n\nClipping, for example when using the ClipRect widget, are shown\nwith a dashed pink line with a scissors icon:\n\nSpacers\n\nSpacer widgets are shown with a grey background,\nsuch as this SizedBox without a child:\n\nShow baselines\n\nThis option makes all baselines visible.\nBaselines are horizontal lines used to position text.\n\nThis can be useful for checking whether text is precisely aligned vertically.\nFor example, the text baselines in the following screenshot are slightly misaligned:\n\nThe Baseline widget can be used to adjust baselines.\n\nA line is drawn on any render box that has a baseline set;\nalphabetic baselines are shown as green and ideographic as yellow.\n\nYou can also enable this in code:\n\nHighlight repaints", "source": "https://docs.flutter.dev/development/tools/devtools/inspector/index.html"} {"id": "ff26818d7ee4-11", "text": "You can also enable this in code:\n\nHighlight repaints\n\nThis option draws a border around all render boxes\nthat changes color every time that box repaints.\n\nThis rotating rainbow of colors is useful for finding parts of your app\nthat are repainting too often and potentially harming performance.\n\nFor example, one small animation could be causing an entire page\nto repaint on every frame.\nWrapping the animation in a RepaintBoundary widget limits\nthe repainting to just the animation.\n\nHere the progress indicator causes its container to repaint:\n\nWrapping the progress indicator in a RepaintBoundary causes\nonly that section of the screen to repaint:\n\nRepaintBoundary widgets have tradeoffs. They can help with performance,\nbut they also have an overhead of creating a new canvas,\nwhich uses additional memory.\n\nYou can also enable this option in code:\n\nHighlight oversized images", "source": "https://docs.flutter.dev/development/tools/devtools/inspector/index.html"} {"id": "ff26818d7ee4-12", "text": "Highlight oversized images\n\nThis option highlights images that are too large by both inverting their colors\nand flipping them vertically:\n\nThe highlighted images use more memory than is required;\nfor example, a large 5MB image displayed at 100 by 100 pixels.\n\nSuch images can cause poor performance, especially on lower-end devices\nand when you have many images, as in a list view,\nthis performance hit can add up.\nInformation about each image is printed in the debug console:\n\ndash.png has a display size of 213\u00d7392 but a decode size of 2130\u00d7392, which uses an additional 2542KB.\n\nImages are deemed too large if they use at least 128KB more than required.\n\nFixing images\n\nWherever possible, the best way to fix this problem is resizing\nthe image asset file so it\u2019s smaller.", "source": "https://docs.flutter.dev/development/tools/devtools/inspector/index.html"} {"id": "ff26818d7ee4-13", "text": "If this isn\u2019t possible, you can use the cacheHeight and cacheWidth\nparameters on the Image constructor:\n\nThis makes the engine decode this image at the specified size,\nand reduces memory usage (decoding and storage is still more expensive\nthan if the image asset itself was shrunk).\nThe image is rendered to the constraints of the layout or width and height\nregardless of these parameters.\n\nThis property can also be set in code:\n\nMore information\n\nYou can learn more at the following link:\n\nFlutter documentation: debugInvertOversizedImages\n\nDetails Tree\n\nSelect the Details Tree tab to display the details tree for the\nselected widget.\n\nFrom the details tree, you can gather useful information about a\nwidget\u2019s properties, render object, and children.\n\nTrack widget creation", "source": "https://docs.flutter.dev/development/tools/devtools/inspector/index.html"} {"id": "ff26818d7ee4-14", "text": "Track widget creation\n\nPart of the functionality of the Flutter inspector is based on\ninstrumenting the application code in order to better understand\nthe source locations where widgets are created. The source\ninstrumentation allows the Flutter inspector to present the\nwidget tree in a manner similar to how the UI was defined\nin your source code. Without it, the tree of nodes in the\nwidget tree are much deeper, and it can be more difficult to\nunderstand how the runtime widget hierarchy corresponds to\nyour application\u2019s UI.\n\nYou can disable this feature by passing --no-track-widget-creation to\nthe flutter run command.\n\nHere are examples of what your widget tree might look like\nwith and without track widget creation enabled.\n\nTrack widget creation enabled (default):\n\nTrack widget creation disabled (not recommended):\n\nThis feature prevents otherwise-identical const Widgets from\nbeing considered equal in debug builds. For more details, see\nthe discussion on common problems when debugging.\n\nOther resources", "source": "https://docs.flutter.dev/development/tools/devtools/inspector/index.html"} {"id": "ff26818d7ee4-15", "text": "Other resources\n\nFor a demonstration of what\u2019s generally possible with the inspector,\nsee the DartConf 2018 talk demonstrating the IntelliJ version\nof the Flutter inspector.\n\nTo learn how to visually debug layout issues\nusing DevTools, check out a guided\nFlutter Inspector tutorial.", "source": "https://docs.flutter.dev/development/tools/devtools/inspector/index.html"} {"id": "417ea4dcb22f-0", "text": "Using the Logging view\n\nTools\n\nDevTools\n\nUsing the Logging view\n\nWhat is it?\n\nStandard logging events\n\nLogging from your application\n\nClearing logs\n\nOther resources\n\nNote:\n The logging view works with all Flutter and Dart applications.\n\nWhat is it?\n\nThe logging view displays events from the Dart runtime,\napplication frameworks (like Flutter), and application-level\nlogging events.\n\nStandard logging events\n\nBy default, the logging view shows:\n\nGarbage collection events from the Dart runtime\n\nFlutter framework events, like frame creation events\n\nstdout and stderr from applications\n\nCustom logging events from applications\n\nLogging from your application\n\nTo implement logging in your code,\nsee the Logging section in the\nDebugging Flutter apps programmatically\npage.", "source": "https://docs.flutter.dev/development/tools/devtools/logging/index.html"} {"id": "417ea4dcb22f-1", "text": "Clearing logs\n\nTo clear the log entries in the logging view,\nclick the Clear logs button.\n\nOther resources\n\nTo learn about different methods of logging\nand how to effectively use DevTools to\nanalyze and debug Flutter apps faster,\ncheck out a guided Logging View tutorial.", "source": "https://docs.flutter.dev/development/tools/devtools/logging/index.html"} {"id": "7858082a132f-0", "text": "Using the Memory view\n\nTools\n\nDevTools\n\nUsing the Memory view\n\nReasons to use the memory view\n\nBasic memory concepts\n\nRoot object, retaining path, and reachability\n\nRoot object\nReachability\nRetaining path\nExample\n\n\nShallow size vs retained size\nDart size vs external (native) size\nMemory leaks happen in Dart?\n\nWhy garbage collector cannot prevent all leaks?\nWhy closures require extra attention\nWhy BuildContext requires extra attention\nHow to fix leak prone code?\nGeneral rule for BuildContext\n\n\nMemory leak vs memory bloat\n\nMemory view guide\n\nExpandable chart\n\nMemory anatomy\nMemory overview chart\n\n\nProfile tab\nDiff tab\nTrace tab\n\nBottom up vs call tree view\n\nOther resources", "source": "https://docs.flutter.dev/development/tools/devtools/memory/index.html"} {"id": "7858082a132f-1", "text": "Bottom up vs call tree view\n\nOther resources\n\nThe memory view provides insights into details\nof the application\u2019s memory allocation and\ntools to detect and debug specific issues.\n\nFor information on how to locate DevTools screens in different IDEs,\ncheck out the DevTools overview.\n\nTo better understand the insights found on this page,\nthe first section explains how Dart manages memory.\nIf you already understand Dart\u2019s memory management,\nyou can skip to the Memory view guide.\n\nReasons to use the memory view\n\nUse the memory view for preemptive memory optimization or when\nyour application experiences one of the following conditions:\n\nCrashes when it runs out of memory\n\nSlows down\n\nCauses the device to slow down or become unresponsive\n\nShuts down because it exceeded the memory limit, enforced by operating system", "source": "https://docs.flutter.dev/development/tools/devtools/memory/index.html"} {"id": "7858082a132f-2", "text": "Shuts down because it exceeded the memory limit, enforced by operating system\n\nExceeds memory usage limit\n \n This limit can vary depending on the type of devices your app targets.\n\nSuspect a memory leak\n\nBasic memory concepts\n\nDart objects created using a class constructor\n(for example, by using MyClass()) live in a\nportion of memory called the heap. The memory\nin the heap is managed by the Dart VM (virtual machine).\nThe Dart VM allocates memory for the object at the moment of the object creation,\nand releases (or deallocates) the memory when the object\nis no longer used (see Dart garbage collection).\n\nRoot object, retaining path, and reachability\n\nRoot object\n\nEvery Dart application creates a root object that references,\ndirectly or indirectly, all other objects the application allocates.\n\nReachability", "source": "https://docs.flutter.dev/development/tools/devtools/memory/index.html"} {"id": "7858082a132f-3", "text": "Reachability\n\nIf, at some moment of the application run,\nthe root object stops referencing an allocated object,\nthe object becomes unreachable,\nwhich is a signal for the garbage collector (GC)\nto deallocate the object\u2019s memory.\n\nRetaining path\n\nThe sequence of references from root to an object\nis called the object\u2019s retaining path,\nas it retains the object\u2019s memory from the garbage collection.\nOne object can have many retaining paths.\nObjects with at least one retaining path are\ncalled reachable objects.\n\nExample\n\nThe following example illustrates the concepts:\n\nclass\n\nChild\n\n{}\n\nclass\n\nParent\n\nChild\n\nchild\n\nParent\n\nparent1\n\nParent\n\n();\n\nvoid\n\nmyFunction\n\n()\n\nChild", "source": "https://docs.flutter.dev/development/tools/devtools/memory/index.html"} {"id": "7858082a132f-4", "text": "myFunction\n\n()\n\nChild\n\nchild\n\nChild\n\n();\n\n// The `child` object was allocated in memory.\n\n// It's now retained from garbage collection\n\n// by one retaining path (root \u2026-> myFunction -> child).\n\nParent\n\nparent2\n\nParent\n\n().\n\nchild\n\nchild\n\nparent1\n\nchild\n\nchild\n\n// At this point the `child` object has three retaining paths:\n\n// root \u2026-> myFunction -> child\n\n// root \u2026-> myFunction -> parent2 -> child\n\n// root -> parent1 -> child\n\nchild\n\nnull\n\nparent1\n\nchild\n\nnull\n\nparent2\n\nnull", "source": "https://docs.flutter.dev/development/tools/devtools/memory/index.html"} {"id": "7858082a132f-5", "text": "null\n\nparent2\n\nnull\n\n// At this point, the `child` instance is unreachable\n\n// and will eventually be garbage collected.\n\nShallow size vs retained size\n\nShallow size includes only the size of the object\nand its references, while retained size also includes\nthe size of the retained objects.\n\nThe retained size of the root object includes\nall reachable Dart objects.\n\nIn the following example, the size of myHugeInstance\nisn\u2019t part of the parent\u2019s or child\u2019s shallow sizes,\nbut is part of their retained sizes:\n\nclass\n\nChild\n\n/// The instance is part of both [parent] and [parent.child]\n\n/// retained sizes.\n\nfinal\n\nmyHugeInstance\n\nMyHugeInstance\n\n();\n\nclass\n\nParent\n\nChild", "source": "https://docs.flutter.dev/development/tools/devtools/memory/index.html"} {"id": "7858082a132f-6", "text": "();\n\nclass\n\nParent\n\nChild\n\nchild\n\nParent\n\nparent\n\nParent\n\n().\n\nchild\n\nChild\n\n();\n\nIn DevTools calculations, if an object has more\nthan one retaining path, its size is assigned as\nretained only to the members of the shortest retaining path.\n\nIn this example the object x has two retaining paths:\n\nroot ->\n\na -> b -> c -> x\n\nroot ->\n\nd -> e -> x\n\n(shortest retaining path to\n\n`x\n\nOnly members of the shortest path (d and e) will include \nx into their retaining size.\n\nDart size vs external (native) size", "source": "https://docs.flutter.dev/development/tools/devtools/memory/index.html"} {"id": "7858082a132f-7", "text": "Dart size vs external (native) size\n\nSome parts of an object (for example, graphics)\nmight be stored outside of Dart heap,\nin native device memory.\n\nYou can observe an object\u2019s Dart heap, external,\nand total memory allocation breakdown on the Profile tab:\n\nMemory leaks happen in Dart?\n\nGarbage collector cannot prevent all types of memory leaks, and developers\nstill need to watch objects to have leak-free lifecycle.\n\nWhy garbage collector cannot prevent all leaks?\n\nWhile the garbage collector takes care of all\nunreachable objects, it\u2019s the responsibility\nof the application to ensure that unneeded objects\nare no longer reachable (referenced from the root).", "source": "https://docs.flutter.dev/development/tools/devtools/memory/index.html"} {"id": "7858082a132f-8", "text": "So, if non needed objects are left referenced\n(in a global or static variable,\nor as a field of a long-living object),\nthe garbage collector can\u2019t recognize them,\nthe memory allocation grows progressively,\nand the app eventually crashes with an out-of-memory error.\n\nWhy closures require extra attention\n\nOne hard-to-catch leak pattern relates to using closures.\nIn the following code, a reference to the\ndesigned-to-be short-living myHugeObject is implicitly\nstored in the closure context and passed to setHandler.\nAs a result, myHugeObject won\u2019t be garbage collected\nas long as handler is reachable.\n\nfinal\n\nhandler\n\n()\n\nprint\n\nmyHugeObject\n\nname\n\n);\n\nsetHandler\n\nhandler\n\n);\n\nWhy BuildContext requires extra attention", "source": "https://docs.flutter.dev/development/tools/devtools/memory/index.html"} {"id": "7858082a132f-9", "text": "handler\n\n);\n\nWhy BuildContext requires extra attention\n\nAn example of a large, short-living object that\nmight squeeze into a long-living area and thus cause leaks,\nis the context parameter passed to Flutter\u2019s \nbuild method.\n\nThe following code is leak prone,\nas useHandler might store the handler\nin a long-living area:\n\n// BAD: DO NOT DO THIS\n\n// This code is leak prone:\n\n@override\n\nWidget\n\nbuild\n\nBuildContext\n\ncontext\n\nfinal\n\nhandler\n\n()\n\napply\n\nTheme\n\nof\n\ncontext\n\n));\n\nuseHandler\n\nhandler\n\n);\n\nHow to fix leak prone code?", "source": "https://docs.flutter.dev/development/tools/devtools/memory/index.html"} {"id": "7858082a132f-10", "text": ");\n\nHow to fix leak prone code?\n\nThe following code is not leak prone,\nbecause:\n\nThe closure doesn\u2019t use the large and short-living context object.\n\nThe theme object (used instead) is long-living. It is created once and\nshared between BuildContext instances.\n\n// GOOD\n\n@override\n\nWidget\n\nbuild\n\nBuildContext\n\ncontext\n\nfinal\n\ntheme\n\nTheme\n\nof\n\ncontext\n\n);\n\nfinal\n\nhandler\n\n()\n\napply\n\ntheme\n\n);\n\nuseHandler\n\nhandler\n\n);\n\nGeneral rule for BuildContext", "source": "https://docs.flutter.dev/development/tools/devtools/memory/index.html"} {"id": "7858082a132f-11", "text": "handler\n\n);\n\nGeneral rule for BuildContext\n\nIn general, use the following rule for a\nBuildContext: if the closure doesn\u2019t outlive\nthe widget, it\u2019s ok to pass the context to the closure.\n\nStateful widgets require extra attention.\nThey consist of two classes: the widget and the\nwidget state,\nwhere the widget is short living,\nand the state is long living. The build context,\nowned by the widget, should never be referenced\nfrom the state\u2019s fields, as the state won\u2019t be garbage\ncollected together with the widget, and can significantly outlive it.\n\nMemory leak vs memory bloat\n\nIn a memory leak, an application progressively uses memory,\nfor example, by repeatedly creating a listener,\nbut not disposing it.\n\nMemory bloat uses more memory than is necessary for\noptimal performance, for example, by using overly large\nimages or keeping streams open through their lifetime.", "source": "https://docs.flutter.dev/development/tools/devtools/memory/index.html"} {"id": "7858082a132f-12", "text": "Both leaks and bloats, when large,\ncause an application to crash with an out-of-memory error.\nHowever, leaks are more likely to cause memory issues,\nbecause even a small leak,\nif repeated many times, leads to a crash.\n\nMemory view guide\n\nThe DevTools memory view helps you investigate\nmemory allocations (both in the heap and external),\nmemory leaks, memory bloat, and more. The view\nhas the following features:\n\nExpandable chart\n\nGet a high-level trace of memory allocation,\nand view both standard events (like garbage collection)\nand custom events (like image allocation).\n\nProfile tab\n\nSee current memory allocation listed by class and\nmemory type (Dart or external/native).\n\nDiff tab\n\nDetect and investigate a feature\u2019s memory management issues.\n\nTrace tab\n\nInvestigate a feature\u2019s memory management for\na specified set of classes.\n\nExpandable chart", "source": "https://docs.flutter.dev/development/tools/devtools/memory/index.html"} {"id": "7858082a132f-13", "text": "Expandable chart\n\nThe expandable chart provides the following features:\n\nMemory anatomy\n\nA timeseries graph visualizes the state of\nFlutter memory at successive intervals of time.\nEach data point on the chart corresponds to the\ntimestamp (x-axis) of measured quantities (y-axis)\nof the heap. For example, usage, capacity, external,\ngarbage collection, and resident set size are captured.\n\nMemory overview chart\n\nThe memory overview chart is a timeseries graph\nof collected memory statistics. It visually presents\nthe state of the Dart or Flutter heap and Dart\u2019s\nor Flutter\u2019s native memory over time.", "source": "https://docs.flutter.dev/development/tools/devtools/memory/index.html"} {"id": "7858082a132f-14", "text": "The chart\u2019s x-axis is a timeline of events (timeseries).\nThe data plotted in the y-axis all has a timestamp of\nwhen the data was collected. In other words,\nit shows the polled state (capacity, used, external,\nRSS (resident set size), and GC (garbage collection))\nof the memory every 500 ms. This helps provide a live\nappearance on the state of the memory as the application is running.\n\nClicking the Legend button displays the\ncollected measurements, symbols, and colors\nused to display the data.\n\nThe Memory Size Scale y-axis automatically\nadjusts to the range of data collected in the\ncurrent visible chart range.\n\nThe quantities plotted on the y-axis are as follows:\n\nObjects (Dart and Flutter objects) in the heap.", "source": "https://docs.flutter.dev/development/tools/devtools/memory/index.html"} {"id": "7858082a132f-15", "text": "Objects (Dart and Flutter objects) in the heap.\n\nMemory that isn\u2019t in the Dart/Flutter heap\nbut is still part of the total memory footprint.\nObjects in this memory would be native objects\n(for example, from reading a file into memory,\nor a decoded image). The native objects are exposed\nto the Dart VM from the native OS (such as Android,\nLinux, Windows, iOS) using a Dart embedder.\nThe embedder creates a Dart wrapper with a finalizer,\nallowing Dart code to communicate with these native resources.\nFlutter has an embedder for Android and iOS.\nFor more information, see Command-line and server apps,\nDart on the server with Dart Frog,\nCustom Flutter Engine Embedders,\nDart web server deployment with Heroku.\n\nThe timestamps of all collected memory statistics\nand events at a particular point in time (timestamp).", "source": "https://docs.flutter.dev/development/tools/devtools/memory/index.html"} {"id": "7858082a132f-16", "text": "The size of the Flutter engine\u2019s raster cache\nlayer(s) or picture(s), while performing the\nfinal rendering after compositing.\nFor more information, see the\nFlutter architectural overview\nand DevTools Performance view.\n\nThe current capacity of the heap is typically\nslightly larger than the total size of all heap objects.\n\nThe resident set size displays the amount of memory\nfor a process.\nIt doesn\u2019t include memory that is swapped out.\nIt includes memory from shared libraries that are\nloaded, as well as all stack and heap memory.\nFor more information, see Dart VM internals.\n\nProfile tab\n\nUse the Profile tab to see current memory\nallocation by class and memory type. For a\ndeeper analysis in Google Sheets or other tools,\ndownload the data in CSV format.\nToggle Refresh on GC, to see allocation in real time.\n\nDiff tab", "source": "https://docs.flutter.dev/development/tools/devtools/memory/index.html"} {"id": "7858082a132f-17", "text": "Diff tab\n\nUse the Diff tab to investigate a feature\u2019s\nmemory management. Follow the guidance on the tab\nto take snapshots before and after interaction\nwith the application, and diff the snapshots:\n\nTap the Filter classes and packages button,\nto narrow the data:\n\nFor a deeper analysis in Google Sheets\nor other tools, download the data in CSV format.\n\nTrace tab\n\nUse the Trace tab to investigate what methods\nallocate memory for a set of classes\nduring feature execution:\n\nSelect classes to trace\n\nInteract with your app to trigger the code\nyou are interested in\n\nTap Refresh\n\nSelect a traced class\n\nReview the collected data\n\nBottom up vs call tree view\n\nSwitch between bottom-up and call tree views\ndepending on specifics of your tasks.", "source": "https://docs.flutter.dev/development/tools/devtools/memory/index.html"} {"id": "7858082a132f-18", "text": "Switch between bottom-up and call tree views\ndepending on specifics of your tasks.\n\nThe call tree view shows the method allocations\nfor each instance. The view is a top-down representation\nof the call stack, meaning that a method can be expanded\nto show its callees.\n\nThe bottom-up view shows the list of different\ncall stacks that have allocated the instances.\n\nOther resources\n\nTo learn how to monitor an app\u2019s memory usage\nand detect memory leaks using DevTools,\ncheck out a guided Memory View tutorial.", "source": "https://docs.flutter.dev/development/tools/devtools/memory/index.html"} {"id": "1cb935927a69-0", "text": "Using the Network View\n\nTools\n\nDevTools\n\nUsing the Network View\n\nWhat is it?\n\nHow to use it\n\nSearch and filtering\n\nOther resources\n\nNote:\n The network view works with all Flutter and Dart applications.\n\nWhat is it?\n\nThe network view allows you to inspect HTTP, HTTPS, and web socket traffic from\nyour Dart or Flutter application.\n\nHow to use it\n\nNetwork traffic should be recording by default when you open the Network page.\nIf it is not, click the Record network traffic button in the upper left to\nbegin polling.\n\nSelect a network request from the table (left) to view details (right). You can\ninspect general and timing information about the request, as well as the content\nof response and request headers and bodies.\n\nSearch and filtering", "source": "https://docs.flutter.dev/development/tools/devtools/network/index.html"} {"id": "1cb935927a69-1", "text": "Search and filtering\n\nYou can use the search and filter controls to find a specific request or filter\nrequests out of the request table.\n\nTo apply a filter, press the filter button (right of the search bar). You will\nsee a filter dialog pop up:\n\nThe filter query syntax is described in the dialog. You can filter network\nrequests by the following keys:\n\nmethod, m: this filter corresponds to the value in the \u201cMethod\u201d column\n\nstatus, s: this filter corresponds to the value in the \u201cStatus\u201d column\n\ntype, t: this filter corresponds to the value in the \u201cType\u201d column\n\nAny text that is not paired with an available filter key will be queried against\nall categories (method, uri, status, type).\n\nExample filter queries:\n\nOther resources", "source": "https://docs.flutter.dev/development/tools/devtools/network/index.html"} {"id": "1cb935927a69-2", "text": "Example filter queries:\n\nOther resources\n\nHTTP and HTTPs requests are also surfaced in the Timeline as\nasynchronous timeline events. Viewing network activity in the timeline can be\nuseful if you want to see how HTTP traffic aligns with other events happening\nin your app or in the Flutter framework.\n\nTo learn how to monitor an app\u2019s network traffic and inspect\ndifferent types of requests using the DevTools,\ncheck out a guided Network View tutorial.\nThe tutorial also uses the view to identify network activity that\ncauses poor app performance.", "source": "https://docs.flutter.dev/development/tools/devtools/network/index.html"} {"id": "65d7c243f438-0", "text": "DevTools\n\nTools\n\nDevTools\n\nDevTools\n\nWhat is DevTools?\n\nWhat can I do with DevTools?\n\nHow do I install DevTools?\n\nProviding feedback\n\nOther resources\n\nWhat is DevTools?\n\nDevTools is a suite of performance and debugging tools\nfor Dart and Flutter.\n\nWhat can I do with DevTools?\n\nHere are some of the things you can do with DevTools:\n\nInspect the UI layout and state of a Flutter app.\n\nDiagnose UI jank performance issues in a Flutter app.\n\nCPU profiling for a Flutter or Dart app.\n\nNetwork profiling for a Flutter app.\n\nSource-level debugging of a Flutter or Dart app.\n\nDebug memory issues in a Flutter or Dart\ncommand-line app.", "source": "https://docs.flutter.dev/development/tools/devtools/overview/index.html"} {"id": "65d7c243f438-1", "text": "Debug memory issues in a Flutter or Dart\ncommand-line app.\n\nView general log and diagnostics information\nabout a running Flutter or Dart\ncommand-line app.\n\nAnalyze code and app size.\n\nWe expect you to use DevTools in conjunction with\nyour existing IDE or command-line based development workflow.\n\nHow do I install DevTools?\n\nSee the Android Studio/IntelliJ, VS Code, or\ncommand line pages for installation instructions.\n\nProviding feedback\n\nPlease give DevTools a try, provide feedback, and file issues\nin the DevTools issue tracker. Thanks!\n\nOther resources\n\nFor more information on debugging and profiling\nFlutter apps, see the Debugging page and,\nin particular, its list of other resources.\n\nFor more information on using DevTools with Dart command-line apps, see the \nDevTools documentation on dart.dev.", "source": "https://docs.flutter.dev/development/tools/devtools/overview/index.html"} {"id": "47922abbc705-0", "text": "Using the Performance view\n\nTools\n\nDevTools\n\nUsing the Performance view\n\nBasic performance concepts\n\nWhat is the Performance view?\nWhat is a frame in Flutter?\n\nFlutter frames chart\n\nUI\nRaster\nJank (slow frame)\nShader compilation\n\nTimeline events chart\n\nEnhance tracing\n\nTrack widget builds\nTrack layouts\nTrack paints\n\nMore debugging options\n\nImport and export\n\nOther resources\n\nNote:\n The performance view works with Dart CLI and mobile apps only.\n Use Chrome DevTools to generate timeline events\n for a web app.\n\nBasic performance concepts\n\nWhat is the Performance view?\n\nThe performance view offers timing and performance information for activity in\nyour application. It consists of three parts, each increasing in granularity.\n\nFlutter frames chart (Flutter apps only)", "source": "https://docs.flutter.dev/development/tools/devtools/performance/index.html"} {"id": "47922abbc705-1", "text": "Flutter frames chart (Flutter apps only)\n\nTimeline events chart\n\nCPU profiler\n\nUse a profile build of your application to analyze performance.\n Frame rendering times aren\u2019t indicative of release performance\n when running in debug mode. Run your app in profile mode,\n which still preserves useful debugging information.\n\nThe performance view also supports importing and exporting of\ndata snapshots. For more information,\ncheck out the Import and export section.\n\nWhat is a frame in Flutter?\n\nFlutter is designed to render its UI at 60 frames per second\n(fps), or 120 fps on devices capable of 120Hz updates.\nEach render is called a frame.\nThis means that, approximately every 16ms, the UI updates\nto reflect animations or other changes to the UI. A frame\nthat takes longer than 16ms to render causes jank \n(jerky motion) on the display device.\n\nFlutter frames chart", "source": "https://docs.flutter.dev/development/tools/devtools/performance/index.html"} {"id": "47922abbc705-2", "text": "Flutter frames chart\n\nThis chart contains Flutter frame information for your application.\nEach bar set in the chart represents a single Flutter frame.\nThe bars are color-coded to highlight the different portions\nof work that occur when rendering a Flutter frame: work from\nthe UI thread and work from the raster thread (previously known\nas the GPU thread).\n\nSelecting a bar from this chart centers the flame chart below on the timeline\nevents corresponding to the selected Flutter frame.\nThe events are highlighted with blue brackets.\n\nUI\n\nThe UI thread executes Dart code in the Dart VM. This includes\ncode from your application as well as the Flutter framework.\nWhen your app creates and displays a scene, the UI thread creates\na layer tree, a lightweight object containing device-agnostic\npainting commands, and sends the layer tree to the raster thread\nto be rendered on the device. Do not block this thread.\n\nRaster", "source": "https://docs.flutter.dev/development/tools/devtools/performance/index.html"} {"id": "47922abbc705-3", "text": "Raster\n\nThe raster thread (previously known as the GPU thread) executes \ngraphics code from the Flutter Engine.\nThis thread takes the layer tree and displays it by talking to\nthe GPU (graphic processing unit). You cannot directly access\nthe raster thread or its data, but if this thread is slow, it\u2019s a\nresult of something you\u2019ve done in the Dart code. Skia, the\ngraphics library, runs on this thread.\n\nSometimes a scene results in a layer tree that is easy to construct,\nbut expensive to render on the raster thread. In this case, you\nneed to figure out what your code is doing that is causing\nrendering code to be slow. Specific kinds of workloads are more\ndifficult for the GPU. They might involve unnecessary calls to\nsaveLayer(), intersecting opacities with multiple objects,\nand clips or shadows in specific situations.\n\nFor more information on profiling, check out\nIdentifying problems in the GPU graph.\n\nJank (slow frame)", "source": "https://docs.flutter.dev/development/tools/devtools/performance/index.html"} {"id": "47922abbc705-4", "text": "Jank (slow frame)\n\nThe frame rendering chart shows jank with a red overlay.\nA frame is considered to be janky if it takes more than\n~16 ms to complete (for 60 FPS devices). To achieve a frame rendering rate of\n60 FPS (frames per second), each frame must render in\n~16 ms or less. When this target is missed, you may\nexperience UI jank or dropped frames.\n\nFor more information on how to analyze your app\u2019s performance,\ncheck out Flutter performance profiling.\n\nShader compilation\n\nShader compilation occurs when a shader is first used in your Flutter\napp. Frames that perform shader compilation are marked in dark\nred:\n\nFor more information on how to reduce shader compilation jank,\ncheck out Reduce shader compilation jank on mobile.\n\nTimeline events chart", "source": "https://docs.flutter.dev/development/tools/devtools/performance/index.html"} {"id": "47922abbc705-5", "text": "Timeline events chart\n\nThe timeline events chart shows all event tracing from your application.\nThe Flutter framework emits timeline events as it works to build frames,\ndraw scenes, and track other activity such as HTTP traffic.\nThese events show up here in the Timeline.\nYou can also send your own Timeline events using the dart:developer\nTimeline\nand TimelineTask\nAPIs.\n\nThe flame chart supports zooming and panning:\n\nTo zoom, scroll up and down with the mouse wheel / trackpad\n\nTo pan horizontally, either click and drag the chart or\nscroll horizontally with the mouse wheel / trackpad\n\nTo pan vertically, either click and drag the chart or use\nalt + scroll\n\nThe WASD keys also work for controlling zoom and horizontal scroll position\n\nYou can click an event to view CPU profiling information in the CPU profiler\nbelow, described in the next section.\n\nEnhance tracing", "source": "https://docs.flutter.dev/development/tools/devtools/performance/index.html"} {"id": "47922abbc705-6", "text": "Enhance tracing\n\nTo view more detailed tracing in the timeline events chart,\nuse the options in the enhance tracing dropdown:\n\nNote:\n Frame times might be negatively affected when these options are enabled.\n\nTo see the new timeline events, reproduce the activity\nin your app that you are interested in tracing,\nand then select a frame to inspect the timeline.\n\nTrack widget builds\n\nTo see the build() method events in the timeline,\nenable the Track Widget Builds option.\nThe name of the widget is shown in the timeline event.\n\nTrack layouts\n\nTo see render object layout events in the timeline,\nenable the Track Layouts option:\n\nTrack paints\n\nTo see render object paint events in the timeline,\nenable the Track Paints option:\n\nMore debugging options\n\nTo diagnose performance problems related to rendering layers,\ntoggle off a rendering layer.\nThese options are enabled by default.", "source": "https://docs.flutter.dev/development/tools/devtools/performance/index.html"} {"id": "47922abbc705-7", "text": "To see the effects on your app\u2019s performance,\nreproduce the activity in your app.\nThen select the new frames in the frames chart\nto inspect the timeline events\nwith the layers disabled.\nIf Raster time has significantly decreased,\nexcessive use of the effects you disabled might be contributing\nto the jank you saw in your app.\n\nDisable this option to check whether excessive use of clipping\nis affecting performance.\nIf performance improves with this option disabled,\ntry to reduce the use of clipping effects in your app.\n\nDisable this option to check whether\nexcessive use of opacity effects are affecting performance.\nIf performance improves with this option disabled,\ntry to reduce the use of opacity effects in your app.\n\nDisable this option to check whether excessive\nuse of physical modeling effects are affecting performance,\nsuch as shadows or elevation.\nIf performance improves with this option disabled,\ntry to reduce the use of physical modeling effects in your app.\n\nImport and export", "source": "https://docs.flutter.dev/development/tools/devtools/performance/index.html"} {"id": "47922abbc705-8", "text": "Import and export\n\nDevTools supports importing and exporting performance snapshots.\nClicking the export button (upper-right corner above the\nframe rendering chart) downloads a snapshot of the current data on the\nperformance page. To import a performance snapshot, you can drag and drop the\nsnapshot into DevTools from any page. Note that DevTools only\nsupports importing files that were originally exported from DevTools.\n\nOther resources\n\nTo learn how to monitor an app\u2019s performance and\ndetect jank using DevTools, check out a guided\nPerformance View tutorial.", "source": "https://docs.flutter.dev/development/tools/devtools/performance/index.html"} {"id": "e390226d97e4-0", "text": "Tools\n\nDevTools\n\nDevTools release notes\n\n2.10.0 release notes\n\nDevTools 2.10.0 release notes\n\nDart & Flutter DevTools - A Suite of Performance Tools for Dart and Flutter\n\nFlutter Inspector Updates\n\nAdded search support to the Widget Tree, and added a breadcrumb navigator to the Widget Details Tree to allow for quickly navigating through the tree hierarchy - #3525\n\nCPU Profiler Updates\n\nFix a null ref in the CPU profiler when loading an offline snapshot - #3596\n\nDebugger Updates\n\nAdded support for multi-token file search, and improved search match prioritization to rank file name matches over full path matches - \n#3582\n\nFix some focus-related issues - #3602\n\nLogging View Updates", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.10.0/index.html"} {"id": "e390226d97e4-1", "text": "Logging View Updates\n\nFix a fatal error that occurred when filtering logs more than once - #3588\n\nChangelog\n\nMore details about changes and fixes are available in our\nchangelog.", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.10.0/index.html"} {"id": "9254ab3471f5-0", "text": "Tools\n\nDevTools\n\nDevTools release notes\n\n2.18.0 release notes\n\nDevTools 2.18.0 release notes\n\nDart & Flutter DevTools - A Suite of Performance Tools for Dart and Flutter\n\nInspector updates\n\nAuto scrolling behavior improved when snapping a widget into focus -\n#4283\n\nFix issue where widget inspector wouldn\u2019t load when connecting to a paused\napp - #4527\n\nImprove widget inspector hover cards to show progress while waiting for data -\n#4488\n\nPerformance updates\n\nFix issue where scrollbar would go out of sync with the frame content -\n#4503\n\nAdd offline support for raster stats -\n#4491\n\nAdd \u2018Rendering time\u2019 column to Raster Metrics tab -\n#4474\n\nCPU profiler updates", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.18.0/index.html"} {"id": "9254ab3471f5-1", "text": "CPU profiler updates\n\nFix crash when an empty frame is filtered -\n#4502\n\nFix bugs in CPU profile trees -\n#4413\n\nUI Cleanup - #4404\n\nMemory updates\n\nAdd Profile and Allocation Tracing sub-tabs -\n#4523\n\nImplement snapshot visualization -\n#4473\n\nDebugger updates\n\nFix bug for file opener and search -\n#4525\n\nFix the codeview\u2019s scrollable area -\n#4448\n\nAllow syntax highlighting on nested captures in parser -\n#4427\n\nNetwork profiler updates\n\nWhen on the Network tab, network recordings now continue working after the app\nhot restarts - #4438\n\nLogging updates\n\nLog messages from non-stdout sources are now shown -\n#4487", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.18.0/index.html"} {"id": "9254ab3471f5-2", "text": "Log messages from non-stdout sources are now shown -\n#4487\n\nChangelog\n\nMore details about changes and fixes are available in the DevTools\nchangelog.", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.18.0/index.html"} {"id": "66c52ace8fd7-0", "text": "DevTools release notes\n\nTools\n\nDevTools\n\nDevTools release notes\n\nThis page links to announcements and release notes for\nFlutter and Dart DevTools\n\n2.22.2 release notes\n\n2.21.1 release notes\n\n2.20.0 release notes\n\n2.18.0 release notes\n\n2.17.0 release notes\n\n2.16.0 release notes\n\n2.15.0 release notes\n\n2.14.0 release notes\n\n2.13.1 release notes\n\n2.12.1 release notes\n\n2.11.2 release notes\n\n2.10.0 release notes\n\n2.9.2 release notes\n\n2.9.1 release notes", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/index.html"} {"id": "66c52ace8fd7-1", "text": "2.9.1 release notes\n\n2.8.0 release notes\n\n2.7.0 release notes", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/index.html"} {"id": "7dc2ffca9073-0", "text": "Tools\n\nDevTools\n\nDevTools release notes\n\n2.11.2 release notes\n\nDevTools 2.11.2 release notes\n\nDart & Flutter DevTools - A Suite of Performance Tools for Dart and Flutter\n\nGeneral Updates\n\nThis release included a lot of cleanup and reduction in technical debt. Please see our\nchangelog for a detailed list of commits.\n\nCPU Profiler Updates\n\nAdded the source line number to file uris in CPU profiles - #3718\n\nDebugger Updates\n\nFile opener UX improvements, including support for clicking the source file name to open the file search window - #3612, #3758\n\nAdded support for auto-scrolling the File Explorer to the selected file - #3786, #3794\n\nChangelog", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.11.2/index.html"} {"id": "7dc2ffca9073-1", "text": "Changelog\n\nMore details about changes and fixes are available in our\nchangelog.", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.11.2/index.html"} {"id": "a5749db0a207-0", "text": "Tools\n\nDevTools\n\nDevTools release notes\n\n2.12.1 release notes\n\nDevTools 2.12.1 release notes\n\nDart & Flutter DevTools - A Suite of Performance Tools for Dart and Flutter\n\nGeneral Updates\n\nThis release included a lot of cleanup and reduction in technical debt. Please see our\nchangelog for a detailed list of commits.\n\nFlutter Inspector Updates\n\nAdded scrolling support to hover cards - #3923\n\nPerformance Updates\n\nAdded documentation links to the \u201cEnhance Tracing\u201d and \u201cMore debugging options\u201d menus. Read the new\ndocumentation to\nlearn more about these features - #3934, \n#3936\n\nChangelog\n\nMore details about changes and fixes are available in our\nchangelog.", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.12.1/index.html"} {"id": "4be1869cd7e5-0", "text": "Tools\n\nDevTools\n\nDevTools release notes\n\n2.13.1 release notes\n\nDevTools 2.13.1 release notes\n\nDart & Flutter DevTools - A Suite of Performance Tools for Dart and Flutter\n\nGeneral Updates\n\nThis release included a lot of cleanup and reduction in technical debt. The most notable is the completion of our\nmigration to sound null safety. Please see our\nchangelog for a detailed list of commits.\n\nShow release notes in embedded versions of DevTools (i.e. when DevTools is embedded in your IDE) - #4053\n\nPolish to the DevTools footer - #3989,\n#4026,\n#4041,\n#4076\n\nPerformance Updates", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.13.1/index.html"} {"id": "4be1869cd7e5-1", "text": "Performance Updates\n\nAdded a new feature to help you debug raster jank in your Flutter app. This feature allows you to take a snapshot\nof the current screen shown in your app, and then break down rendering time for that scene by layer. This can help you\nidentify parts of a scene that are expensive to rasterize - #4046\n\nAdded a scope setting for \u201cTrack Widget Builds\u201d, allowing you to specify whether widget builds should be tracked in\nyour code only or in all code - #4010\n\nCPU Profiler Updates\n\nUse package uris instead of file uris in the CPU profiler \u201cSource\u201d column - #3932\n\nDebugger Updates\n\nFix scrolling bug with debugger breakpoints - #4074\n\nFlutter Inspector Updates\n\nAdd support for displaying flex values larger than 5 in the Layout Explorer - #4055\n\nChangelog", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.13.1/index.html"} {"id": "4be1869cd7e5-2", "text": "Changelog\n\nMore details about changes and fixes are available in our\nchangelog.", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.13.1/index.html"} {"id": "264fcafd8c25-0", "text": "Tools\n\nDevTools\n\nDevTools release notes\n\n2.14.0 release notes\n\nDevTools 2.14.0 release notes\n\nDart & Flutter DevTools - A Suite of Performance Tools for Dart and Flutter\n\nGeneral Updates\n\nAdded a link to the new DevTools Discord channel\nin the About DevTools dialog - #4102\n\nNetwork Updates\n\nAdded \u201cCopy as URL\u201d and \u201cCopy as cURL\u201d actions for selected requests in the network profiler (special thanks to\n@jankuss!)- #4113\n\nFlutter Inspector Updates\n\nAdded a setting to control whether hovering over a widget in the inspector displays its properties and values in a\nhover card - #4090\n\nDebugger Updates\n\nAdded auto complete suggestions in the console (special thanks to @jankuss!) - \n#4062", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.14.0/index.html"} {"id": "264fcafd8c25-1", "text": "Added the option to copy the full file path for a selected library - #4147\n\nFixed formatting in the debugger exception menu - #4066\n\nMemory Updates\n\nFixed formatting for memory values in the heap tree view - #4153\n\nFixed a bug that was preventing GC events from showing up in the memory chart - \n#4131\n\nPerformance Updates\n\nWarn users that the rendering layer toggles in the \u201cMore Debugging Options\u201d menu are not available for profile mode \napps - #4075\n\nChangelog\n\nMore details about changes and fixes are available in our\nchangelog.", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.14.0/index.html"} {"id": "91445b045f96-0", "text": "Tools\n\nDevTools\n\nDevTools release notes\n\n2.15.0 release notes\n\nDevTools 2.15.0 release notes\n\nDart & Flutter DevTools - A Suite of Performance Tools for Dart and Flutter\n\nGeneral Updates\n\nThe DevTools 2.15 release includes improvements to all tables in\nDevTools (logging view, network profiler, CPU profiler, and so on).\nSee #4175\n\nPerformance Updates\n\nAdded outlines to each layer displayed in the Raster Metrics\n tool\u2014#4192\n\nFix a bug with loading offline data\u2014#4189\n\nNetwork Updates\n\nAdded a Json viewer with syntax highlighting for network responses - #4167\n\nAdded the ability to copy network responses - #4190\n\nMemory Updates", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.15.0/index.html"} {"id": "91445b045f96-1", "text": "Memory Updates\n\nAdded the ability to select a different isolate from the DevTools footer - #4173\n\nMade the automatic snapshotting feature a configurable setting - #4200\n\nCPU Profiler\n\nStop manually truncating source URIs in the profiler tables - #4166\n\nChangelog\n\nMore details about changes and fixes are available in our\nchangelog.", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.15.0/index.html"} {"id": "ca98e97cc799-0", "text": "Tools\n\nDevTools\n\nDevTools release notes\n\n2.16.0 release notes\n\nDevTools 2.16.0 release notes\n\nDart & Flutter DevTools - A Suite of Performance Tools for Dart and Flutter\n\nGeneral Updates\n\nThis release included several bug fixes and improvements, as well work\ntowards some new features that are coming soon!\nSee the full list of commits for DevTools 2.16.0\nin the changelog.\n\nChangelog\n\nMore details about changes and fixes are available in the DevTools\nchangelog.", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.16.0/index.html"} {"id": "0f2f81c29390-0", "text": "Tools\n\nDevTools\n\nDevTools release notes\n\n2.17.0 release notes\n\nDevTools 2.17.0 release notes\n\nDart & Flutter DevTools - A Suite of Performance Tools for Dart and Flutter\n\nInspector Updates\n\nAdded support for manually setting the package directories for your app.\nIf you\u2019ve ever loaded the Inspector and noticed that some of your widgets\naren\u2019t present in the widget tree, this might indicate that the package directories\nfor your app haven\u2019t been set or detected properly.\nYour package directories determine which widgets\nthe Inspector considers to be from your application.\nIf you see an empty Inspector widget tree,\nor if you develop widgets across multiple packages \nand want widgets from all these locations to show up in your tree,\ncheck the Inspector Settings dialog to ensure that your package\ndirectories are properly\nconfigured. - #4306\n\nPerformance Updates", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.17.0/index.html"} {"id": "0f2f81c29390-1", "text": "Performance Updates\n\nAdded a Frame Analysis tab to the Performance page.\nWhen analyzing a janky Flutter frame,\nthis view provides hints for how to diagnose the jank and\ndetects expensive operations that might have contributed\nto the slow frame time. This view also shows a breakdown of\nyour Flutter frame time per phase (Build, Layout, Paint, and Raster)\nto try to guide you in the right direction\n \n #4339\n\nChangelog\n\nMore details about changes and fixes are available in the DevTools\nchangelog.", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.17.0/index.html"} {"id": "9d01954ae4c8-0", "text": "Tools\n\nDevTools\n\nDevTools release notes\n\n2.19.0 release notes\n\nDevTools 2.19.0 release notes\n\nDart & Flutter DevTools&emdash;A suite of performance tools\nfor Dart and Flutter\n\nPerformance updates\n\nAdded a button to toggle the visibility of the Flutter Frames\nchart - #4577\n\nPolish the debug mode warning to better describe which data\nis accurate in debug mode and which data may be misleading -\n#3537\n\nReorder performance tool tabs and only show the CPU profiler\nfor the \u201cTimeline Events\u201d tab -\n#4629\n\nMemory updates\n\nImprovements to the memory Profile tab -\n#4583\n\nDebugger updates\n\nFix an issue with hovercards where they were appearing\nbut never disappearing -\n#4627", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.19.0/index.html"} {"id": "9d01954ae4c8-1", "text": "Fix a bug with the file search autocomplete dialog -\n#4409\n\nNetwork profiler updates\n\nAdded a \u201cCopy\u201d button in the Network Request view\n(thanks to @netos23) -\n#4509\n\nChangelog\n\nMore details about changes and fixes are available in the DevTools\nchangelog.", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.19.0/index.html"} {"id": "7a96ea777bff-0", "text": "Tools\n\nDevTools\n\nDevTools release notes\n\n2.20.0 release notes\n\nDevTools 2.20.0 release notes\n\nDart & Flutter DevTools&emdash;A suite of performance tools\nfor Dart and Flutter\n\nCPU profiler updates\n\nAdd support for grouping samples by tag -\n#4693\n\nEnable guidelines for tree view -\n#4722\n\nRename \u201cProfile granularity\u201d to \u201cCPU sampling rate\u201d\nand move down to the area it relates to -\n#4803\n\nMemory updates\n\nRetire the Analysis tab -\n#4714\n\nAdd a new tab, Diff, to enable memory leak detection\nand troubleshooting by comparing heap snapshots,\nand providing insights about the number of instances,\nshallow size, retained size, and retaining paths -\n#4714", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.20.0/index.html"} {"id": "7a96ea777bff-1", "text": "Debugger updates\n\nSupport for inspecting more types of instances in the\nvariables viewer (Expandos, Types, TypeArguments,\nParameters, Closures + closure Contexts,\nWeakProperty, Function, FunctionType, ReceivePort,\nClosure, RegExp) -\n#4760\n\nAdd support for displaying coverage in CodeView -\n#4700\n\nNetwork updates\n\nDisplay request data if content type is not json\n(thanks to leungpuikuen@!) -\n#4602\n\nChangelog\n\nMore details about changes and fixes are available in the DevTools\nchangelog.", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.20.0/index.html"} {"id": "b98ab8561b0a-0", "text": "Tools\n\nDevTools\n\nDevTools release notes\n\n2.21.1 release notes\n\nDevTools 2.21.1 release notes\n\nDart & Flutter DevTools - A Suite of Performance Tools for Dart and Flutter\n\nPerformance updates\n\nReplace the DevTools timeline trace viewer with the Perfetto trace viewer - #5142\n\nFix several issues with loading a Performance snapshot into DevTools - #5048, #4929\n\nUI polish and cleanup - #4889\n\nMemory updates\n\nImprove usability of snapshot diffing - #5015\n\nUI polish and cleanup - #4855\n\nColor code classes based on where they are defined (SDK, your package, dependencies, etc.) - #5030\n\nFix state management issue for tracing - #5062", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.21.1/index.html"} {"id": "b98ab8561b0a-1", "text": "Fix state management issue for tracing - #5062\n\nImprove the performance of taking a heap snapshot - #5134\n\nRetire broken import/export feature - #5135\n\nDebugger updates\n\nAdded support for viewing profiler hits in the debugger script viewer - #4831\n\nAdded support for inspecting records - #5084\n\nGeneral updates\n\nFix several issues in syntax highlighting that would color variable names that contain reserved words incorrectly and leave extends/implements clauses uncolored for some classes - #4948\n\nFix an issue in Safari (browsers that do not support RegExp negative lookbehind) that prevented DevTools from loading - #4938\n\nFix an issue that would prevent DevTools connecting to the backend server that would disable some functionality - #5016", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.21.1/index.html"} {"id": "b98ab8561b0a-2", "text": "Add a link to the DevTools CONTRIBUTING guide to the About menu, and fixed the Discord link - #4926\n\nFix conflicting colors in light theme - 5067\n\nChangelog\n\nMore details about changes and fixes are available in the DevTools\nchangelog.", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.21.1/index.html"} {"id": "8ef0a9611ce3-0", "text": "Tools\n\nDevTools\n\nDevTools release notes\n\n2.22.2 release notes\n\nDevTools 2.22.2 release notes\n\nDart & Flutter DevTools - A Suite of Performance Tools for Dart and Flutter\n\nGeneral updates\n\nPrevent crashes if there is no main isolate - #5232\n\nCPU profiler updates\n\nDisplay stack frame uri inline with method name to ensure the URI is always visible\nin deeply nested trees - #5181\n\nAdd the ability to filter by method name or source URI - #5204\n\nMemory updates\n\nChange filter default to show only project and 3rd party dependencies #5201.\n\nSupport expression evaluation in console for running application #5248.\n\nAdd column Persisted for memory diffing #5290\n\nDebugger updates", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.22.2/index.html"} {"id": "8ef0a9611ce3-1", "text": "Debugger updates\n\nAdd support for browser navigation history when navigating using the File Explorer #4906\n\nDesignate positional fields for Record types with the getter syntax beginning at $1 #5272\n\nFix variable inspection for Map and List instances: #5320\n\nFix variable inspection for Set instances: #5323\n\nNetwork profiler updates\n\nImprove reliability and performance of the Network tab - #5056\n\nChangelog\n\nMore details about changes and fixes are available in the DevTools\nchangelog.", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.22.2/index.html"} {"id": "08d41b4e7dcc-0", "text": "Tools\n\nDevTools\n\nDevTools release notes\n\n2.7.0 release notes\n\nDevTools 2.7.0 release notes\n\nDart & Flutter DevTools - A Suite of Performance Tools for Dart and Flutter\n\nGeneral Updates\n\nImprovements for initial page load time -\n#3309\n\nFix a couple scrollbar-related issues -\n#3393,\n#3401\n\nDebugger Updates\n\nAdd an open file dialog (ctrl / cmd + p) -\n#3342,\n#3354,\n#3371,\n#3384\n\nAdd a copy button to the call stack view -\n#3334\n\nCPU Profiler Updates", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.7.0/index.html"} {"id": "08d41b4e7dcc-1", "text": "CPU Profiler Updates\n\nAdded functionality to load an app startup profile for Flutter apps.\nThis profile will contain CPU samples from the initialization\nof the Dart VM up until the first Flutter frame has been rendered. -\n#3357\n\nWhen the app startup profile has been loaded,\nyou will see that the \u201cAppStartUp\u201d user tag is selected for the profile.\nYou can also load the app startup profile\nby selecting this user tag filter, when present,\nin the list of available user tags.\n\nAdded multi-isolate support.\nSelect which isolate you want to profile\nfrom the isolate selector at the bottom of the page. -\n#3362\n\nAdd class names to CPU stack frames in the profiler -\n#3385\n\nChangelog\n\nMore details about changes and fixes are available in our changelog.", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.7.0/index.html"} {"id": "9648e4c1fde4-0", "text": "Tools\n\nDevTools\n\nDevTools release notes\n\n2.8.0 release notes\n\nDevTools 2.8.0 release notes\n\nDart & Flutter DevTools - A Suite of Performance Tools for Dart and Flutter\n\nGeneral Updates\n\nImprovements for initial page load time -\n#3325\n\nPerformance improvements for connecting DevTools to a device,\nparticularly impactful for low-memory devices -\n#3468", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.8.0/index.html"} {"id": "9648e4c1fde4-1", "text": "For users on Flutter 2.8.0 or greater (or Dart 2.15.0 or greater),\nDevTools should now be launched via the dart devtools command\ninstead of running pub global activate devtools.\nDevTools 2.8.0 will be the last version of DevTools shipped on pub,\nand all future versions of DevTools will be shipped as part of the Dart SDK.\nIf you see this warning,\nbe sure to open DevTools via dart devtools instead of from pub:\n\nPerformance Updates\n\nAdded a new \u201cEnhance Tracing\u201d feature to help users diagnose UI jank\nstemming from expensive Build, Layout, and Paint operations.\n\nThe expected workflow is as such:\n\nUser is investigating UI jank in the performance page\n\nUser notices a long Build, Layout, and/or Paint event\n\nUser turns on the respective tracking toggle in the \u201cEnhance Tracing\u201d feature", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.8.0/index.html"} {"id": "9648e4c1fde4-2", "text": "User turns on the respective tracking toggle in the \u201cEnhance Tracing\u201d feature\n\nUser reproduces the UI jank in their app\n\nUser looks at the new set of Timeline events, which should now have\nadditional child events for widgets built, render objects laid out,\nand/or render objects painted\n\nAdded new \u201cMore debugging options\u201d feature to allow for disabling\nrendering layers for Clip, Opacity, and Physical Shapes.\n\nThe expected workflow is as such:\n\nUser is investigating UI jank in the performance page\n\nUser notices a lot of janky frames and suspects it could be due to\nexcessive use of clipping, opacity, or physical shapes.\n\nUser turns off the respective render layer toggle in the \u201cMore\ndebugging options\u201d feature\n\nUser reproduces the UI jank in their app", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.8.0/index.html"} {"id": "9648e4c1fde4-3", "text": "User reproduces the UI jank in their app\n\nIf the UI jank is reduced with a rendering layer turned off,\nthe user should try to optimize their app to use\nless clipping/opacity/physical shape effects.\nIf the UI jank is not reduced,\nthe user now knows that the performance problem\nis not due to these UI effects.\n\nDebugger Updates\n\nReplaced the \u201cLibraries\u201d pane with a \u201cFile Explorer\u201d pane -\n#3448. The \u201cFile\nExplorer\u201d pane has two components:\n\nA tree view of the libraries present in your application.\nYou can use the File Explorer to find and open a library,\nor you can use the existing Ctrl/Cmd + P keyboard shortcut\nto search for a file.\n\nA new \u201cOutline\u201d view that shows the structure of the selected library.\nThis view will show classes, members, methods, etc.,\nand when an item is selected,\nthe source view will jump to the respective line of code\nfor the selected item.", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.8.0/index.html"} {"id": "9648e4c1fde4-4", "text": "Performance improvements to expression evaluation auto complete -\n#3463\n\nFixed a bug with keyboard shortcuts -\n#3458\n\nUI polish - #3421,\n#3449\n\nChangelog\n\nMore details about changes and fixes are available in our changelog.", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.8.0/index.html"} {"id": "da5c1f76d039-0", "text": "Tools\n\nDevTools\n\nDevTools release notes\n\n2.9.1 release notes\n\nDevTools 2.9.1 release notes\n\nDart & Flutter DevTools - A Suite of Performance Tools for Dart and Flutter.\n\nDebugger Updates\n\nImprove support for inspecting large lists and maps in the Debugger\nvariables pane - #3497\n\nAdded support for selecting objects in the program explorer outline view.\nSelecting an object will automatically scroll the source code\nin the debugger to the selected object -\n#3480\n\nPerformance Updates\n\nFix bugs with performance page search and improve performance -\n#3515\n\nAdded an enhanced tooltip for flutter frames -\n#3493\n\nChangelog\n\nMore details about changes and fixes are available in our changelog.", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.9.1/index.html"} {"id": "49974e2ebd64-0", "text": "Tools\n\nDevTools\n\nDevTools release notes\n\n2.9.2 release notes\n\nDevTools 2.9.2 release notes\n\nDart & Flutter DevTools - A Suite of Performance Tools for Dart and Flutter\n\nGeneral Updates\n\nTake our 2022 DevTools survey! Provide your feedback and help us improve\nyour development experience. This survey prompt will show up directly in\nDevTools sometime in mid-February.\n\nNote: If you are having issues launching the survey, please make\nsure you have upgraded to the latest Flutter stable branch 2.10.\nThere was a bug in DevTools (fixed in\n#3574) that\nprevented the survey from being able to be opened, and unless you\nare on Flutter 2.10, this bug will still be present._", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.9.2/index.html"} {"id": "49974e2ebd64-1", "text": "General bug fixes and improvements -\n#3528,\n#3531,\n#3532,\n#3539\n\nPerformance Updates\n\nAdded frame numbers to x-axis the Flutter frames chart -\n#3526\n\nDebugger Updates\n\nFix a bug where the File Explorer in the Debugger did not show contents\nafter a hot restart -\n#3527\n\nChangelog\n\nMore details about changes and fixes are available in our\nchangelog.", "source": "https://docs.flutter.dev/development/tools/devtools/release-notes/release-notes-2.9.2/index.html"} {"id": "1f2abe5e5a8a-0", "text": "Install and run DevTools from VS Code\n\nTools\n\nDevTools\n\nInstall and run DevTools from VS Code\n\nInstall the VS Code extensions\n\nStart an application to debug\n\nLaunch DevTools\n\nInstall the VS Code extensions\n\nTo use the DevTools from VS Code, you need the Dart extension.\nIf you\u2019re debugging Flutter applications, you should also install\nthe Flutter extension.\n\nStart an application to debug\n\nStart a debug session for your application by opening the root\nfolder of your project (the one containing pubspec.yaml)\nin VS Code and clicking Run > Start Debugging (F5).\n\nLaunch DevTools\n\nOnce the debug session is active and the application has started,\nthe Dart: Open DevTools command becomes available in the\nVS Code command palette:", "source": "https://docs.flutter.dev/development/tools/devtools/vscode/index.html"} {"id": "1f2abe5e5a8a-1", "text": "The first time you run this (and subsequently when the DevTools package\nis updated), you are prompted to activate or upgrade DevTools.\n\nClicking the Open button uses pub global activate to activate\nthe DevTools package for you. Next, DevTools launches in your browser and\nautomatically connects to your debug session.\n\nWhile DevTools is active, you\u2019ll see them in the status bar\nof VS Code. If you\u2019ve closed the browser tab,\nyou can click the status bar to re-launch your browser, so long\nas there\u2019s still a suitable Dart/Flutter debugging session available.", "source": "https://docs.flutter.dev/development/tools/devtools/vscode/index.html"} {"id": "68d26c1b7f18-0", "text": "Flutter Fix\n\nTools\n\nFlutter Fix\n\nApplying individual fixes\n\nIntelliJ and Android Studio\nVS Code\n\nApplying project-wide fixes\n\nAs Flutter continues to evolve, we provide a tool to help you clean up\ndeprecated APIs from your codebase. The tool ships as part of Flutter, and\nsuggests changes that you might want to make to your code. The tool is available\nfrom the command line, and is also integrated into the IDE plugins for Android\nStudio and Visual Studio Code.\n\nTip:\n These automated updates are called quick-fixes in IntelliJ and Android\n Studio, and code actions in VS Code.\n\nApplying individual fixes\n\nYou can use any supported IDE\nto apply a single fix at a time.\n\nIntelliJ and Android Studio", "source": "https://docs.flutter.dev/development/tools/flutter-fix/index.html"} {"id": "68d26c1b7f18-1", "text": "IntelliJ and Android Studio\n\nWhen the analyzer detects a deprecated API,\na light bulb appears on that line of code.\nClicking the light bulb displays the suggested fix\nthat updates that code to the new API.\nClicking the suggested fix performs the update.\n\nA sample quick-fix in IntelliJ\n\nVS Code\n\nWhen the analyzer detects a deprecated API,\nit presents an error.\nYou can do any of the following:\n\nHover over the error and then click the\nQuick Fix link.\nThis presents a filtered list showing\nonly fixes.\n\nPut the caret in the code with the error and click\nthe light bulb icon that appears.\nThis shows a list of all actions, including\nrefactors.\n\nPut the caret in the code with the error and\npress the shortcut\n(Command+. on macOS, Control+. elsewhere)\nThis shows a list of all actions, including\nrefactors.\n\nA sample code action in VS Code", "source": "https://docs.flutter.dev/development/tools/flutter-fix/index.html"} {"id": "68d26c1b7f18-2", "text": "A sample code action in VS Code\n\nApplying project-wide fixes\n\nTo see or apply changes to an entire project,\nyou can use the command-line tool, dart fix.\n\nThis tool has two options:\n\nTo see a full list of available changes, run\nthe following command:\n\n \n$ dart fix --dry-run\n\nTo apply all changes in bulk, run the\nfollowing command:\n\n \n$ dart fix --apply\n\nFor more information on Flutter deprecations, see\nDeprecation lifetime in Flutter, a free article\non Flutter\u2019s Medium publication.", "source": "https://docs.flutter.dev/development/tools/flutter-fix/index.html"} {"id": "164b5df4be05-0", "text": "Code formatting\n\nTools\n\nCode formatting\n\nAutomatically formatting code in VS Code\n\nAutomatically formatting code in Android Studio and IntelliJ\n\nAutomatically formatting code with the dart command\n\nUsing trailing commas\n\nWhile your code might follow any preferred style\u2014in our\nexperience\u2014teams of developers might find it more productive to:\n\nHave a single, shared style, and\n\nEnforce this style through automatic formatting.\n\nThe alternative is often tiring formatting debates during code reviews,\nwhere time might be better spent on code behavior rather than code style.\n\nAutomatically formatting code in VS Code\n\nInstall the Flutter extension (see\nEditor setup)\nto get automatic formatting of code in VS Code.\n\nTo automatically format the code in the current source code window,\nright-click in the code window and select Format Document.\nYou can add a keyboard shortcut to this VS Code Preferences.", "source": "https://docs.flutter.dev/development/tools/formatting/index.html"} {"id": "164b5df4be05-1", "text": "To automatically format code whenever you save a file, set the\neditor.formatOnSave setting to true.\n\nAutomatically formatting code in Android Studio and IntelliJ\n\nInstall the Dart plugin (see\nEditor setup)\nto get automatic formatting of code in Android Studio and IntelliJ.\nTo automatically format your code in the current source code window,\nuse Cmd+Alt+L (on Mac) or Ctrl+Alt+L (on Windows and Linux).\nAndroid Studio and IntelliJ also provide a check box named\nFormat code on save on the Flutter page in Preferences\n(on Mac) or Settings (on Windows and Linux)\nwhich formats the current file automatically when you save it.\n\nAutomatically formatting code with the dart command\n\nYou can also automatically format code in the command line interface\n(CLI) using the dart format command:\n\ndart format path1 path2 ...\n\nUsing trailing commas", "source": "https://docs.flutter.dev/development/tools/formatting/index.html"} {"id": "164b5df4be05-2", "text": "dart format path1 path2 ...\n\nUsing trailing commas\n\nFlutter code often involves building fairly deep tree-shaped data structures,\nfor example in a build method. To get good automatic formatting,\nwe recommend you adopt the optional trailing commas.\nThe guideline for adding a trailing comma is simple: Always\nadd a trailing comma at the end of a parameter list in\nfunctions, methods, and constructors where you care about\nkeeping the formatting you crafted.\nThis helps the automatic formatter to insert an appropriate\namount of line breaks for Flutter-style code.\n\nHere is an example of automatically formatted code with trailing commas:\n\nAnd the same code automatically formatted code without trailing commas:", "source": "https://docs.flutter.dev/development/tools/formatting/index.html"} {"id": "a628a6e31e7c-0", "text": "Hot reload\n\nTools\n\nHot reload\n\nHow to perform a hot reload\n\nSpecial cases\n\nAn app is killed\nCompilation errors\nCupertinoTabView\u2019s builder\nEnumerated types\nGeneric types\nNative code\nPrevious state is combined with new code\nRecent code change is included but app state is excluded\nRecent UI change is excluded\n\nHow it works\n\nFlutter\u2019s hot reload feature helps you quickly and\neasily experiment, build UIs, add features, and fix bugs.\nHot reload works by injecting updated source code files\ninto the running Dart Virtual Machine (VM).\nAfter the VM updates classes with the new versions of fields and functions,\nthe Flutter framework automatically rebuilds the widget tree,\nallowing you to quickly view the effects of your changes.\n\nHow to perform a hot reload\n\nTo hot reload a Flutter app:", "source": "https://docs.flutter.dev/development/tools/hot-reload/index.html"} {"id": "a628a6e31e7c-1", "text": "How to perform a hot reload\n\nTo hot reload a Flutter app:\n\nRun the app from a supported Flutter editor or a terminal window.\nEither a physical or virtual device can be the target.\nOnly Flutter apps in debug mode can be hot reloaded or hot restarted.\n\nModify one of the Dart files in your project.\nMost types of code changes can be hot reloaded;\nfor a list of changes that require a hot restart,\nsee Special cases.\n\nIf you\u2019re working in an IDE/editor that supports Flutter\u2019s IDE tools,\nselect Save All (cmd-s/ctrl-s),\nor click the hot reload button on the toolbar.\n\n If you\u2019re running the app at the command line using flutter run,\nenter r in the terminal window.\n\nAfter a successful hot reload operation,\nyou\u2019ll see a message in the console similar to:", "source": "https://docs.flutter.dev/development/tools/hot-reload/index.html"} {"id": "a628a6e31e7c-2", "text": "The app updates to reflect your change,\nand the current state of the app is preserved.\nYour app continues to execute from where it was prior\nto run the hot reload command.\nThe code updates and execution continues.\n\nWhat is the difference between hot reload, hot restart,\n and full restart?\n\nHot reload loads code changes into the VM and re-builds\nthe widget tree, preserving the app state;\nit doesn\u2019t rerun main() or initState().\n(\u2318\\ in Intellij and Android Studio, \u2303F5 in VSCode)\n\nHot restart loads code changes into the VM,\nand restarts the Flutter app, losing the app state.\n(\u21e7\u2318\\ in IntelliJ and Android Studio, \u21e7\u2318F5 in VSCode)", "source": "https://docs.flutter.dev/development/tools/hot-reload/index.html"} {"id": "a628a6e31e7c-3", "text": "Full restart restarts the iOS, Android, or web app.\nThis takes longer because it also recompiles the\nJava / Kotlin / ObjC / Swift code. On the web,\nit also restarts the Dart Development Compiler.\nThere is no specific keyboard shortcut for this;\nyou need to stop and start the run configuration.\n\nFlutter web currently supports hot restart but not\n hot reload.\n\nControls for run, run debug, hot reload, and hot restart in Android Studio\n\nA code change has a visible effect only if the modified\nDart code is run again after the change. Specifically,\na hot reload causes all the existing widgets to rebuild.\nOnly code involved in the rebuilding of the widgets\nis automatically re-executed. The main() and initState()\nfunctions, for example, are not run again.\n\nSpecial cases", "source": "https://docs.flutter.dev/development/tools/hot-reload/index.html"} {"id": "a628a6e31e7c-4", "text": "Special cases\n\nThe next sections describe specific scenarios that involve\nhot reload. In some cases, small changes to the Dart code\nenable you to continue using hot reload for your app.\nIn other cases, a hot restart, or a full restart is needed.\n\nAn app is killed\n\nHot reload can break when the app is killed.\nFor example, if the app was in the background for too long.\n\nCompilation errors\n\nWhen a code change introduces a compilation error,\nhot reload generates an error message similar to:\n\nIn this situation, simply correct the errors on the\nspecified lines of Dart code to keep using hot reload.\n\nCupertinoTabView\u2019s builder\n\nHot reload won\u2019t apply changes made to\na builder of a CupertinoTabView.\nFor more information, see Issue 43574.\n\nEnumerated types", "source": "https://docs.flutter.dev/development/tools/hot-reload/index.html"} {"id": "a628a6e31e7c-5", "text": "Enumerated types\n\nHot reload doesn\u2019t work when enumerated types are\nchanged to regular classes or regular classes are\nchanged to enumerated types.\n\nFor example:\n\nBefore the change:\n\nAfter the change:\n\nGeneric types\n\nHot reload won\u2019t work when generic type declarations\nare modified. For example, the following won\u2019t work:\n\nBefore the change:\n\nAfter the change:\n\nNative code\n\nIf you\u2019ve changed native code (such as Kotlin, Java, Swift,\nor Objective-C), you must perform a full restart (stop and\nrestart the app) to see the changes take effect.\n\nPrevious state is combined with new code", "source": "https://docs.flutter.dev/development/tools/hot-reload/index.html"} {"id": "a628a6e31e7c-6", "text": "Previous state is combined with new code\n\nFlutter\u2019s stateful hot reload preserves the state of your app.\nThis approach enables you to view the effect of the most\nrecent change only, without throwing away the current state.\nFor example, if your app requires a user to log in,\nyou can modify and hot reload a page several levels down in\nthe navigation hierarchy, without re-entering your login credentials.\nState is kept, which is usually the desired behavior.\n\nIf code changes affect the state of your app (or its dependencies),\nthe data your app has to work with might not be fully consistent\nwith the data it would have if it executed from scratch.\nThe result might be different behavior after a hot reload\nversus a hot restart.\n\nRecent code change is included but app state is excluded", "source": "https://docs.flutter.dev/development/tools/hot-reload/index.html"} {"id": "a628a6e31e7c-7", "text": "Recent code change is included but app state is excluded\n\nIn Dart, static fields are lazily initialized.\nThis means that the first time you run a Flutter app and a\nstatic field is read, it\u2019s set to whatever value its\ninitializer was evaluated to.\nGlobal variables and static fields are treated as state,\nand are therefore not reinitialized during hot reload.\n\nIf you change initializers of global variables and static fields,\na hot restart or restart the state where the initializers are hold\nis necessary to see the changes.\nFor example, consider the following code:\n\nAfter running the app, you make the following change:\n\nYou hot reload, but the change is not reflected.\n\nConversely, in the following example:\n\nRunning the app for the first time prints 1 and 1.\nThen, you make the following change:", "source": "https://docs.flutter.dev/development/tools/hot-reload/index.html"} {"id": "a628a6e31e7c-8", "text": "While changes to const field values are always hot reloaded,\nthe static field initializer is not rerun. Conceptually,\nconst fields are treated like aliases instead of state.\n\nThe Dart VM detects initializer changes and flags when a set\nof changes needs a hot restart to take effect.\nThe flagging mechanism is triggered for\nmost of the initialization work in the above example,\nbut not for cases like the following:\n\nTo update foo and view the change after hot reload,\nconsider redefining the field as const or using a getter to\nreturn the value, rather than using final.\nFor example, either of the following solutions work:\n\nFor more information, read about the differences\nbetween the const and final keywords in Dart.\n\nRecent UI change is excluded\n\nEven when a hot reload operation appears successful and generates no\nexceptions, some code changes might not be visible in the refreshed UI.\nThis behavior is common after changes to the app\u2019s main() or\ninitState() methods.", "source": "https://docs.flutter.dev/development/tools/hot-reload/index.html"} {"id": "a628a6e31e7c-9", "text": "As a general rule, if the modified code is downstream of the root\nwidget\u2019s build() method, then hot reload behaves as expected.\nHowever, if the modified code won\u2019t be re-executed as a result\nof rebuilding the widget tree, then you won\u2019t\nsee its effects after hot reload.\n\nFor example, consider the following code:\n\nAfter running this app, change the code as follows:\n\nWith a hot restart, the program starts from the beginning,\nexecutes the new version of main(),\nand builds a widget tree that displays the text Hello.\n\nHowever, if you hot reload the app after this change,\nmain() and initState() are not re-executed,\nand the widget tree is rebuilt with the unchanged instance\nof MyApp as the root widget.\nThis results in no visible change after hot reload.\n\nHow it works\n\nWhen hot reload is invoked, the host machine looks\nat the edited code since the last compilation.\nThe following libraries are recompiled:", "source": "https://docs.flutter.dev/development/tools/hot-reload/index.html"} {"id": "a628a6e31e7c-10", "text": "Any libraries with changed code\n\nThe application\u2019s main library\n\nThe libraries from the main library leading\nto affected libraries\n\nThe source code from those libraries is compiled into\nkernel files and sent to the mobile device\u2019s Dart VM.\n\nThe Dart VM re-loads all libraries from the new kernel file.\nSo far no code is re-executed.\n\nThe hot reload mechanism then causes the Flutter framework\nto trigger a rebuild/re-layout/repaint of all existing\nwidgets and render objects.", "source": "https://docs.flutter.dev/development/tools/hot-reload/index.html"} {"id": "0941220f638d-0", "text": "Tools & techniques\n\nTools\n\nTopics:\n\nAndroid Studio & IntelliJ\n\nVisual Studio Code\n\nDevTools\n\nFlutter SDK\n\nFlutter and the pubspec file\n\nHot reload\n\nFlutter Fix\n\nCode formatting", "source": "https://docs.flutter.dev/development/tools/index.html"} {"id": "6308cc0e78cd-0", "text": "Flutter and the pubspec file\n\nTools\n\nFlutter and the pubspec file\n\nAssets\n\nFonts\n\nMore information\n\nNote:\n This page is primarily aimed at folks who write\n Flutter apps. If you write packages or plugins, \n (perhaps you want to create a federated plugin),\n you should check out the\n Developing packages and plugins page.\n\nEvery Flutter project includes a pubspec.yaml file,\noften referred to as the pubspec.\nA basic pubspec is generated when you create\na new Flutter project. It\u2019s located at the top\nof the project tree and contains metadata about\nthe project that the Dart and Flutter tooling\nneeds to know. The pubspec is written in\nYAML, which is human readable, but be aware\nthat white space (tabs v spaces) matters.", "source": "https://docs.flutter.dev/development/tools/pubspec/index.html"} {"id": "6308cc0e78cd-1", "text": "The pubspec file specifies dependencies\nthat the project requires, such as particular packages\n(and their versions), fonts, or image files.\nIt also specifies other requirements, such as \ndependencies on developer packages (like\ntesting or mocking packages), or particular\nconstraints on the version of the Flutter SDK.\n\nFields common to both Dart and Flutter projects\nare described in the pubspec file on dart.dev.\nThis page lists Flutter-specific fields\nthat are only valid for a Flutter project.\n\nNote:\n The first time you build your project, it\n creates a pubspec.lock file that contains\n specific versions of the included packages.\n This ensures that you get the same version\n the next time the project is built.\n\nWhen you create a new project with the\nflutter create command (or by using the\nequivalent button in your IDE), it creates\na pubspec for a basic Flutter app.\n\nHere is an example of a Flutter project pubspec file.\nThe Flutter only fields are highlighted.", "source": "https://docs.flutter.dev/development/tools/pubspec/index.html"} {"id": "6308cc0e78cd-2", "text": "flutter: # Required for every Flutter project\n\nsdk: flutter # Required for every Flutter project\n\nflutter_localizations: # Required to enable localization\n\nsdk: flutter # Required to enable localization\n\ncupertino_icons: ^1.0.5 # Only required if you use Cupertino (iOS style) icons\n\ndev_dependencies:\n\nflutter_test:\n\nsdk: flutter # Required for a Flutter project that includes tests\n\nflutter:\n\nuses-material-design: true # Required if you use the Material icon font\n\ngenerate: true # Enables generation of localized strings from arb files\n\nassets: # Lists assets, such as image files\n\nimages/a_dot_burr.jpeg\n\nimages/a_dot_ham.jpeg\n\nfonts: # Required if your app uses custom fonts", "source": "https://docs.flutter.dev/development/tools/pubspec/index.html"} {"id": "6308cc0e78cd-3", "text": "fonts: # Required if your app uses custom fonts\n\nfamily: Schyler\n\nfonts:\n\nasset: fonts/Schyler-Regular.ttf\n\nasset: fonts/Schyler-Italic.ttf\n\nstyle: italic\n\nfamily: Trajan Pro\n\nfonts:\n\nasset: fonts/TrajanPro.ttf\n\nasset: fonts/TrajanPro_Bold.ttf\n\nweight: 700\n\nAssets\n\nCommon types of assets include static data\n(for example, JSON files), configuration files,\nicons, and images (JPEG, WebP, GIF,\nanimated WebP/GIF, PNG, BMP, and WBMP).", "source": "https://docs.flutter.dev/development/tools/pubspec/index.html"} {"id": "6308cc0e78cd-4", "text": "Besides listing the images that are included in the\napp package, an image asset can also refer to one or more\nresolution-specific \u201cvariants\u201d. For more information,\nsee the resolution aware section of the\nAssets and images page.\nFor information on adding assets from package\ndependencies, see the\nasset images in package dependencies\nsection in the same page.\n\nFonts\n\nAs shown in the above example,\neach entry in the fonts section should have a\nfamily key with the font family name,\nand a fonts key with a list specifying the\nasset and other descriptors for the font.\n\nFor examples of using fonts\nsee the Use a custom font and\nExport fonts from a package recipes in the\nFlutter cookbook.\n\nMore information\n\nFor more information on packages, plugins,\nand pubspec files, see the following:\n\nCreating packages on dart.dev\n\nGlossary of package terms on dart.dev\n\nPackage dependencies on dart.dev\n\nUsing packages", "source": "https://docs.flutter.dev/development/tools/pubspec/index.html"} {"id": "6308cc0e78cd-5", "text": "Package dependencies on dart.dev\n\nUsing packages\n\nWhat not to commit on dart.dev", "source": "https://docs.flutter.dev/development/tools/pubspec/index.html"} {"id": "e991027a5f04-0", "text": "Flutter SDK\n\nTools\n\nSDK", "source": "https://docs.flutter.dev/development/tools/sdk/index.html"} {"id": "4d8bb8df7c9a-0", "text": "Flutter SDK overview\n\nTools\n\nSDK\n\nFlutter SDK\n\nWhat\u2019s in the Flutter SDK\n\nflutter command-line tool\n\ndart command-line tool\n\nThe Flutter SDK has the packages and command-line tools that you need to develop\nFlutter apps across platforms. To get the Flutter SDK, see Install.\n\nWhat\u2019s in the Flutter SDK\n\nThe following is available through the Flutter SDK:\n\nDart SDK\n\nHeavily optimized, mobile-first 2D rendering engine with\nexcellent support for text\n\nModern react-style framework\n\nRich set of widgets implementing Material Design and iOS styles\n\nAPIs for unit and integration tests\n\nInterop and plugin APIs to connect to the system and 3rd-party SDKs\n\nHeadless test runner for running tests on Windows, Linux, and Mac", "source": "https://docs.flutter.dev/development/tools/sdk/overview/index.html"} {"id": "4d8bb8df7c9a-1", "text": "Headless test runner for running tests on Windows, Linux, and Mac\n\nDart DevTools for testing, debugging, and profiling your app\n\nflutter and dart command-line tools for creating, building, testing,\nand compiling your apps\n\nNote: For more information about the Flutter SDK, see its\nREADME file.\n\nflutter command-line tool\n\nThe flutter CLI tool (flutter/bin/flutter) is how developers\n(or IDEs on behalf of developers) interact with Flutter.\n\ndart command-line tool\n\nThe dart CLI tool is available with the Flutter SDK at flutter/bin/dart.", "source": "https://docs.flutter.dev/development/tools/sdk/overview/index.html"} {"id": "9935b6bd1c24-0", "text": "Change log for Flutter 1.12.13\n\nTools\n\nSDK\n\nRelease notes\n\n1.12.13 change log\n\nPRs closed in this release of flutter/flutter\n\nPRs closed in this release of flutter/engine\n\nPRs closed in this release of flutter/plugins\n\nPRs closed in this release of flutter/flutter\n\nFrom Sun Aug 19 17:37:00 2019 -0700 to Mon Nov 25 12:05:00 2019 -0800\n\n34188 Use separate isolate for image loading. (a: images, a: tests, cla: yes, framework)\n\n35100 Add handling of \u2018TextInput.clearClient\u2019 message from platform to framework (#35054). (a: text input, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-1", "text": "35516 more UI-as-code (cla: yes, team)\n\n36864 Clean up bots output and remove timeouts (cla: yes, team, waiting for tree to go green)\n\n36871 Audit use of defaultTargetPlatform (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n36998 Added properties in DropdownButtonFormField to match DropdownButton (cla: yes, f: material design, framework)\n\n37024 Implement PageView using SliverLayoutBuilder, Deprecate RenderSliverFillViewport (cla: yes, f: gestures, f: scrolling, framework, severe: API break, waiting for tree to go green)\n\n37268 run web tests in batches; enable foundation tests (cla: yes, \u2638 platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-2", "text": "37416 Add MediaQuery.systemGestureInsets to support Android Q (cla: yes, customer: crowd, framework, severe: new feature, \u25a3 platform-android)\n\n37508 build bundle with assemble (cla: yes, tool)\n\n37526 catch errors during gradle update (cla: yes, tool)\n\n37544 Replace ButtonBar.bar method with ButtonBarTheme (cla: yes, d: examples, f: material design, framework, severe: API break, team, team: gallery)\n\n37642 Unit test for build.dart::GenSnapshot (cla: yes, tool)\n\n37645 Update CONTRIBUTING.md (cla: yes, team)\n\n37646 Instrument pending timers in tests (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-3", "text": "37719 CupertinoDynamicColor and friends (cla: yes, f: cupertino, f: material design, framework)\n\n37739 Fix AnimationStatus for repeat(reverse: true) and animateWith (a: animation, cla: yes, framework, severe: API break)\n\n37819 Add HtmlElementView (the Flutter Web platform view) (cla: yes, framework, \u2638 platform-web)\n\n37832 add \u2013exit and \u2013match-host-platform defaults to devicelab runner (cla: yes, team, tool)\n\n37845 echo error messages to stderr (CQ+1, cla: yes, tool)\n\n37896 Add opacity control to MouseRegion. Add findAnnotations to Layer. (a: desktop, cla: yes, framework, severe: API break)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-4", "text": "37901 [macos] Check for special keys before creating a logical key (a: desktop, cla: yes, framework, \u2318\u202c platform-mac)\n\n37962 Show search app bar theme (cla: yes, f: material design, framework)\n\n38317 TweenAnimationBuilder for building custom animations without managing an AnimationController (a: animation, cla: yes, framework)\n\n38464 Moved the default BinaryMessenger instance to ServicesBinding (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team)\n\n38481 Timer picker fidelity revision (cla: yes, f: cupertino, framework, severe: API break, will affect goldens)\n\n38560 refactor cocoapods validator to detect broken install (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-5", "text": "38568 Normalize assert checking of clipBehavior (CQ+1, cla: yes, f: material design, framework, severe: API break)\n\n38573 Clamp scrollOffset to prevent textfield bouncing (a: text input, cla: yes, framework)\n\n38576 flutter_tools/version: git log.showSignature=false (cla: yes, tool)\n\n38583 Added InheritedTheme (cla: yes, f: material design, framework)\n\n38632 Flutter Plugin Tool supports multi-platform plugin config (cla: yes, tool)\n\n38643 PlatformViewLink handles focus (a: platform-views, cla: yes, framework)\n\n38650 Allow independent theming of Persistent and Modal bottom sheets (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-6", "text": "38654 [flutter_tool] Remove some async file io (cla: yes, tool)\n\n38699 fix widgetspan does not work with ellipsis in text widget (cla: yes, framework)\n\n38709 [Material] Add contentPadding property to SwitchListTile (cla: yes, f: material design, framework)\n\n38712 Show process error when iOS install fails (cla: yes, tool)\n\n38723 Handle compilation failures from web application (cla: yes, tool, \u2638 platform-web)\n\n38724 Remove xcconfigs from template Copy Bundle Resources build phases (cla: yes, d: examples, t: xcode, team, team: gallery, tool, \u233a\u202c platform-ios)\n\n38726 Make disabled buttons/chips/text fields not be focusable. (CQ+1, cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-7", "text": "38748 Create correctly structured framework for macOS (cla: yes, tool)\n\n38789 Fix DragTarget not being rebuilt when a rejected Draggable enters #38786 (cla: yes, framework)\n\n38813 Add ToggleButtons.textStyle property (cla: yes, f: material design, framework)\n\n38814 Add iOS backdrop filter benchmarks (cla: yes, severe: performance, team)\n\n38815 Revert \u201cAdded a composable waitForCondition Driver/extension API (#37\u2026 (a: tests, cla: yes, framework)\n\n38821 Cache caret parameters (a: text input, cla: yes, framework, severe: performance)\n\n38823 Print service url when connecting to web applications (cla: yes, tool, \u2638 platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-8", "text": "38831 [Material] Add clip property to bottom sheet and theme (cla: yes, f: material design, framework)\n\n38833 More explicit link to xkcd in CoC (cla: yes)\n\n38836 Added a composable waitForCondition Driver/extension API. (a: tests, cla: yes, framework)\n\n38840 Fix analyzer issues for onReportTiming to frameTiming (a: tests, cla: yes, framework)\n\n38858 Use GLFW-name artifacts on Windows and Linux (cla: yes, tool)\n\n38861 Replace deprecated onReportTimings w/ frameTimings (cla: yes, framework, severe: performance)\n\n38866 Revert \u201cAutomatic focus highlight mode for FocusManager (#37825)\u201d (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-9", "text": "38869 Store file hashes per build configuration. (cla: yes, tool)\n\n38894 [flutter_tool] Move http request close under try-catch (cla: yes, tool)\n\n38895 [Shrine] Adding outlines to text fields (cla: yes, d: examples, team, team: gallery)\n\n38898 ToggleButtons test improvement (cla: yes, f: material design, framework)\n\n38905 Remove iphonesimulator from SUPPORTED_PLATFORMS for Profile and Release modes (cla: yes, t: xcode, tool, \u233a\u202c platform-ios)\n\n38907 Throw error when hot reload enters bad state (cla: yes, tool)\n\n38909 Add support for macOS release/profile mode (3 of 3) (cla: yes, tool, \u2318\u202c platform-mac)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-10", "text": "38916 Update BUILD.gn for package:flutter_test (a: tests, cla: yes, framework)\n\n38920 [flutter_tool] Handle crashes from doctor validators (cla: yes, tool)\n\n38922 Better docs for text (ready to land) (cla: yes, framework, waiting for tree to go green)\n\n38925 [flutter_tool] Only send one crash report per run (cla: yes, tool)\n\n38930 Implement system fonts system channel listener (cla: yes, framework)\n\n38932 Add build warning for non-debug desktop builds (cla: yes, tool)\n\n38936 Fix KeySet (and LogicalKeySet) hashCode calculation (cla: yes, framework)\n\n38979 Adding onEnd callback to implicit animated widgets (a: animation, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-11", "text": "38992 Clean Xcode workspace during flutter clean (cla: yes, tool)\n\n38999 Mark smoke_catalina_start_up not flaky (CQ+1, cla: yes, team)\n\n39000 Dont throw StateError when calling assemble (CQ+1, cla: yes, tool)\n\n39005 [flutter_tool] Teach crash reporter about HttpException (cla: yes, tool)\n\n39006 Add web workflow to default validators (cla: yes, tool)\n\n39013 Update package versions to latest (cla: yes, tool)\n\n39017 Add \u201cOneSequenceRecognizer.resolvePointer\u201d. Fix DragGestureRecognizer crash on multiple pointers (a: desktop, cla: yes, f: gestures, framework)\n\n39052 Make forward calls run interactively (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-12", "text": "39052 Make forward calls run interactively (cla: yes, tool)\n\n39056 Fixed issues with Background Color #34741 (cla: yes, f: cupertino, framework)\n\n39059 Explain const values in MediaQuery test file (cla: yes, framework)\n\n39066 Kill resident runner on browser disconnect. (cla: yes, tool, \u2638 platform-web)\n\n39072 Break dependency of tools/lib/src from lib/src/commands/ (cla: yes, tool)\n\n39073 Add profile mode to flutter web applications (cla: yes, tool, \u2638 platform-web)\n\n39079 fix widget built twice during warm up frame (cla: yes, f: scrolling, framework, severe: API break, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-13", "text": "39080 Fix plugin template app\u2019s tests (cla: yes, team, tool)\n\n39082 Golden Doc Updates (a: tests, cla: yes, d: api docs, d: examples, framework, waiting for tree to go green)\n\n39085 Make inspector details subtree depth configurable. (cla: yes, framework)\n\n39088 Doc Improvements for SliverFillRemaining (cla: yes, d: api docs, d: examples, framework, waiting for tree to go green)\n\n39089 Correct InheritedTheme.captureAll() for multiple theme ancestors of the same type (cla: yes, framework)\n\n39124 Update image_list example to use https instead of http (a: images, cla: yes, d: examples, framework, team)\n\n39126 Fid app bundle in Gradle 3.5 (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-14", "text": "39136 [flutter_tool] Some additional input validation for \u2018version\u2019 (cla: yes, tool, waiting for tree to go green)\n\n39140 Move commands into their own shard (cla: yes, tool)\n\n39142 fix sliverfixedextent with sliverchildbuilderdelegate does not correc\u2026 (cla: yes, f: scrolling, framework)\n\n39144 Add the textAlignVertical param to TextFormField (cla: yes, f: material design, framework)\n\n39145 Add missing files in the Gradle wrapper directory (cla: yes, t: gradle, tool)\n\n39147 Downgrade the AndroidX warning (cla: yes, tool)\n\n39150 Mention conduct@flutter.dev (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-15", "text": "39156 Added Scaffold.extendBodyBehindAppBar (cla: yes, f: material design, framework)\n\n39157 Use new Maven artifacts from Gradle (cla: yes, t: gradle, tool)\n\n39160 Revert \u201cecho error messages to stderr\u201d (cla: yes, waiting for tree to go green)\n\n39189 fix source map loading and service protocol for flutter web (cla: yes, tool)\n\n39195 respect reversed scroll views (cla: yes, framework)\n\n39196 Added a Driver wait condition for no pending platform messages (a: tests, cla: yes, framework)\n\n39198 Docs (a: tests, cla: yes, f: material design, framework)\n\n39214 Place terminalUi flag on terminal interface (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-16", "text": "39215 CupertinoActionSheet dark mode & fidelity (cla: yes, f: cupertino, framework)\n\n39225 Manul engine roll to d4932ba71 (cla: yes, engine)\n\n39252 Adds relayout option to CustomMultiChildLayout. (cla: yes, customer: wednesday, framework)\n\n39263 Change SliverGeometry.maxScrollObstructionExtent for RenderSliverFloatingPersistentHeader to match docs (cla: yes, framework)\n\n39264 Add profile support on macOS (cla: yes, tool)\n\n39274 Use output dir instead of specific paths in assemble rules (cla: yes, tool)\n\n39280 [flutter_tool] Use a timeout for xcode showBuildSettings (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-17", "text": "39282 Expose text metrics in TextPainter. (cla: yes, framework)\n\n39286 Update docs for GrowthDirection and scrollOffset (cla: yes, d: api docs, framework, waiting for tree to go green)\n\n39289 CupertinoActivityIndicator & CupertinoApp dark mode (cla: yes, f: cupertino, framework)\n\n39299 Add showAboutDialog sample (cla: yes, f: material design, framework)\n\n39300 Add smoke tests for Catalina/Android testing. (cla: yes, team)\n\n39312 let flutter build aar use a local engine (cla: yes, tool)\n\n39333 Allow independent theming of Persistent and Modal bottom sheets Background Color (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-18", "text": "39338 [flutter_tool] Create a temp snapshot to run create_test.dart tests (cla: yes, tool)\n\n39344 Upstream changes necessary for text editing in flutter web (a: text input, cla: yes, framework, \u2638 platform-web)\n\n39345 Adding header rule to FB hosting for API docs. (cla: yes, team)\n\n39347 Revert \u201cAdd smoke tests for Catalina/Android testing.\u201d (cla: yes, team)\n\n39353 Rename macos_build_flutter_assets.sh (cla: yes, tool)\n\n39354 Add IterableFlagsProperty and use it on proxy box classes (cla: yes, framework)\n\n39357 Relax requirements around local engine, build hello_world with bitcode (cla: yes, d: examples, t: xcode, team, tool, \u233a\u202c platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-19", "text": "39358 surface errors from build runner (cla: yes, tool)\n\n39361 [devicelab] Reland adding smoke tests for Catalina/Android testing (cla: yes, team)\n\n39363 Move ios tests to the right section (cla: yes, team)\n\n39364 Correct libraries path and remove dart:io and dart:isolate for dart platform (cla: yes, tool, \u2638 platform-web)\n\n39414 Make sure profile is forwarded through build web command (cla: yes, tool, \u2638 platform-web)\n\n39428 Replace doc example text (cla: yes, framework)\n\n39429 Update packages \u2013force-upgrade (cla: yes, team)\n\n39430 make CupertinoDynamicColor const constructible (cla: yes, f: cupertino, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-20", "text": "39431 Revert \u201cRelax requirements around local engine, build hello_world with bitcode\u201d (cla: yes, d: examples, team, tool)\n\n39432 Do not hide .git in zip for Windows (cla: yes, team, waiting for tree to go green)\n\n39433 Add helperMaxLines to InputDecoration and InputDecorationTheme (cla: yes, f: material design, framework)\n\n39434 Reland \u201cRelax arguments around local engine, build hello_world with bitcode\u201d (cla: yes, d: examples, team, tool)\n\n39439 Measure iOS CPU/GPU percentage (cla: yes, severe: performance, team)\n\n39440 Allow gaps in the initial route (cla: yes, f: routes, framework, severe: API break, \u2638 platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-21", "text": "39445 [flutter_tool] Add onError callback to asyncGuard. Use it in Doctor (cla: yes, tool)\n\n39446 Add viewType to PlatformViewLink (a: platform-views, cla: yes, framework)\n\n39447 Revert \u201cBetter docs for text (ready to land)\u201d (cla: yes, f: material design, framework)\n\n39448 Update README.md (cla: yes, team)\n\n39450 Check phone number formatting in the gallery text fields demo (cla: yes, d: examples, f: material design, team, team: gallery)\n\n39457 Log flags in build apk and appbundle (cla: yes)\n\n39462 Remove run in shell and add unit test for chrome launching (cla: yes, tool, \u2638 platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-22", "text": "39463 Update validation to support Xcode11 version (cla: yes, t: xcode, tool, waiting for tree to go green, \u200e\u200d\ud83d\udcbbplatform-catalina)\n\n39503 Remove bitcode=NO from add-to-app flows (cla: yes, team, tool)\n\n39504 Revert \u201cExpose text metrics in TextPainter.\u201d (cla: yes, framework)\n\n39505 fix recursiveCopy to preserve executable bit (cla: yes, team)\n\n39509 Skip failing add2app test to unblock roll (a: tests, cla: yes, team)\n\n39514 kill leaked chrome processes (cla: yes, team)\n\n39515 migrate from slow async io calls (a: tests, cla: yes, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-23", "text": "39519 Reland \u201cExpose LineMetrics in TextPainter (#39282)\u201d (cla: yes, framework)\n\n39523 Revert \u201cAdd handling of \u2018TextInput.clearClient\u2019 message from platform\u2026 (cla: yes, framework)\n\n39524 Register flutterVersion service in flutter_tools. (cla: yes, tool)\n\n39530 keep symbols for profile (cla: yes, tool)\n\n39535 Do not render any frames when just initializing Bindings (a: tests, cla: yes, framework, severe: API break, waiting for tree to go green)\n\n39539 Keep Flutter.framework binaries writable so they can be code signed (a: existing-apps, cla: yes, t: xcode, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-24", "text": "39540 Revert \u201cRoll engine 9a17d8e45197..101e03c1c841 (4 commits)\u201d (cla: yes, engine)\n\n39541 Handle single unsupported device (cla: yes, team, tool)\n\n39543 create .dart_tool if it is missing (cla: yes, tool, \u2638 platform-web)\n\n39545 remove a period from the service protocol printout (cla: yes, tool)\n\n39555 Use feature flags to control build command visibility (cla: yes, tool)\n\n39558 Filter error message from skip build script checks (cla: yes, tool)\n\n39572 Prevent exception when creating a Divider borderSide (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-25", "text": "39577 Use dpr and window size from binding for accessibility guide (a: tests, cla: yes, framework)\n\n39579 [flutter_tools] Add a timeout to another showBuildSettings command (cla: yes, tool)\n\n39580 Mark flutter_gallery__transition_perf as non-flaky (cla: yes, team)\n\n39581 Update dartdoc to 0.28.5 (cla: yes, team)\n\n39583 Fix single action banner to ensure button alignment (cla: yes, f: material design, framework)\n\n39585 remove fallback code for ios/usb artifacts (cla: yes, tool, waiting for tree to go green)\n\n39588 Revert \u201cfix recursiveCopy to preserve executable bit\u201d (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-26", "text": "39589 Re-Land of HighlightMode change with benchmark improvements. (a: desktop, cla: yes, framework)\n\n39590 Fix user gesture in CupertinoPageRoute (cla: yes, f: cupertino, framework)\n\n39594 Reland \u201cfix recursiveCopy to preserve executable bit\u201d (cla: yes, team)\n\n39598 disable low value linux tests (cla: yes, team)\n\n39600 Let Material BackButton have a custom onPressed handler (cla: yes, f: material design, framework)\n\n39626 disable low value windows tests (cla: yes, team)\n\n39627 Default colorScheme data in ButtonThemeData (fix for #38655) (cla: yes, f: material design, framework, passed first triage)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-27", "text": "39628 Automatically generated registrants for web plugins (cla: yes, team, tool, \u2638 platform-web)\n\n39632 Updates to debugFillProperties to test all properties in slider.dart and slider_test.dart (cla: yes, f: material design, framework, waiting for tree to go green)\n\n39654 Use persisted build information to automatically clean old outputs (cla: yes, tool)\n\n39670 Center action icons of swipe to dismiss example (cla: yes, d: examples, f: material design, team, team: gallery)\n\n39699 Detecting when installing over MingW\u2019s Git Bash, fixing paths (cla: yes, tool, waiting for tree to go green)\n\n39701 Remove input files argument to target (cla: yes, tool)\n\n39702 Fix macOS App.framework version symlink (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-28", "text": "39747 Fix type mismatch in Gradle (cla: yes, tool)\n\n39748 print launching on device message (cla: yes, tool, \u2638 platform-web)\n\n39751 Minor cleanup and prevent multiple exit (cla: yes, tool, \u2638 platform-web)\n\n39752 Add delay to recompile request for web (cla: yes, tool)\n\n39756 remove web flag from create (cla: yes, tool)\n\n39761 Null TextWidthBasis docs (cla: yes, f: material design, framework)\n\n39765 CupertinoButton & Bottom tab bar dark mode (cla: yes, f: cupertino, f: material design, framework)\n\n39768 Revert \u201cRemove input files argument to target\u201d (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-29", "text": "39769 remove input files argument to target (cla: yes, tool)\n\n39772 These Catalina tests are no longer flaky. (cla: yes, team)\n\n39774 workaround for mangled web sdk source map packages (cla: yes, tool)\n\n39776 handle browser refresh (cla: yes, tool)\n\n39778 Revert \u201cReplace deprecated onReportTimings w/ frameTimings\u201d (a: tests, cla: yes, framework)\n\n39780 Updates CORS origin for snippets to a wildcard. (cla: yes, team)\n\n39781 Add lib/generated_plugin_registrant.dart to gitignore (cla: yes, tool)\n\n39782 Allow specifying a project for Xcode getInfo (cla: yes, tool)\n\n39783 Hotfix for 1.9.1 (cla: yes, engine)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-30", "text": "39784 Revert Maven dependencies (#39747) (39157) (cla: yes, d: examples, team, tool)\n\n39786 Revert \u201cShow search app bar theme\u201d (cla: yes, f: material design, framework)\n\n39798 Reland #39157 (cla: yes, d: examples, team, tool, waiting for tree to go green)\n\n39834 update to the latest package:dwds (cla: yes, team)\n\n39836 Switch to the Win32 Windows embedding (a: desktop, cla: yes, tool, \u2756 platform-windows)\n\n39837 Remove dead accessors of _getUnusedChangesInLastReload. (cla: yes, tool)\n\n39844 Fix curve for popping heroes (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-31", "text": "39851 Build flutter_gallery with bitcode (cla: yes, d: examples, t: xcode, team, team: gallery, waiting for tree to go green, \u233a\u202c platform-ios)\n\n39857 Update ToggleButtons constraints default and add new constraints parameter (cla: yes, f: material design, framework, severe: new feature)\n\n39859 Revert \u201cKeep Flutter.framework binaries writable so they can be code signed\u201d (cla: yes, tool)\n\n39899 [flutter_tool] process.dart cleanup (cla: yes, tool)\n\n39903 Fixed passing autofocus to MaterialButton, and when rebuilding Focus widget. (cla: yes, f: material design, framework)\n\n39910 If there are no web plugins, don\u2019t generate a plugin registrant (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-32", "text": "39912 Revert \u201cBuild flutter_gallery with bitcode\u201d (cla: yes, d: examples, team, team: gallery)\n\n39917 Fix new prefer_const_constructors after analyzer fix. (a: tests, cla: yes, d: examples, framework, team, team: gallery)\n\n39919 CupertinoDatePicker & CupertinoTimerPicker dark mode (cla: yes, f: cupertino, framework, severe: API break, will affect goldens)\n\n39924 Adds DartPad option to the DartDoc snippet generator. (cla: yes, f: material design, framework, team)\n\n39927 Make CupertinoDynamicColor.resolve return null when given a null color (cla: yes, f: cupertino, framework)\n\n39932 update packages \u2013force upgrade (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-33", "text": "39932 update packages \u2013force upgrade (cla: yes, team)\n\n39934 remove dart dir chrome profile (cla: yes, tool)\n\n39945 added new lifecycle state (a: existing-apps, cla: yes, framework, severe: API break)\n\n39950 Register reload sources call and make \u2018r\u2019 restart for web (cla: yes, tool)\n\n39951 Add \u201cweb\u201d server device to allow running flutter for web on arbitrary browsers (cla: yes, tool, \u2638 platform-web)\n\n39983 Update the supported library set for Flutter for web (cla: yes, tool)\n\n39985 Revert \u201cCorrect libraries path and remove dart:io and dart:isolate for dart platform\u201d (cla: yes, tool)\n\n39986 Enable Proguard by default on release mode (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-34", "text": "39988 Roll build runner and remove delay (cla: yes, team, tool, \u2638 platform-web)\n\n39997 Remove visibleForTesting annotation; this constructor is used outside\u2026 (cla: yes, passed first triage, tool, waiting for tree to go green)\n\n39999 Disable the performance overlay for web (cla: yes, framework, \u2638 platform-web)\n\n40001 Update to latest dwds (cla: yes, team)\n\n40005 Cherry-picks for 1.9.1 (cla: yes, engine)\n\n40007 CupertinoAlertDialog dark mode & CupertinoActionSheet fidelity (cla: yes, f: cupertino, framework)\n\n40009 Add null check to _IndicatorPainter._tabOffsetsEqual() to prevent crash (cla: yes, f: material design, framework, severe: crash)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-35", "text": "40011 [windows] Searches for pre-release and \u2018all\u2019 Visual Studio installations (cla: yes, tool, \u2756 platform-windows)\n\n40029 [BUG] Process all children of intent-filter instead of just the first one to identify default activity (cla: yes, passed first triage, tool, waiting for tree to go green)\n\n40045 clean up use of build runner internals (cla: yes, tool)\n\n40048 fix typo (cla: yes, framework, passed first triage, waiting for tree to go green)\n\n40049 Use build runners script gen directly. (cla: yes, tool)\n\n40066 use IOOverrides to allow inject file system, write test, find bug (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-36", "text": "40089 Diagrams and samples for Rank 20-30 popular api docs (cla: yes, d: api docs, d: examples, f: material design, framework, from: study)\n\n40099 Fix double.infinity serialization (cla: yes, framework)\n\n40100 Fix a problem with disposing of focus nodes in tab scaffold (cla: yes, f: cupertino, framework)\n\n40102 Lower the iterations on flutter_gallery__back_button_memory (cla: yes, team)\n\n40105 Ensure frame is scheduled when root widget is attached (cla: yes, framework)\n\n40112 Revert engine roll (cla: yes, engine)\n\n40117 Show outdated CocoaPods version in hint text (cla: yes, t: flutter doctor, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-37", "text": "40119 fix skips to include all channels (cla: yes)\n\n40131 ensure we use pub from flutter SDK (cla: yes, tool)\n\n40155 Remove failing devicelab tests (cla: yes, team)\n\n40159 [flutter_tool] Kill a timing-out process before trying to drain its streams (cla: yes, tool)\n\n40161 Add fullscreenDialog argument in PageRouteBuilder (cla: yes, f: routes, framework, severe: new feature, waiting for tree to go green)\n\n40165 Channel buffers (cla: yes, framework)\n\n40166 Added proper focus handling when pushing and popping routes (cla: yes, f: material design, framework, severe: API break)\n\n40171 Place hot reload artifacts in a temp directory (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-38", "text": "40174 Keep Flutter.framework binaries writable so they can be code signed (cla: yes, tool)\n\n40175 Ensure we send hot restart events for flutter web (cla: yes, tool)\n\n40179 Update PopupMenu layout (cla: yes, f: material design, framework, severe: API break)\n\n40181 Update Kotlin and Gradle version (a: accessibility, cla: yes, d: examples, team, team: gallery, tool)\n\n40186 Add shortcuts and actions for default focus traversal (a: desktop, cla: yes, framework, team)\n\n40189 Dark mode CupertinoNavigationBar (cla: yes, f: cupertino, framework, will affect goldens)\n\n40190 disable bitcode for hello_world (cla: yes, d: examples, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-39", "text": "40191 add host and port to run configuration for web devices (cla: yes, tool, \u2638 platform-web)\n\n40193 Pass local engine in flutter_test_performance benchmark (cla: yes, team)\n\n40194 Add an ephemeral directory to Windows projects (a: desktop, cla: yes, tool)\n\n40195 Make Swift plugin template swift-format compliant (cla: yes, tool)\n\n40197 [windows] Refactor to optimize vswhere queries (cla: yes, t: flutter doctor, tool, \u2756 platform-windows)\n\n40200 Disable foundation tests since some are failing (cla: yes, team)\n\n40204 Revert \u201cbuild bundle with assemble\u201d (cla: yes, team, tool)\n\n40210 make sure we launch with dwds (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-40", "text": "40259 remove io and isolate from libraries (cla: yes, tool)\n\n40263 Fix crash on vswhere search from flutter doctor (cla: yes, severe: crash, t: flutter doctor, tool, \u2756 platform-windows)\n\n40266 Lower the iteration count on back_button_memory test (cla: yes, team)\n\n40275 Manual roll of engine 7ea9884\u20265b94c8a (64 commits) (cla: yes, engine)\n\n40280 PlatformView: recreate surface if the controller changes (a: platform-views, cla: yes, framework)\n\n40282 Flip the default for proguard (cla: yes, tool, waiting for tree to go green)\n\n40285 Enable FTL reporting on an integration test (cla: yes, d: examples, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-41", "text": "40291 range_slider_test.dart diagnostics property tests (cla: yes, f: material design, framework)\n\n40294 fix copy command and remove resolve sync for macOS assemble (cla: yes, tool)\n\n40301 Allow skipping webOnlyInitializePlatform in Flutter for Web (cla: yes, tool)\n\n40302 Set DEFINES_MODULE for FlutterPluginRegistrant to generate modulemap (a: existing-apps, cla: yes, team, tool)\n\n40304 Revert engine roll (cla: yes, engine)\n\n40306 Restore offstage and ticker mode after hero pop and the from hero is null (cla: yes, framework)\n\n40359 Revert engine roll (cla: yes, engine)\n\n40366 Place existing dill into hot reload temp directory to boost initialization time (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-42", "text": "40367 [Docs] Create \u2018center\u2019 snippets template (cla: yes, f: material design, framework, team)\n\n40368 ensure dart2js does not compile unsupported packages (cla: yes, tool)\n\n40370 rename port to web-port and hostname to web-hostname (cla: yes, tool)\n\n40372 Roll engine from 7ea9884..3c6383f (77 commits \ud83d\udd25) (cla: yes, engine, waiting for tree to go green)\n\n40375 Harden macOS build use of Xcode project getInfo (cla: yes, tool)\n\n40386 Revert \u201cRoll engine from 7ea9884..3c6383f (77 commits \ud83d\udd25) (#40372)\u201d (cla: yes, engine)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-43", "text": "40390 a11y improvements for textfield (cla: yes, f: material design, framework, waiting for tree to go green)\n\n40391 Place conditional imports on same line (a: tests, cla: yes, framework)\n\n40393 Convert build mode to lowercase in tool_backend (a: desktop, cla: yes, tool)\n\n40394 Roll engine to 6e6de944536b820e4f148036b01004ef0ed68917 (cla: yes, engine)\n\n40397 Adds list required components when VS is not installed (cla: yes, t: flutter doctor, tool, \u2756 platform-windows)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-44", "text": "40398 roll ios-deploy version to 2fbbee77ea2b3212959b9dddda816f59094cd7cd (cla: yes, tool)\n\n40399 Fix for broken LocalFileComparator output (a: tests, cla: yes, framework)\n\n40401 Make FlutterPluginRegistrant a static framework so add-to-app can use static framework plugins (a: existing-apps, cla: yes, tool, waiting for tree to go green, \u233a\u202c platform-ios)\n\n40404 Revert \u201cRoll engine to 6e6de944536b820e4f148036b01004ef0ed68917 (#403\u2026 (cla: yes, engine)\n\n40410 Remove fluter tool usage of protobuf (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-45", "text": "40435 [flutter_tool] Remove the synchronous -showBuildSettings (cla: yes, tool)\n\n40440 Rename useProguard method, so Gradle doesn\u2019t get confused (cla: yes, tool, waiting for tree to go green)\n\n40441 Remove all flaky marks (cla: yes, team)\n\n40442 Roll engine 7ea9884..1b6344439 (91 commits \ud83d\udd25\ud83d\udd25\ud83d\udd25) (cla: yes, engine)\n\n40446 [flutter_tool] Use curly braces around single statment control structures (cla: yes, tool)\n\n40447 Implement mdns for flutter run (cla: yes, tool, \u233a\u202c platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-46", "text": "40453 Enable R8 (a: accessibility, cla: yes, d: examples, team, team: gallery, tool, waiting for tree to go green)\n\n40454 Dark Mode R: Refresh Control (cla: yes, f: cupertino, framework)\n\n40461 Implement DropdownButton.selectedItemBuilder (cla: yes, f: material design, framework, severe: new feature)\n\n40465 Pass \u2013web-hostname and \u2013web-port to release mode debugging options (cla: yes, tool)\n\n40466 ModalRoutes ignore input when a (cupertino) pop transition is underway (cla: yes, f: cupertino, f: material design, framework)\n\n40468 Propagate textfield character limits to semantics (a: accessibility, cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-47", "text": "40470 Reland: implement build bundle with assemble (cla: yes, team, tool)\n\n40472 Dont kill other processes when starting desktop application (cla: yes, tool)\n\n40555 [Docs] Add missing trailing comma to stateful_widget_scaffold_center template (cla: yes, team)\n\n40566 Remove CupertinoSystemColors in favor of CupertinoColors (cla: yes, f: cupertino, framework, severe: API break)\n\n40587 Add an ephemeral directory for Linux (cla: yes, tool)\n\n40607 New overview for animations library (a: animation, cla: yes, d: api docs, d: examples, framework, from: study, waiting for tree to go green)\n\n40608 Add the option to configure a chip check mark color (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-48", "text": "40609 Specify ifTrue and ifFalse for strut FlagProperty (cla: yes, framework)\n\n40610 Enable the resource shrinker (cla: yes, tool)\n\n40611 Warn when build number and version can\u2019t be parsed on iOS (cla: yes, tool, \u233a\u202c platform-ios)\n\n40617 Wait for first frame in driver tests (cla: yes, d: examples, team, team: gallery)\n\n40624 Revert \u201cMeasure iOS CPU/GPU percentage\u201d (cla: yes, team)\n\n40627 Allow skipping chrome launch with \u2013no-web-browser-launch (cla: yes, tool)\n\n40630 enable foundation and physics tests on the Web (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-49", "text": "40634 Benchmark for un-triaged image results on Flutter Gold (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n40635 Return WidgetSpans from getSpanForPosition (cla: yes, framework)\n\n40636 Dark mode for CupertinoSwitch and CupertinoScrollbar, Fidelity updates (a: tests, cla: yes, f: cupertino, framework, severe: API break, will affect goldens)\n\n40638 Allow sending platform messages from plugins to the framework and implement EventChannel (cla: yes, framework, plugin)\n\n40640 Exclude non Android plugins from Gradle build (cla: yes, team, tool)\n\n40641 Add onLongPress to Buttons (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-50", "text": "40665 Fix CupertinoTextField and TextField ToolbarOptions not changing (cla: yes, f: material design, framework, waiting for tree to go green)\n\n40678 Extract some onPress methods (cla: yes, d: examples, framework, team, team: gallery, waiting for tree to go green)\n\n40690 CupertinoPageScaffold dark mode (cla: yes, f: cupertino, framework, severe: API break)\n\n40692 fix platform environment (cla: yes, tool)\n\n40695 TextField docs for getting value (a: text input, cla: yes, d: api docs, f: material design, framework)\n\n40697 Update keyboard maps (cla: yes, framework, team)\n\n40701 add missing trailing commas (in examples/) (cla: yes, d: examples, framework, team, team: gallery)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-51", "text": "40704 add missing trailing commas (in dev/) (cla: yes, framework, team)\n\n40706 Add fake keyboard key generation to the testing framework (a: tests, cla: yes, f: material design, framework)\n\n40709 Fixed Selectable text align is broken (cla: yes, framework)\n\n40710 Skia Gold Support for Local & PreSubmit Testing in package:flutter (a: images, a: tests, cla: yes, framework, severe: API break, team, will affect goldens)\n\n40713 Material textselection context menu cannot disable select all (cla: yes, f: material design, framework)\n\n40714 Revert \u201cPropagate textfield character limits to semantics\u201d (a: accessibility, a: tests, cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-52", "text": "40715 [Flutter Driver] Simplified the serialization/deserialization logic of the Descendant/\u2026 (a: tests, cla: yes, framework)\n\n40718 Handle CR+LF end of line sequences in the license parser (cla: yes, framework)\n\n40730 Invalidate macOS pods on plugin changes (cla: yes, tool)\n\n40743 Added notice to docs that setPreferredOrientations does not always work on iPad (cla: yes, d: api docs, framework, waiting for tree to go green)\n\n40757 Fix visibility of web server device when Chrome is not available (cla: yes, tool)\n\n40766 Run flutter update-packages --force-upgrade. (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-53", "text": "40767 Reapply \u201cRevert \u201cPropagate textfield character limits to semantics (#40468)\u201d (a: accessibility, a: tests, cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n40775 Use EdgeInsetsGeometry instead of EdgeInsets (cla: yes, framework, waiting for tree to go green)\n\n40783 ensure debug builds are only accessible through run (cla: yes, tool)\n\n40786 Fix crash on vswhere query on missing installations (cla: yes, severe: crash, t: flutter doctor, tool, waiting for tree to go green, \u2756 platform-windows)\n\n40792 Move build info checks from generating files to the xcode build (cla: yes, tool, \u233a\u202c platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-54", "text": "40795 Update toolchain description to request the latest version (CQ+1, cla: yes, t: flutter doctor, tool, waiting for tree to go green, \u2756 platform-windows)\n\n40806 Allow test beds to override defaultTestTimeout (a: tests, cla: yes, framework, waiting for tree to go green)\n\n40810 Re-enable AAR plugins when an AndroidX failure occurred (cla: yes, team, tool)\n\n40851 Support create for macOS (app and plugin) (cla: yes, tool)\n\n40857 Give benchmark output dill path (cla: yes, team)\n\n40862 Revert \u201cReland: implement build bundle with assemble\u201d (cla: yes, team, tool)\n\n40864 Move iOS and Android gitignore rules into folders (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-55", "text": "40900 Stop using deprecated features from Gradle (cla: yes, tool)\n\n40917 AnimatedBuilder API Doc improvements (cla: yes, framework, waiting for tree to go green)\n\n40925 Use AndroidX in new projects by default (cla: yes, tool)\n\n40927 Make module pod headers public (a: existing-apps, cla: yes, tool, \u233a\u202c platform-ios)\n\n40968 add missing trailing commas in flutter_tools (cla: yes, team, tool, waiting for tree to go green)\n\n40979 Revert \u201cRun flutter update-packages --force-upgrade.\u201d (cla: yes, team)\n\n40984 Revert \u201cUse separate isolate for image loading. (#34188)\u201d (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-56", "text": "40988 [flutter_tool] Report rss high watermark in command analytics events (cla: yes, tool)\n\n40993 Label bugs created via the SUPPORT template (cla: yes, team)\n\n40994 Fix the ThemeData.copyWith toggleButtonsTheme argument type (cla: yes, f: material design, framework, waiting for tree to go green)\n\n40995 Revert \u201cUse AndroidX in new projects by default\u201d (cla: yes, team, tool)\n\n40997 Force upgrade packages again. (cla: yes, team)\n\n41000 Fix run_release_test (cla: yes, team)\n\n41001 Revert \u201cRevert \u201cUse AndroidX in new projects by default\u201d\u201d (cla: yes, engine, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-57", "text": "41009 Add Sample code to SlideTransition (cla: yes, framework, team, waiting for tree to go green)\n\n41014 Fix mouse hover to not schedule a frame for every mouse move. (a: tests, cla: yes, f: material design, framework)\n\n41015 Add the beginnings of plugin support for Windows and Linux (a: desktop, cla: yes, tool, \u2756 platform-windows, \ud83d\udc27 platform-linux)\n\n41042 Revert \u201cRe-enable AAR plugins when an AndroidX failure occurred\u201d (cla: yes, team, tool)\n\n41076 add missing trailing commas in packages/flutter (cla: yes, framework, team, waiting for tree to go green)\n\n41108 Fixing a text editing bug happening when text field changes. (a: text input, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-58", "text": "41120 Dropdown Menu layout respects menu items intrinsic sizes (cla: yes, f: material design, framework, will affect goldens)\n\n41142 Add embedding as API dependency instead of compile only dependency (cla: yes, team, tool, waiting for tree to go green)\n\n41145 Explicitly set CocoaPods version (cla: yes)\n\n41150 Rebuild modal routes when the value of userGestureInProgress changes (cla: yes, f: material design, framework)\n\n41160 Reland #40810: Re-enable AAR plugins when an AndroidX failure occurred (cla: yes, team, tool, waiting for tree to go green)\n\n41172 fix some bad indentations (cla: yes, f: material design, framework, team, tool)\n\n41206 Cherry-picks (cla: yes, engine)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-59", "text": "41206 Cherry-picks (cla: yes, engine)\n\n41207 Bump version of just package:multicast_dns (cla: yes, team)\n\n41211 Update AUTHORS (cla: yes, framework, waiting for tree to go green)\n\n41213 Revert engine roll (cla: yes, engine)\n\n41220 Add an ActivateAction to controls that use InkWell. (cla: yes, f: material design, framework, severe: API break, team)\n\n41222 Copy archived js part files out of dart_tool directory (cla: yes, tool, \u2638 platform-web)\n\n41224 fix flutter error report correct local widget (a: error message, cla: yes, framework, from: study, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-60", "text": "41229 V1.9.1 hotfixes (cla: yes, engine, team, tool)\n\n41230 Re-Re-land Implement flutter build bundle with assemble (cla: yes, team, tool)\n\n41232 Revert \u201cBenchmark for un-triaged image results on Flutter Gold\u201d (cla: yes, team)\n\n41234 Reland \u201cMeasure iOS CPU/GPU percentage (#39439)\u201d (cla: yes, team)\n\n41240 Manual roll of the engine to 63949eb0fd982b27adc218364805913380af7411. (cla: yes, engine)\n\n41245 Change the way ActionDispatcher is found. (cla: yes, framework)\n\n41247 Desktop manual tests (cla: yes, f: material design, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-61", "text": "41251 Migrate examples and tests to AndroidX (a: accessibility, cla: yes, d: examples, team, team: gallery)\n\n41254 Test that flutter assets are contained in the APK (cla: yes, team)\n\n41263 fix bad indentation (cla: yes, framework, team)\n\n41295 Revert \u201cRe-Re-land Implement flutter build bundle with assemble\u201d (cla: yes, team, tool)\n\n41300 Modifying unit tests for editable_text (cla: yes, framework)\n\n41302 Re-Re-Re-land implement flutter build bundle with assemble (cla: yes, team, tool)\n\n41304 [flutter_tools] Allows adding multiple signal handlers (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-62", "text": "41320 [Material] Remove text ripple from TextFields (cla: yes, f: material design, framework, waiting for tree to go green, will affect goldens)\n\n41326 Exception when selecting in TextField (cla: yes, f: cupertino, framework)\n\n41327 Incorporating Link Semantics (a: accessibility, a: tests, cla: yes, framework)\n\n41329 Refactor: Base tap gesture recognizer (cla: yes, f: gestures, framework, waiting for tree to go green)\n\n41332 Prevent PointerEnter[or Exit]Event from erasing event.down value (a: desktop, cla: yes, framework)\n\n41333 Merge Flutter assets in add to app (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-63", "text": "41338 Fix ReorderableListView\u2019s use of child keys (#41334) (cla: yes, f: material design, framework)\n\n41342 Revert engine rolls (cla: yes, engine)\n\n41347 Fix timing issues in initialization of web resident runner (cla: yes, tool)\n\n41355 fix bad indentations(mainly around collection literals) (cla: yes, f: cupertino, f: material design, framework, team, tool)\n\n41378 Fix erroneous comments referring to blobs snapshots. (cla: yes, team)\n\n41384 [flutter_tools] Report iOS mDNS lookup failures to analytics (cla: yes, tool)\n\n41386 Serve every html file under web (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-64", "text": "41397 Keymap for Web (a: accessibility, a: text input, cla: yes, framework, waiting for tree to go green, \u2638 platform-web)\n\n41400 Revert \u201cReland \u201cMeasure iOS CPU/GPU percentage (#39439)\u201d\u201d (cla: yes, team)\n\n41401 Flutter build bundle without \u2013precompiled should always perform a debug build. (cla: yes, tool)\n\n41403 Devicelab run.dart: Fixed check for path equality (cla: yes, team)\n\n41406 Retry devfs uploads in case they fail. (cla: yes, tool)\n\n41408 add tests to ensure the sdk is well-formed (cla: yes, tool)\n\n41410 [flutter_tools] Adds tests of mdns analytics events (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-65", "text": "41411 roll libimobiledevice artifacts to signed version (cla: yes, tool)\n\n41415 Expose API for resizing image caches (a: images, cla: yes, framework, severe: API break, severe: new feature)\n\n41417 Address previous comments, fix Intent.doNothing. (cla: yes, framework)\n\n41422 Revert \u201cDropdown Menu layout respects menu items intrinsic sizes\u201d (cla: yes, f: material design, framework)\n\n41424 Don\u2019t update last compiled time when compilation is rejected (cla: yes, tool)\n\n41426 Reland \u201cMeasure iOS CPU/GPU percentage (#41234)\u201d (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-66", "text": "41431 Cupertino { TabScafold, TextSelection, TextField } dark mode & minor fidelity update (cla: yes, f: cupertino, f: material design, framework, will affect goldens)\n\n41441 Exit resident web runner on compilation failure (cla: yes, tool, \u2638 platform-web)\n\n41447 Switch to assemble API for dart2js (cla: yes, tool)\n\n41449 Revert \u201cAddress previous comments, fix Intent.doNothing. (#41417)\u201d (cla: yes, framework, team)\n\n41463 [Chip] Make sure InkResponse is in the foreground on delete for chips with background color (a: fidelity, cla: yes, f: material design, framework)\n\n41473 Missing trailing commas (cla: yes, f: cupertino, f: material design, framework, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-67", "text": "41477 Reland changes to Intent.doNothing to avoid analyzer issue (cla: yes, framework, team)\n\n41480 Revert \u201cRoll engine 18bc0b259641..e31b2ff64dc2 (1 commits)\u201d (cla: yes, engine)\n\n41482 [flutter_tool] Add analytics events for ios-mdns fallback success/failure (cla: yes, tool)\n\n41491 Skip pod initialization if version >= 1.8.0. (cla: yes, t: flutter doctor, team, team: infra, tool, \u233a\u202c platform-ios)\n\n41493 [flutter_tool] Report to analytics when the tool is killed by a signal (cla: yes, tool)\n\n41498 Revert \u201cExit resident web runner on compilation failure\u201d (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-68", "text": "41499 Roll build runner (cla: yes, team, tool)\n\n41503 Revert engine to 5b952f286fc070e99cf192775fa5c9dfe858b692 (cla: yes, engine)\n\n41504 V1.9.1 hotfixes (cla: yes, engine, team, tool)\n\n41505 Reland: Exit resident web runner on compilation failure (cla: yes, tool)\n\n41509 Add flutter drive to readme. (cla: yes, team)\n\n41514 Ensure we find dart.exe on local engines (cla: yes, tool)\n\n41515 Revert \u201cDon\u2019t update last compiled time when compilation is rejected\u201d (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-69", "text": "41519 Make desktop stopApp only apply to processes Flutter started (cla: yes, tool, waiting for tree to go green)\n\n41521 Revert \u201cCupertinoDatePicker & CupertinoTimerPicker dark mode\u201d (a: tests, cla: yes, f: cupertino, framework)\n\n41530 Add support for depfile dependency (cla: yes, tool)\n\n41545 Add analytics tracking for compile and refresh times for Flutter Web (cla: yes, tool)\n\n41551 Pass Linux build mode on command line (cla: yes, tool)\n\n41575 Revert \u201cReland \u201cMeasure iOS CPU/GPU percentage (#41234)\u201d\u201d (cla: yes, team)\n\n41578 Reland \u201cMeasure iOS CPU/GPU percentage #41426\u201d (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-70", "text": "41579 Rename the file to fix the device lab (cla: yes, team)\n\n41580 Reland: don\u2019t update last compile time when compilation is rejected. (cla: yes, tool)\n\n41583 Add debugging option to write vmservice address to file after starting (cla: yes, tool)\n\n41610 track unused inputs in build_runner (cla: yes, tool)\n\n41612 AOT support for Linux Desktop I: switch Linux builds to assemble (cla: yes, e: glfw, tool)\n\n41618 Rename Server/web to Headless Server/headless-server (cla: yes, tool, \u2638 platform-web)\n\n41621 change logging in mDNS discovery to verbose-mode only (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-71", "text": "41625 Update DefaultTabController to allow for zero tabs (cla: yes, f: material design, framework, waiting for tree to go green)\n\n41629 [Material] Fix Tooltip to respect ambient Directionality (cla: yes, f: material design, framework, waiting for tree to go green)\n\n41632 fix confusing \u2018popupTheme\u2019 variable name in a MaterialBannerTheme method (cla: yes, f: material design, framework)\n\n41640 some formatting changes (cla: yes, f: material design, framework, team, tool, waiting for tree to go green)\n\n41644 indent formal parameters correctly (cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)\n\n41646 replace package:vm_service_client with package:vm_service in the devicelab project (cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-72", "text": "41650 DropdownButton.style API doc example for differing button and menu item text styles (cla: yes, f: material design, framework, waiting for tree to go green)\n\n41651 added questions on Platform / OS Version / Device (cla: yes, team, waiting for tree to go green)\n\n41652 [flutter_tools] Add more info to pub get failure event (cla: yes, tool)\n\n41658 Revert \u201cSwitch to assemble API for dart2js\u201d (cla: yes, team, tool)\n\n41659 Reland: Switch to assemble API for dart2js (cla: yes, team, tool)\n\n41666 Generate projects using the new Android embedding (cla: yes, tool, \u25a3 platform-android)\n\n41675 Fix documentation for the required argument (cla: yes, d: api docs, documentation, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-73", "text": "41687 Use processManager.run() instead of manually capturing streams in test_utils getPackages() (cla: yes, tool, waiting for tree to go green)\n\n41695 Add more information to cannot find Chrome message (cla: yes, tool, \u2638 platform-web)\n\n41697 Handle missing .packages file in the flutter tool for prebuilt artifacts (cla: yes, tool)\n\n41698 Download android x64 release artifacts (cla: yes, tool)\n\n41704 Manual roll of engine to 16d7694e760a..5c428d924790 (10 commits) (cla: yes, engine)\n\n41717 Update label applied for performance template bugs (cla: yes, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-74", "text": "41730 Allow customization of label styles for semantics debugger (a: accessibility, cla: yes, framework, waiting for tree to go green)\n\n41735 handle empty entry in asset list and add more explicit validation (cla: yes, tool)\n\n41736 Disable CPU/GPU measurement on BackdropFilter test (cla: yes, team)\n\n41744 Fix tools test verifyVersion() regex (cla: yes, team)\n\n41747 Add Profile entry to macOS Podfile (cla: yes, tool, waiting for tree to go green)\n\n41751 Add support for downloading x86 JIT release artifact (cla: yes, tool)\n\n41763 No longer rebuild Routes when MediaQuery updates (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-75", "text": "41780 Revert \u201cDsiable CPU/GPU measurement on BackdropFilter test (#41736)\u201d (cla: yes, team)\n\n41788 Reduce log verbosity by removing individual used files (cla: yes, tool)\n\n41791 Refactor: Make MouseTracker test concise with some utility functions (cla: yes, framework, waiting for tree to go green)\n\n41794 Updated the docstring for SystemNavigator.pop. (cla: yes, framework)\n\n41795 Reland \u201cDsiable CPU/GPU measurement on BackdropFilter test (#41736)\u201d (cla: yes, team)\n\n41799 Improved ios 13 scrollbar fidelity (cla: yes, f: cupertino, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-76", "text": "41803 Fixed media query issues and added test to prevent it from coming back (cla: yes, framework, waiting for tree to go green)\n\n41806 run services tests on the Web (cla: yes, framework, team)\n\n41814 Enables setting of semantics focused and focusable attributes within Focus widgets. (CQ+1, a: accessibility, a: tests, cla: yes, f: material design, framework, team)\n\n41815 [web] Make it clear that lowercase \u201cr\u201d can also perform hot restart (cla: yes, tool, \u2638 platform-web)\n\n41820 Added SystemNavigator.pop \u201canimated\u201d argument. (cla: yes, framework)\n\n41828 Set DEFINES_MODULE=YES in plugin templates (cla: yes, t: xcode, team, tool, waiting for tree to go green, \u2318\u202c platform-mac, \u233a\u202c platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-77", "text": "41832 Plumb \u2013enable-asserts through to frontend_server invocation in debug\u2026 (cla: yes, tool)\n\n41857 Change the dark theme elevation overlay to use the colorScheme.onSurface (cla: yes, f: material design, framework, severe: API break)\n\n41859 CupertinoTheme & CupertinoTextTheme dark mode updates (a: tests, cla: yes, f: cupertino, f: material design, framework, severe: API break, will affect goldens)\n\n41862 Make output directory a build input (cla: yes, tool)\n\n41864 Update BottomAppBar to use elevation overlays when in a dark theme (cla: yes, f: material design, framework)\n\n41879 Make MouseTracker.sendMouseNotifications private (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-78", "text": "41880 Clean up test infrastructure (cla: yes, team, tool)\n\n41882 Increase template Swift version from 4 to 5 (cla: yes, d: examples, team, tool, \u2318\u202c platform-mac, \u233a\u202c platform-ios)\n\n41885 Include embedding transitive dependencies in plugins (cla: yes, tool, waiting for tree to go green)\n\n41889 Clean up ProjectFileInvalidator.findInvalidated a bit (cla: yes, tool)\n\n41892 Fix CupertinoActivityIndicator radius (cla: yes, f: cupertino, framework)\n\n41906 Ensure plugin registrants are generated in build_web (cla: yes, tool, \u2638 platform-web)\n\n41922 Enable more web tests; use blacklist to filter them out (a: tests, cla: yes, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-79", "text": "41931 Revert \u201cFix ReorderableListView\u2019s use of child keys (#41334)\u201d (cla: yes, f: material design, framework)\n\n41933 upload x64 android host release (cla: yes, tool)\n\n41935 [Android 10] Activity zoom transition (cla: yes, f: material design, framework, waiting for tree to go green, \u25a3 platform-android)\n\n41936 Updates packages, including package:multicast_dns. (cla: yes, team, tool)\n\n41942 Use mergeResourcesProvider instead of deprecated mergeResources (cla: yes, tool, waiting for tree to go green)\n\n41945 Revert ActivateAction PR (cla: yes, f: material design, framework)\n\n41946 Do not validate the Android SDK when building an appbundle (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-80", "text": "41952 Send pubspec.yaml back in time to fix flakiness (cla: yes, tool)\n\n41960 Revert \u201creplace package:vm_service_client with package:vm_service in the devicelab project\u201d (cla: yes, team, tool)\n\n41972 Add enableFeedback param to MaterialButton, RawMaterialButton and IconButton (cla: yes, f: material design, framework)\n\n41989 Flutter doctor should require java 1.8+ (cla: yes, tool, waiting for tree to go green)\n\n41996 [web] Always send the route name even if it\u2019s null (cla: yes, f: routes, framework, \u2638 platform-web)\n\n42006 Typos & Style clean up (cla: yes, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-81", "text": "42008 Restructure ProjectFileInvalidator.findInvalidated a bit (cla: yes, tool)\n\n42015 Fix local test failures in flutter_tools (cla: yes, tool, waiting for tree to go green)\n\n42016 [flutter_tool] Re-work analytics events to use labels and values (cla: yes, tool)\n\n42022 Fix smoke test (cla: yes)\n\n42025 Localization refresh (a: internationalization, cla: yes, f: cupertino, f: material design, framework)\n\n42026 Stop leaking iproxy processes (cla: yes, tool)\n\n42028 Make ProjectFileInvalidator.findInvalidated able to use the async FileStat.stat (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-82", "text": "42029 Always embed iOS Flutter.framework build mode version from Xcode configuration (cla: yes, d: examples, t: xcode, team, team: gallery, tool, \u233a\u202c platform-ios)\n\n42030 Revert \u201cAOT support for Linux Desktop I: switch Linux builds to assemble\u201d (cla: yes, tool)\n\n42031 Rewrite MouseTracker\u2019s tracking and notifying algorithm (a: desktop, cla: yes, framework)\n\n42032 Update CupertinoActivityIndicator colors and gradient (cla: yes, f: cupertino, framework, will affect goldens)\n\n42033 Reprise: Dropdown Menu layout respects menu items intrinsic sizes (cla: yes, f: material design, framework)\n\n42035 trying to diagnose failure in CI (cla: yes, tool)\n\n42036 trying to diagnose failure in CI, mark II (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-83", "text": "42037 Diagnose failure in CI, Mark III (cla: yes, tool)\n\n42038 Reland \u201cAOT support for Linux Desktop I: switch Linux builds to assemble\u201d (cla: yes, tool)\n\n42063 More consistent temp directory naming (a: tests, cla: yes, tool)\n\n42064 Refactor sdk_validation_test (cla: yes, tool, waiting for tree to go green)\n\n42076 create gesture recognizers on attach and dispose on detach to avoid leaks (a: quality, cla: yes, f: gestures, framework, waiting for tree to go green)\n\n42091 Skip sdk_validation_test again (cla: yes, tool)\n\n42118 Apply mocks to test command (cla: yes, tool)\n\n42136 Update dartdoc to 0.28.7 (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-84", "text": "42144 Don\u2019t eagerly call runMain when \u2013start-paused is provided to web application (cla: yes, tool)\n\n42162 Expose wait conditions in the public flutter_driver API (a: tests, cla: yes, framework)\n\n42187 Be more verbose when pub fails (cla: yes, tool)\n\n42189 Fix regression with ModalBottomSheets not responding to changes in theme (cla: yes, f: material design, framework)\n\n42203 Shard web tests; enable semantics tests on the Web (CQ+1, cla: yes, team)\n\n42204 Add use_modular_headers! to default Podfile (cla: yes, d: examples, t: xcode, team, team: gallery, tool, \u233a\u202c platform-ios)\n\n42209 Add error logging to flutter generate (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-85", "text": "42209 Add error logging to flutter generate (cla: yes, tool)\n\n42235 Reading deviceId for RawKeyEventDataAndroid event (a: desktop, cla: yes, framework)\n\n42236 [Gallery] Add Material Study app Rally as an example app (cla: yes, d: examples, f: material design, team, team: gallery, waiting for tree to go green)\n\n42243 Improve trailing whitespace message (cla: yes, team, tool, waiting for tree to go green)\n\n42250 SliverAppBar - Configurable overscroll stretch with callback feature & FlexibleSpaceBar support (cla: yes, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n42252 catch argument error from Make (cla: yes, tool)\n\n42253 Change modal barrier to dismissing on tap up (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-86", "text": "42254 Update minimum version to Xcode 10.2 (cla: yes, tool)\n\n42257 Make Pub an interface in the flutter tool (cla: yes, tool)\n\n42260 Small cleanup of web code (cla: yes, tool)\n\n42267 Improve documentation around animations. (cla: yes, framework, waiting for tree to go green)\n\n42276 Revert removal of linux from unpack command. (cla: yes, tool)\n\n42278 Re-land keyboard traversal PRs (cla: yes, f: cupertino, f: material design, framework, team)\n\n42289 Ensure precache web works on dev branch (cla: yes, tool)\n\n42306 Ensure that flutter assets are copied in the AAR (cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-87", "text": "42342 Fix DropdownButton crash when hint and selectedItemBuilder are simultaneously defined (cla: yes, f: material design, framework, severe: crash)\n\n42344 Add onVisible callback to snackbar. (a: accessibility, cla: yes, f: material design, framework, waiting for tree to go green)\n\n42352 Add android.permission.WAKE_LOCK permission to abstract_method_smoke_test (cla: yes, team)\n\n42353 Add \u2013cache-sksl flag to drive and run (cla: yes, tool)\n\n42354 Pass -Ddart.developer.causal_async_stacks=true to frontend_server invocations. (cla: yes, tool)\n\n42360 Add smoke test for the new Android embedding (cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-88", "text": "42364 Wrap dwds in async guard, only catch known error types (cla: yes, tool)\n\n42365 Add font fallback clarification docs (cla: yes, d: api docs, framework)\n\n42366 TextStyle.fontFamily should override fontFamily parameter in ThemeData (cla: yes, f: material design, framework)\n\n42368 Update android semantics test to match existing engine behavior. (a: accessibility, cla: yes, team)\n\n42369 Always fake ProcessManager when you fake Filesystem in tests (cla: yes, tool)\n\n42373 Switch build commands to use process utils (cla: yes, tool)\n\n42376 Add option to precache unsigned mac binaries. (cla: yes, tool)\n\n42378 remove println from flutter.gradle (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-89", "text": "42378 remove println from flutter.gradle (cla: yes, tool)\n\n42379 Partial deflaking of abstract_method_smoke_test (a: tests, cla: yes, team, waiting for tree to go green)\n\n42401 Add support for Android x86_64 ABI to Flutter (cla: yes, tool)\n\n42404 Add isDismissible configuration for showModalBottomSheet (cla: yes, f: material design, framework)\n\n42441 Add transitive dependencies back (cla: yes, tool, waiting for tree to go green)\n\n42445 Fix typo in docs: EdgeInserts->EdgeInsets (a: text input, cla: yes, d: api docs, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-90", "text": "42449 Increase TextField\u2019s minimum height from 40 to 48 (cla: yes, f: material design, framework, severe: API break, will affect goldens)\n\n42454 Fix abstract_method_smoke_test flakiness (a: tests, cla: yes, team, waiting for tree to go green)\n\n42456 Revert removing DropdownMenuItem hint/disabledHint wrapper (cla: yes, f: material design, framework)\n\n42462 Update docker_builder dependencies (cla: yes)\n\n42464 Wait for isolate start before proceeding with expression evaluation tests (cla: yes, tool)\n\n42470 No multiline password fields (cla: yes, f: cupertino, f: material design, framework, severe: API break)\n\n42471 Pass build mode-specific bytecode generation options to frontend_server. (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-91", "text": "42475 Fix semantics testing now that dropdown can take a11y focus again. (a: accessibility, cla: yes, team)\n\n42476 Refactor BuildMode into class, add jit_release configuration (cla: yes, tool)\n\n42478 Revert \u201cRewrite MouseTracker\u2019s tracking and notifying algorithm\u201d (cla: yes, framework)\n\n42479 Make DropdownButton\u2019s disabledHint and hint behavior consistent (cla: yes, f: material design, framework, severe: API break)\n\n42482 Only dismiss dropdowns if the orientation changes, not the size. (cla: yes, f: material design, framework)\n\n42484 Gradient transform (cla: yes, framework, will affect goldens)\n\n42485 Re-landing SliverAnimatedList (a: animation, cla: yes, f: scrolling, framework, severe: new feature, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-92", "text": "42486 Redo: Rewrite MouseTracker\u2019s tracking and notifying algorithm (cla: yes, framework)\n\n42487 refactor depfile usage and update linux rule (cla: yes, tool)\n\n42491 Extra defensive programming for pub modification time assert (cla: yes, tool, waiting for tree to go green)\n\n42496 Roll dart package dependencies (cla: yes, team)\n\n42508 Add Android x64 profile artifacts (cla: yes, tool)\n\n42526 Improve routers performance (cla: yes, framework)\n\n42530 add WAKE_LOCK back to abstract method test (cla: yes, team)\n\n42531 Print correct hostname when web server is launched (cla: yes, tool, \u2638 platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-93", "text": "42533 Disable arrow key focus navigation for text fields (cla: yes, f: cupertino, f: material design, framework)\n\n42538 [flutter_tool] Improve yaml font map validation (cla: yes, tool)\n\n42546 Fix and enable painting tests on the Web (cla: yes, framework, team, tool)\n\n42548 Print message and log event when app isn\u2019t using AndroidX (cla: yes, tool)\n\n42550 Add enableSuggestions flag to TextField and TextFormField (a: text input, cla: yes, f: cupertino, f: material design, framework)\n\n42551 Revert \u201cRoll engine eed171ff3538..00f330068d3e (5 commits) (#42541)\u201d (cla: yes, engine)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-94", "text": "42554 Fix route focusing and autofocus when reparenting focus nodes. (cla: yes, f: material design, framework)\n\n42557 Skip test (cla: yes, tool)\n\n42558 Use placeholder dimensions that reflect the final text layout (cla: yes, framework)\n\n42563 Adding thumb color customisation functionality to CupertinoSlider (cla: yes, f: cupertino, framework)\n\n42597 Deflake wildcard asset test (cla: yes, tool)\n\n42602 Properly throw FlutterError when route builder returns null on CupertinoPageRoute (cla: yes, f: cupertino, framework)\n\n42613 Fix Tooltip implementation of PopupMenuButton (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-95", "text": "42637 Re-enable asserts on Windows integration tests (a: tests, cla: yes, team)\n\n42640 Add more structure to errors (continuation of #34684) (a: tests, cla: yes, f: cupertino, f: material design, framework)\n\n42655 resident_web_runner doesn\u2019t close debug connection (cla: yes, tool)\n\n42656 Catch appInstanceId error (cla: yes, tool)\n\n42668 dispose devices on cleanupAtFinish() for run_cold.dart (cla: yes, tool, waiting for tree to go green)\n\n42676 [web] Update web runner message with flutter.dev/web (cla: yes, tool, waiting for tree to go green)\n\n42683 Optimize focus operations by caching descendants and ancestors. (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-96", "text": "42684 Remove isNewAndroidEmbeddingEnabled flag when reading an existing pro\u2026 (cla: yes, tool)\n\n42686 Update dartdoc to 0.28.8 (cla: yes, team)\n\n42687 Revert \u201cFix and enable painting tests on the Web (#42546)\u201d (cla: yes, framework, team, tool)\n\n42688 Source Code Comment Typo Fixes (cla: yes, framework)\n\n42689 Reland: fix and enable painting web tests (cla: yes, framework, team, tool)\n\n42691 fixing todo comments in flutter tests to include url link. (cla: yes, tool, waiting for tree to go green)\n\n42698 Ensure we stop the status when browser connection is complete (cla: yes, tool)\n\n42699 unpin test and update packages (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-97", "text": "42701 serve correct content type from debug server (cla: yes, tool, \u2638 platform-web)\n\n42708 Test the Android embedding v2 (cla: yes, team, tool)\n\n42709 Test Gradle on Windows (cla: yes, team)\n\n42764 Revert \u201cExpose API for resizing image caches\u201d (cla: yes, framework)\n\n42771 don\u2019t precompile dependencies when building the flutter tool (cla: yes, waiting for tree to go green)\n\n42773 enable rendering tests on the Web (cla: yes, framework, team)\n\n42775 CupertinoSlidingSegmentedControl (cla: yes, f: cupertino, framework)\n\n42777 Fix memory leak in TransitionRoute (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-98", "text": "42779 Fix chip ripple bug \u2014 No longer two ripples (cla: yes, f: material design, framework)\n\n42785 Reland \u201cExpose API for resizing image caches #41415\u201d (cla: yes, framework)\n\n42790 This disables the up/down arrow focus navigation in text fields in a different way. (cla: yes, f: cupertino, f: material design, framework)\n\n42791 fix type error in manifest asset bundle (cla: yes, tool)\n\n42807 Add most of the widget tests; add more web test shards (cla: yes, framework, team)\n\n42808 Run flutter pub get before pod install in platform_view_ios__start_up test (a: tests, cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-99", "text": "42811 Add a Focus node to the DropdownButton, and adds an activation action for it. (cla: yes, f: material design, framework)\n\n42813 Fix NPE in Chrome Device (cla: yes, tool)\n\n42842 Add \u201cnavigator\u201d option to \u201cshowDialog\u201d and \u201cshowGeneralDialog\u201d (cla: yes, f: routes, framework, severe: new feature, waiting for tree to go green)\n\n42854 Revert \u201cDefault colorScheme data in ButtonThemeData (fix for #38655)\u201d (cla: yes, f: material design, framework, waiting for tree to go green)\n\n42857 Fix progress indicators for release/profile builds of web. (cla: yes, tool)\n\n42861 Add repeatCount to RawKeyEventDataAndroid (a: desktop, cla: yes, framework, waiting for tree to go green, \u25a3 platform-android)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-100", "text": "42863 V1.9.1 hotfixes (cla: yes, engine, team, tool)\n\n42867 Use Cirrus credits for billing. (cla: yes, team, team: infra)\n\n42872 Remove use_modular_headers from Podfiles using libraries (cla: yes, d: examples, team, team: gallery, tool)\n\n42873 Update README to include non-mobile targets (cla: yes, team)\n\n42879 Re-implement hardware keyboard text selection. (cla: yes, framework)\n\n42882 Reenable the dartdocs benchmark tracking (cla: yes, team)\n\n42922 Fix typo (cla: no, f: material design, framework)\n\n42924 CupertinoDialogAction is missing super call (cla: yes, f: cupertino, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-101", "text": "42931 separation of hot restart and hotter restart (cla: yes, tool)\n\n42936 Support AppBars with jumbo titles (cla: yes, f: material design, framework)\n\n42951 implement debugTogglePlatform for the web (cla: yes, tool)\n\n42953 Soften layer breakage (cla: yes, framework)\n\n42958 Turn off bitcode for integration tests and add-to-app templates (a: existing-apps, cla: yes, team, tool, \u233a\u202c platform-ios)\n\n42962 Remove linux-x64 unpack logic (cla: yes, tool)\n\n42964 Use PRODUCT_BUNDLE_IDENTIFIER from buildSettings to find correct bundle id on iOS when using flavors (cla: yes, t: xcode, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-102", "text": "42966 expand scope of rethrown gradle errors (cla: yes, tool)\n\n42967 Pad CupertinoAlertDialog with MediaQuery viewInsets (cla: yes, f: cupertino, framework)\n\n42968 Quick fix on material dialog docs (cla: yes, f: material design, framework)\n\n42970 Rename headless server to web server (cla: yes, tool)\n\n42971 re-enable some linux devicelab tests (cla: yes, team)\n\n42972 Do not produce an error when encountering a new type in a service response. (cla: yes, tool)\n\n42977 switch dart2js build to depfile, remove Source.function (cla: yes, tool)\n\n42981 Remove GeneratedPluginRegistrant.java (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-103", "text": "42982 Revert \u201cClean up test infrastructure\u201d (cla: yes, team, tool)\n\n43006 Set default borderRadius to zero in ClipRRect (as documented) (cla: yes, framework, waiting for tree to go green)\n\n43013 Wire up canRequestFocus and skipTraversal in FocusScopeNode (cla: yes, d: examples, framework, team, team: gallery)\n\n43016 ensure we can disable \u2013track-widget-creation in debug mode (cla: yes, tool)\n\n43019 Build only required web tests; fix and enable most of material tests (cla: yes, f: material design, framework, team, tool)\n\n43022 Enable dump-skp-on-shader-compilation in drive (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-104", "text": "43026 temporarily disable system_debug_ios devicelab test (cla: yes, team)\n\n43030 Clean up test infrastructure (cla: yes, team, tool)\n\n43042 add samsungexynos7570 to list of known physical devices (cla: yes, tool)\n\n43080 Indent Kotlin code with 4 spaces (cla: yes, team, tool, waiting for tree to go green)\n\n43149 Disable CI tests that LUCI is failing (1) (cla: yes, team)\n\n43150 Disable CI tests that LUCI is failing (2) (cla: yes, team)\n\n43173 Fix typo in README.md (cla: yes, team)\n\n43180 Adding missing break in plugin validation check (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-105", "text": "43183 Silence presubmit codecov (cla: yes, team)\n\n43187 Ensure android.enableR8 is appended to a new line (cla: yes, tool)\n\n43188 [cleanup] Remove unused files (cla: yes, team)\n\n43193 ButtonBar aligns in column when it overflows horizontally (a: accessibility, cla: yes, f: material design, framework)\n\n43200 remove period from URL so that it opens correctly in vscode (cla: yes, tool)\n\n43207 comment out fastlane test archiving (cla: yes, team)\n\n43213 Add focus nodes, hover, and shortcuts to switches, checkboxes, and radio buttons. (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-106", "text": "43214 For \u2013profile builds on web, still use -O4 but unminified names. (cla: yes, tool)\n\n43217 [flutter_tool] Update analytics policy, send event on disable (cla: yes, tool)\n\n43219 Add devfs for incremental compiler JavaScript bundle (cla: yes, tool, waiting for tree to go green)\n\n43221 Migrate examples to the Android embedding v2 (cla: yes, d: examples, team, team: gallery)\n\n43225 Catch io.StdinException from failure to set stdin echo/line mode (cla: yes, tool)\n\n43226 Implement AlertDialog title/content overflow scroll (a: accessibility, cla: yes, f: material design, framework)\n\n43227 Revert \u201cSkia Gold Support for Local & PreSubmit Testing in package:flutter\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-107", "text": "43235 Revert \u201cExtra defensive programming for pub modification time assert\u201d (cla: yes)\n\n43238 Fixing focus traversal when the node options are empty (a: desktop, cla: yes, framework)\n\n43245 Add smallestScreenSize to android:configChanges in the Android manifest template (cla: yes, tool, waiting for tree to go green)\n\n43246 Tap.dart: Fixes the spacing to the right side of reason (cla: yes, f: gestures, framework)\n\n43281 Add compiler configuration to support dartdevc target (cla: yes, tool)\n\n43282 implement build aot with assemble for Android target platforms (cla: yes, tool)\n\n43286 FadeInImage cacheWidth and cacheHeight support (a: images, cla: yes, framework, severe: new feature)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-108", "text": "43288 V1.9.1 hotfix (cla: yes, engine, framework, team, tool)\n\n43292 initial bootstrap script for incremental compiler support (cla: yes, tool, waiting for tree to go green)\n\n43296 Skip failing test to green build (cla: yes, framework)\n\n43315 Extra defensive programming for pub modification time assert (cla: yes, tool)\n\n43362 Allow rebuilding of docker image, re-enable deploy gallery macos (cla: yes, team, team: infra)\n\n43366 run flutter update-packages \u2013force-upgrade (cla: yes, team)\n\n43367 Revert \u201cAdd focus nodes, hover, and shortcuts to switches, checkboxes, and radio buttons.\u201d (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-109", "text": "43371 Re-land Local & Pre-Submit Support for Skia Gold (a: images, a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green, will affect goldens)\n\n43379 ENABLE_ANDROID_EMBEDDING_V2 isn\u2019t a general thing. (cla: yes, team)\n\n43381 [flutter_tool] Use engine flutter_runner prebuilts (cla: yes, tool, waiting for tree to go green)\n\n43384 Re-Land: Add focus nodes, hover, and shortcuts to switches, checkboxes, and radio buttons. (a: accessibility, cla: yes, f: material design, framework, team)\n\n43388 Depend on specific package versions in module_test (cla: yes, team, waiting for tree to go green)\n\n43390 catch ChromeDebugException from dwds (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-110", "text": "43391 Revert \u201c[Chip] Make sure InkResponse is in the foreground on delete f\u2026 (cla: yes, f: material design, framework)\n\n43401 Handle permission error during flutter clean (cla: yes, tool, waiting for tree to go green)\n\n43402 Handle format error from vswhere (cla: yes, tool)\n\n43403 Handle version and option skew errors (cla: yes, tool)\n\n43422 trivial fixed AboutListTile having an empty icon placeholder when no icon set. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n43436 Handle onError callback with optional argument (cla: yes, tool, waiting for tree to go green)\n\n43438 Revert \u201cEnable dump-skp-on-shader-compilation in drive\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-111", "text": "43448 Don\u2019t html-escape in the plugin registrant templates. (cla: yes, tool, waiting for tree to go green)\n\n43455 Reland \u201cEnable dump-skp-on-shader-compilation in drive (#43022)\u201d (cla: yes, tool)\n\n43458 Support platform-specific test lines (cla: yes, team)\n\n43461 Fixed usage of optional types in swift integration test. (cla: yes, team)\n\n43466 Adding handling of TextInputClient.onConnectionClosed messages handli\u2026 (a: tests, a: text input, cla: yes, framework, severe: API break, waiting for tree to go green, \u2638 platform-web)\n\n43467 Fixed bug where we could accidently call a callback twice. (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-112", "text": "43471 flip track widget creation on by default (cla: yes, tool, waiting for tree to go green)\n\n43479 Refactor gradle.dart (cla: yes, tool)\n\n43511 Improve DropdownButton assert message (cla: yes, f: material design, framework)\n\n43526 Change PopupMenuButton.icon type to Widget (cla: yes, f: material design, framework)\n\n43528 Adjust and refactor all MaterialButton tests into its respective file (cla: yes, f: material design, framework, waiting for tree to go green)\n\n43529 Cupertino web tests (cla: yes, f: material design, framework, team)\n\n43544 Catch AppConnectionException (cla: yes, tool)\n\n43546 Alias upgrade-packages => update-packages (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-113", "text": "43553 Pass environment variables through to xcodebuild (cla: yes, t: xcode, team, team: infra, tool, \u233a\u202c platform-ios)\n\n43557 Revert \u201cAllow rebuilding of docker image, re-enable deploy gallery macos\u201d (cla: yes, team)\n\n43573 Catch MissingPortFile from web tooling. (cla: yes, tool)\n\n43576 Enable usage of experimental incremental compiler for web (cla: yes, tool)\n\n43577 set trace to true for desktop builds (cla: yes, tool)\n\n43586 Ensure Chrome is closed on tab close (cla: yes, tool)\n\n43598 Catch failed daemon startup error (cla: yes, tool)\n\n43599 catch failure to parse FLUTTER_STORAGE_BASE_URL (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-114", "text": "43602 Don\u2019t indefinitely persist file hashes, handle more error conditions (cla: yes, tool)\n\n43611 Revert \u201cMigrate examples to the Android embedding v2\u201d (cla: yes, d: examples, team, team: gallery)\n\n43636 Enable tests that failed due to CupertinoDynamicColor (cla: yes, team)\n\n43643 Reland: Migrate examples new embedding (cla: yes, d: examples, team, team: gallery)\n\n43647 Revert \u201cRe-Land: Add focus nodes, hover, and shortcuts to switches, checkboxes, and radio buttons. (#43384)\u201d (a: accessibility, cla: yes, f: material design, framework, team)\n\n43654 Re-land fix docker build and deploy_gallery-macos (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-115", "text": "43657 Re-Land: Add focus nodes, hover, and shortcuts to switches, checkboxes, and radio buttons. (a: accessibility, cla: yes, f: material design, framework, team)\n\n43658 Added note about design doc template. (cla: yes)\n\n43662 Enable heroes_test.dart on the web matrix (cla: yes, framework, team, work in progress; do not review)\n\n43667 Added a null check for ranges in the sourceReport map. (cla: yes, tool)\n\n43669 Don\u2019t read AndroidManifest.xml if it doesn\u2019t exit (cla: yes, tool, waiting for tree to go green)\n\n43674 Add missing import (cla: yes)\n\n43675 Fix device lab tests (cla: yes)\n\n43676 Allow multiple TimingsCallbacks (cla: yes, framework, severe: performance)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-116", "text": "43677 add libzip cache artifact (cla: yes)\n\n43684 [flutter_runner] Use sky_engine from the topaz tree (cla: yes)\n\n43685 Remove Poller class from flutter_tools (cla: yes)\n\n43689 Revert: Migrate examples new embedding (cla: yes)\n\n43691 Re-enable chrome dev mode tests (cla: yes)\n\n43722 Make selected item get focus when dropdown is opened (cla: yes, f: material design, framework)\n\n43725 Add reloadMethod RPC (cla: yes, tool)\n\n43736 CupertinoPicker minor documentation update (cla: yes, d: api docs, f: cupertino, framework)\n\n43738 Separate DropdownButton and DropdownButtonFormField tests (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-117", "text": "43739 enable avoid_web_libraries_in_flutter (cla: yes, framework)\n\n43742 Adjust and refactor all FlatButton tests into its respective file (cla: yes, f: material design, framework, waiting for tree to go green)\n\n43745 Run update packages \u2013force-upgrade (cla: yes, team)\n\n43748 Gold Performance improvements (a: tests, cla: yes, framework, team)\n\n43753 pass \u2013no-gen-bytecode to aot kernel compiler invocations (cla: yes, tool)\n\n43756 Mark routes as opaque when added without animation (a: animation, cla: yes, f: inspector, f: routes, framework)\n\n43758 Split desktop config fallback variable by platform (a: desktop, cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-118", "text": "43759 [flutter_tool] Teach the tool about local engine Fuchsia artifacts (cla: yes, tool, waiting for tree to go green)\n\n43761 Make test case use mockStopwatch (cla: yes, tool)\n\n43764 Update create.dart (cla: yes, tool, waiting for tree to go green)\n\n43767 check if libimobiledevice executables exist (cla: yes, tool)\n\n43800 de-flake logger test (cla: yes, tool)\n\n43827 Revert \u201cAdded a null check for ranges in the sourceReport map.\u201d (cla: yes, tool)\n\n43841 Update cupertino demos in gallery (cla: yes, d: examples, f: cupertino, framework, team, team: gallery)\n\n43843 Remove print and fix code formatting (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-119", "text": "43848 Don\u2019t allow Disabled InkWells to be focusable (cla: yes, f: material design, framework)\n\n43859 Add convenience accessor for primaryFocus (cla: yes, f: material design, framework, team)\n\n43862 Ensure target platform is passed is always passed (cla: yes, tool)\n\n43865 Reorder show and setEditingState calls to the IMM (cla: yes, framework)\n\n43868 Reland: Migrate examples to the Android embedding v2 (cla: yes, d: examples, team, team: gallery, waiting for tree to go green)\n\n43870 check for instanceof instead of runtimeType (cla: yes, tool)\n\n43876 Refactor flutter.gradle to use assemble directly (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-120", "text": "43885 Revert \u201cReland: Migrate examples to the Android embedding v2\u201d (cla: yes, d: examples, team, team: gallery)\n\n43907 Serve correct mime type on release dev server (cla: yes, tool)\n\n43908 remove no-gen-bytecode flag (cla: yes, tool)\n\n43913 Revert \u201c[flutter_runner] Use sky_engine from the topaz tree (#43684)\u201d (a: tests, cla: yes, framework)\n\n43915 Observe logging from VM service on iOS 13 (a: debugging, cla: yes, tool, \u233a\u202c platform-ios)\n\n43918 CupertinoContextMenu (iOS 13) (cla: yes, f: cupertino, framework)\n\n43927 Fix stdout test (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-121", "text": "43927 Fix stdout test (cla: yes, team)\n\n43932 Update CupertinoSlidingSegmentedControl control/feedback mechanism (cla: yes, f: cupertino, framework)\n\n43934 L10n Simplification (a: internationalization, cla: yes, framework, team, waiting for tree to go green)\n\n43939 Revert \u201cRevert \u201cReland: Migrate examples to the Android embedding v2\u201d\u201d (cla: yes, d: examples, team, team: gallery)\n\n43941 Tweaks after the gradle.dart refactor (cla: yes, tool)\n\n43945 Remove Source.behavior, fix bug in depfile invalidation (cla: yes, tool)\n\n43946 Adding subtitle to ExpansionTile (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-122", "text": "43948 Synchronize modifier keys in RawKeyboard.keysPressed with modifier flags on events. (a: desktop, a: tests, cla: yes, framework)\n\n43950 remove listDartSources (cla: yes, tool)\n\n43952 Require awaiting testbed.run (cla: yes, tool)\n\n43955 Make more spinner tests not flaky (cla: yes, tool)\n\n43959 Respond to TextInputClient.reattach messages. (cla: yes, framework, waiting for tree to go green)\n\n43981 Fix typo in app_bar.dart (cla: yes, f: material design, framework, waiting for tree to go green)\n\n43990 Upgrade dartdoc to 0.29.0 (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-123", "text": "43994 flutter build aar should also build plugins as AARs (cla: yes, team, tool)\n\n43997 Revert: Migrate examples to the Android embedding v2 (cla: yes, d: examples, team, team: gallery)\n\n44003 Revert \u201cImplement AlertDialog title/content overflow scroll #43226\u201d (cla: yes, f: material design, framework)\n\n44010 dev/ci/README.md update (cla: yes, team, waiting for tree to go green)\n\n44011 Move the plugin registrant to io.flutter.plugins and add the @Keep an\u2026 (cla: yes, tool, waiting for tree to go green)\n\n44017 Asset server fix for sourcemaps (cla: yes, tool)\n\n44019 Ignore generated .project files for VSCode Java Plugin (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-124", "text": "44026 Exit tool if a plugin only supports the embedding v2 but the app doesn\u2019t (cla: yes, tool, waiting for tree to go green)\n\n44027 Allow specifying device-vmservice-port and host-vmservice-port (cla: yes, tool)\n\n44028 Support \u2013no-resident on the web (cla: yes, tool)\n\n44029 Use alphabetic baselines for layout of InputDecorator (cla: yes, f: material design, framework)\n\n44031 Added tests for the new Android heading semantic flag to android_semantics_testing (a: accessibility, cla: yes, team)\n\n44032 Copy chrome preferences to seeded data dir (cla: yes, tool)\n\n44043 Add Android embedding version analytics (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-125", "text": "44052 Remove flutter_tool services code (cla: yes, tool)\n\n44065 Build ios framework (cla: yes, team, tool)\n\n44068 Fix typo in tabs.dart (cla: yes, f: material design, framework, waiting for tree to go green)\n\n44076 Typo on comments (cla: yes, f: material design, framework, waiting for tree to go green)\n\n44083 Add \u2013dart-define option (cla: yes, tool, waiting for tree to go green)\n\n44119 [flutter_tool] \u2013flutter_runner will download the debug symbols (cla: yes, tool)\n\n44127 build aar prints how to consume the artifacts (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-126", "text": "44130 Add command key bindings to macOS text editing and fix selection. (a: desktop, cla: yes, customer: octopod, framework, \u2318\u202c platform-mac)\n\n44139 Reland: Migrate examples to the Android embedding v2 (cla: yes, d: examples, team, team: gallery, waiting for tree to go green)\n\n44146 Remove flutter.yaml migration code (cla: yes, tool)\n\n44147 Remove plugin imports from module_test_ios (a: tests, cla: yes, team)\n\n44149 Apply minimumDate & maximumDate constraints in CupertinoDatePicker date mode (cla: yes, f: cupertino, framework)\n\n44150 Manually roll engine to unred the tree (cla: yes, engine)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-127", "text": "44151 Add version to fuchsia_remote_debug_protocol (cla: yes, team, waiting for tree to go green)\n\n44160 Wire selectedItemBuilder through DropdownButtonFormField (cla: yes, f: material design, framework)\n\n44166 Add v1 plugin register function into v2 plugin template (cla: yes, team, tool)\n\n44169 Adjust and refactor all RaisedButton tests into its respective file (cla: yes, f: material design, framework)\n\n44189 make some BuildContext methods generics (cla: yes, d: examples, framework, severe: API break, team, team: gallery)\n\n44194 Revert \u201c[Gallery] Add Material Study app Rally as an example app\u201d (cla: yes, d: examples, f: material design, team, team: gallery)\n\n44200 Make ProjectFileInvalidator injectable (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-128", "text": "44201 Temporarily bring the embedding dependencies in the Flutter gallery (cla: yes, d: examples, team, team: gallery)\n\n44210 Revert \u201cExit tool if a plugin supports the embedding v2 but the app d\u2026 (cla: yes, tool)\n\n44214 Fix v1 embedding support heuristic for plugins (cla: yes, tool, waiting for tree to go green)\n\n44217 Moving pointer event sanitizing to engine. (cla: yes, customer: crowd, customer: dream (g3), customer: headline, framework)\n\n44221 Use platform appropriate filepaths (cla: yes, tool)\n\n44223 Update Stocks example using i18n tool (cla: yes, d: examples, team)\n\n44227 [flutter_tool] Screenshot command must require device only for _kDeviceType (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-129", "text": "44233 Remove yield from inherited model (cla: yes, framework)\n\n44243 Build local maven repo when using local engine (cla: yes, tool)\n\n44263 Allow web server device to use extension if started with \u2013start-paused (cla: yes, team, tool)\n\n44268 Switch from using app.progress to app.webLaunchUrl for passing web launch urls (cla: yes, tool)\n\n44277 Revert \u201cRoll engine 6c763bb551cb..9726b4cb99d3 (4 commits)\u201d (cla: yes, engine)\n\n44278 Do not pass obsolete \u2013strong option to front-end server (cla: yes, tool)\n\n44279 link platform should be true for profile (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-130", "text": "44281 revert add new enum change (cla: yes, framework, team, tool)\n\n44289 SliverOpacity (cla: yes, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n44292 Manual roll for add new enum roll back (cla: yes, engine)\n\n44296 ModalBarrier and Drawer barrier prevents mouse events (a: desktop, cla: yes, f: gestures, f: material design, framework)\n\n44299 Re-enable Pesto in profile/release mode (cla: yes, d: examples, team, team: gallery)\n\n44301 Don\u2019t print how to consume AARs when building plugins as AARs (cla: yes, tool)\n\n44302 Don\u2019t add x86 nor x64 when building a local engine in debug mode (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-131", "text": "44307 Fixing local golden output flake (a: tests, cla: yes, framework, team: flakes)\n\n44308 Add more flutter build ios-framework tests before the impending jonahpocalypse (cla: yes, team, waiting for tree to go green)\n\n44312 Demonstrate that artifact invalidation works (cla: yes, team)\n\n44313 l10n tool improvements, stocks app refresh (a: internationalization, cla: yes, d: examples, team)\n\n44317 CupertinoDynamicColor improvements (a: tests, cla: yes, d: examples, f: cupertino, framework, team, team: gallery)\n\n44318 Remove TODO that\u2019s done (cla: yes, documentation, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-132", "text": "44324 Add swift_versions to plugin template podspec, include default CocoaPod version (cla: yes, team, tool, \u2318\u202c platform-mac, \u233a\u202c platform-ios)\n\n44328 Adjust and refactor all OutlineButton tests into its respective file (cla: yes, f: material design, framework, waiting for tree to go green)\n\n44344 Update packages to get latest dwds in flutter_tools (cla: yes, team)\n\n44351 [Material] Update the Slider and RangeSlider to the latest Material spec (cla: yes, d: examples, f: material design, framework, team, team: gallery)\n\n44360 [flutter_tool] Stream artifact downloads to files (cla: yes, tool)\n\n44365 Turn off docs upload temporarily (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-133", "text": "44365 Turn off docs upload temporarily (cla: yes, team)\n\n44369 Flip enable-android-embedding-v2 flag (cla: yes, severe: API break, team, tool, waiting for tree to go green)\n\n44371 Revert \u201cTurn off docs upload temporarily (#44365)\u201d (cla: yes, team)\n\n44391 Segmented control quick double tap fix (cla: yes, f: cupertino, framework)\n\n44396 Revert \u201cEnable usage of experimental incremental compiler for web\u201d (cla: yes, team, tool)\n\n44400 Reland: enable usage of experimental web compiler (cla: yes, team, tool)\n\n44408 Remove no longer needed clean up code (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-134", "text": "44410 Add macOS fn key support. (cla: yes, framework, team)\n\n44413 Turn off docs upload temporarily (cla: yes, team)\n\n44421 switch web test to macOS (cla: yes, team)\n\n44422 Remove TextRange, export it from dart:ui (cla: yes, framework)\n\n44447 implicit-casts:false on flutter_tools/lib (cla: yes, tool)\n\n44451 Use raw string for l10n description (a: internationalization, cla: yes, team, waiting for tree to go green)\n\n44454 Re-enable docs uploading (cla: yes, team)\n\n44457 [flutter_tool] Update Fuchsia SDK (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-135", "text": "44463 Revert \u201cDemonstrate that artifact invalidation works\u201d (cla: yes, team)\n\n44466 Update dartdoc to 0.29.1 (cla: yes, team)\n\n44467 Make sure all our .dart files have license headers (a: accessibility, cla: yes, d: examples, f: cupertino, f: material design, team, team: gallery)\n\n44468 Fix test for null flutter root (cla: yes, tool)\n\n44469 Deprecation cleanup in flutter_tools (cla: yes, tool)\n\n44473 l10n tool improvements, stocks app i18n refresh (a: internationalization, cla: yes, d: examples, team)\n\n44479 Adding flutter_goldens tests to misc shards (a: tests, cla: yes, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-136", "text": "44481 Provide specific field to accept depfiles in target class (cla: yes, tool)\n\n44487 reland add new enum change (#44281) (a: existing-apps, cla: yes, framework, team)\n\n44488 Refactorings to testbed.run and testbed.test (cla: yes, tool)\n\n44490 Fix \u201cnode._relayoutBoundary == _relayoutBoundary\u201d crash (cla: yes, framework, waiting for tree to go green)\n\n44499 Show a warning when a module uses a v1 only plugin (cla: yes, tool, waiting for tree to go green)\n\n44534 Improve performance of build APK (~50%) by running gen_snapshot concurrently (cla: yes, team, tool)\n\n44551 Remove new unused elements (a: accessibility, cla: yes, f: cupertino, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-137", "text": "44574 Print a message when modifying settings that you may need to reload IDE/editor (cla: yes, tool)\n\n44576 [ci] Use the latest Cirrus Image for macOS (cla: yes)\n\n44584 Update meta to 1.1.8 (cla: yes, team)\n\n44605 Changing RenderEditable.textAlign doesn\u2019t break hot reload anymore (a: text input, cla: yes, framework, t: hot reload)\n\n44608 Reduce some direct package:archive usage (cla: yes, tool)\n\n44610 Error Message for createState assertion (a: error message, a: quality, cla: yes, framework, severe: crash, waiting for tree to go green)\n\n44611 Convert to TextPosition for getWordBoundary (cla: yes, framework)\n\n44613 Revert engine rolls. (cla: yes, engine)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-138", "text": "44613 Revert engine rolls. (cla: yes, engine)\n\n44617 Make disposing a ScrollPosition with pixels=null legal (cla: yes, framework, waiting for tree to go green)\n\n44618 Update our deprecation style. (a: tests, cla: yes, f: cupertino, f: material design, framework, team, work in progress; do not review)\n\n44619 Update Gold to fallback on skipping comparator when offline (a: annoyance, a: quality, a: tests, cla: yes, framework, team: flakes)\n\n44620 Bump memory requirements for tool_tests-general-linux (cla: yes)\n\n44622 Track and use fallback TextAffinity for null affinity platform TextSelections. (cla: yes, framework)\n\n44625 Release startup lock during long-lived build ios framework (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-139", "text": "44633 Turn on bitcode for integration tests and add-to-app templates (a: existing-apps, a: tests, cla: yes, team, tool)\n\n44637 Attach looks at future observatory URIs (cla: yes, tool, waiting for tree to go green)\n\n44638 Add module to create template help text (a: existing-apps, cla: yes, tool)\n\n44736 Check in new diffs to material localizations (a: internationalization, cla: yes, f: material design)\n\n44743 Sort Localization generation output (a: internationalization, cla: yes, f: cupertino, f: material design, team)\n\n44744 Ensure web-server does not force usage of dwds (cla: yes, tool)\n\n44746 Remove chrome device web integration test (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-140", "text": "44746 Remove chrome device web integration test (cla: yes, team)\n\n44753 Always link desktop platforms (cla: yes, tool)\n\n44758 Canonicalize locale string in gen_l10n.dart (a: internationalization, cla: yes, team)\n\n44761 Sort locales and method/properties/getters alphabetically (a: internationalization, cla: yes, d: examples, team)\n\n44772 Test framework for analyze.dart (cla: yes, team, waiting for tree to go green)\n\n44776 More license header fixes (cla: yes, d: examples, team, team: gallery)\n\n44778 Revert \u201cImplement PageView using SliverLayoutBuilder, Deprecate RenderSliverFillViewport (#37024)\u201d (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-141", "text": "44782 Updated flutter/examples to further conform to new embedding: removed references to FlutterApplication, deleted all MainActivity\u2019s that were not necessary, removed all direct invocations of GeneratedPluginRegistrant. (#22529) (cla: yes, d: examples, team, team: gallery)\n\n44783 Forward ProcessException to error handlers (cla: yes, tool)\n\n44787 Fix snippets to include element ID in the output sample. (cla: yes, f: material design, team)\n\n44790 Roll engine manual 31cd2dfca22a\u2026b358dc58fbce (39 commits) (cla: yes, engine, framework)\n\n44797 Build AAR for all build variants by default (cla: yes, tool)\n\n44830 Update manual_tests to be able to run on macOS/web (a: desktop, cla: yes, f: material design, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-142", "text": "44843 Revert \u201cAllow specifying device-vmservice-port and host-vmservice-port\u201d (cla: yes, tool)\n\n44844 Properly interpret modifiers on GLFW key events (a: desktop, cla: yes, framework, \ud83d\udc27 platform-linux)\n\n44853 Reland: Allow specifying device-vmservice-port and host-vmservice-port (cla: yes, tool)\n\n44867 FocusableActionDetector widget (cla: yes, f: material design, framework)\n\n44868 Catch and display version check errors during doctor (a: first hour, cla: yes, tool)\n\n44870 Add -runFirstLaunch hint text (a: first hour, cla: yes, t: xcode, tool)\n\n44878 Fake locale in doctor_test (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-143", "text": "44882 Update package test (cla: yes, team)\n\n44907 [Gallery] Reland Add Material Study app Rally as an example app (cla: yes, d: examples, f: material design, team, team: gallery, waiting for tree to go green)\n\n44920 [flutter_tool] Various fixes for \u2018run\u2019 for Fuchsia. (cla: yes, d: examples, team, team: gallery, tool)\n\n44933 [flutter_tool] Don\u2019t crash when failing to delete downloaded artifacts (cla: yes, tool)\n\n44935 [flutter_runner] Use sky_engine from the topaz tree (a: tests, cla: yes, framework)\n\n44947 Revert \u201creland add new enum change (#44281) (#44487)\u201d (cla: yes, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-144", "text": "44965 Scroll scrollable to keep focused control visible. (a: desktop, cla: yes, f: scrolling, framework)\n\n44966 Don\u2019t log stack traces to console on build failures (cla: yes, tool)\n\n44967 Try a mildly prettier FlutterError and make it less drastic in release mode (cla: yes, framework, waiting for tree to go green)\n\n44996 implicit-casts:false in flutter_test (a: tests, cla: yes, framework)\n\n45000 Manual engine roll to b2640d97e7e8034f28b4e7b92c15b0824e433897 (cla: yes, engine, framework)\n\n45011 catch IOSDeviceNotFoundError in IOSDevice.startApp() (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-145", "text": "45012 reland add new enum change (cla: yes, framework, team)\n\n45050 Add a perf test for picture raster cache (cla: yes, severe: performance, t: flutter driver, team)\n\n45080 Ignore vscode Java plugin auto-generated files (cla: yes, team)\n\n45081 Remove duplicated expect from text field test (cla: yes, f: material design, framework)\n\n45083 Fix draggable scrollable sheet scroll notification (cla: yes, framework, waiting for tree to go green)\n\n45115 fix ios_add2app_life_cycle license (cla: yes, team)\n\n45119 revert added lifecycle enum (cla: yes, framework, team)\n\n45124 Analyze dartpad (cla: yes, f: cupertino, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-146", "text": "45125 Gallery Typo Fix (cla: yes, d: examples, team, team: gallery)\n\n45126 Enable iOS platform views for Flutter Gallery (cla: yes, d: examples, team, team: gallery)\n\n45127 SliverIgnorePointer (cla: yes, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n45133 reland add lifecycle enum and fix the scheduleforcedframe (cla: yes, framework, team)\n\n45135 Add option to delay rendering the first frame (cla: yes, framework, severe: API break)\n\n45136 Remove FLUTTER_DEVICELAB_XCODE_PROVISIONING_CONFIG code paths (a: tests, cla: yes, team, team: infra)\n\n45139 Update Android CPU device detection (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-147", "text": "45139 Update Android CPU device detection (cla: yes, tool)\n\n45141 Revert \u201c[flutter_runner] Use sky_engine from the topaz tree (#44935)\u201d (a: tests, cla: yes, framework)\n\n45145 cache sdkNameAndVersion logic for web devices (cla: yes, tool)\n\n45151 fix type errors (cla: yes, tool)\n\n45153 implicit-casts:false on flutter_tools (cla: yes, tool)\n\n45168 Allow plural localized strings to not specify every case (a: internationalization, cla: yes, team)\n\n45172 Fix device daemon test when desktop or web are enabled (a: tests, cla: yes, tool)\n\n45178 Increase memory from 8->10GB for tool_tests-commands-linux (a: tests, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-148", "text": "45180 Add the rally_assets package to Gallery\u2019s BUILD.gn (cla: yes, d: examples, team, team: gallery)\n\n45187 [flutter_tool] Builds aot for Fuchsia release and jit product for jit-release. (cla: yes, tool)\n\n45189 Remove chmod to make Flutter framework headers unwritable (cla: yes, tool)\n\n45192 Roll engine to f4fba66c2fad1c1d5705ea0734ee4250211f6757 (cla: yes, engine)\n\n45200 Spell check of Flutter docs (cla: yes, d: api docs, documentation, team)\n\n45203 Roll engine f4fba66c2fad..c812a62b8810 (4 commits) (cla: yes, engine)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-149", "text": "45211 Revert \u201cAttach looks at future observatory URIs\u201d (cla: yes, tool)\n\n45212 Upgrade gauge for debugging (cla: yes, team, team: infra)\n\n45215 Remove URLs in deprecation annotation (cla: yes, team)\n\n45217 Roll engine c812a62b8810..2d35b4ec1f04 (4 commits) (cla: yes, engine)\n\n45228 Reland: Attach looks at future observatory URIs (cla: yes, tool)\n\n45236 Improve time to development by initializing frontend_server concurrently with platform build (cla: yes, tool)\n\n45237 Revert \u201cAttach looks at future observatory URIs\u201d (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-150", "text": "45239 implicit-casts:false in fuchsia_remote_debug_protocol (cla: yes, tool, waiting for tree to go green)\n\n45240 implicit-casts:false in flutter_web_plugins (cla: yes)\n\n45249 implicit-casts:false in flutter_goldens and flutter_goldens_client (cla: yes)\n\n45259 Add minimum macOS application to the Flutter Gallery (cla: yes, d: examples, team, team: gallery)\n\n45260 Revert \u201creland add lifecycle enum and fix the scheduleforcedframe\u201d (cla: yes, framework, team)\n\n45264 Add macOS hot reload test (cla: yes, team)\n\n45268 Revert \u201c[Material] Update the Slider and RangeSlider to the latest Material spec\u201d (cla: yes, d: examples, f: material design, framework, team, team: gallery)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-151", "text": "45279 Revert \u201c[Gallery] Add Material Study app Rally as an example app\u201d (cla: yes, d: examples, team, team: gallery)\n\n45282 [fuchsia] Reland use sky_engine from Topaz (a: tests, cla: yes, framework)\n\n45286 Fix experimental incremental web compiler for Windows (cla: yes, tool)\n\n45291 Revert \u201cReduce some direct package:archive usage\u201d (cla: yes, tool)\n\n45303 Allow unknown fields in pubspec plugin section (cla: yes, tool)\n\n45307 Reland: Attach looks at future observatory URIs (cla: yes, tool, waiting for tree to go green)\n\n45317 de-null dartDefines in daemon mode (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-152", "text": "45319 catch parse error from corrupt config (cla: yes, tool)\n\n45320 Remove Flags (cla: yes, tool)\n\n45349 Revert \u201c[flutter_tool] Builds aot for Fuchsia release and jit product for jit-release.\u201d (cla: yes, tool)\n\n45350 Reland: [flutter_tool] Fuchsia AOT builds (cla: yes, tool)\n\n45353 Revert \u201cAdd the rally_assets package to Gallery\u2019s BUILD.gn (#45180)\u201d (cla: yes, d: examples, team, team: gallery)\n\n45362 Add widget of the week video embeddings (cla: yes, f: material design, framework)\n\n45364 Allow a no-op default_package key for a plugin platform (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-153", "text": "45379 Add .flutter-plugins-dependencies to the project, which contains the app\u2019s plugin dependency graph (cla: yes, team, tool, waiting for tree to go green)\n\n45385 Revert \u201cAdd option to delay rendering the first frame\u201d (cla: yes, framework)\n\n45392 [ci] more resources to Windows tasks (cla: yes)\n\n45407 Don\u2019t crash if the tool cannot delete asset directory (cla: yes, tool)\n\n45412 Revert \u201ccatch parse error from corrupt config\u201d (cla: yes, tool)\n\n45414 Reland handle corrupt config file (cla: yes, tool)\n\n45422 Revert \u201cImprove time to development by initializing frontend_server concurrently with platform build\u201d (cla: yes, tool)\n\n45430 Drops detached message until we can handle it properly (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-154", "text": "45442 Engine roll to include SkRRect fix (cla: yes, engine)\n\n45455 Disable tests that fail on non-master branches (cla: yes, team)\n\nPRs closed in this release of flutter/engine\n\nFrom Sun Aug 19 17:37:00 2019 -0700 to Mon Nov 25 12:05:00 2019 -0800\n\n8507 Add texture support for macOS shell. (affects: desktop, cla: yes, platform-macos, waiting for customer response)\n\n9386 [glfw] Send the glfw key data to the framework. (affects: desktop, cla: yes, glfw)\n\n9498 Notify framework to clear input connection when app is backgrounded (#35054). (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-155", "text": "9806 Reuse texture cache in ios_external_texture_gl. (cla: yes)\n\n9864 Add capability to add AppDelegate as UNUserNotificationCenterDelegate (cla: yes)\n\n9888 Provide dart vm initalize isolate callback so that children isolates belong to parent\u2019s isolate group. (cla: yes)\n\n10154 Started taking advantage of Skia\u2019s new copyTableData to avoid superfluous copies. (cla: yes)\n\n10182 Made flutter startup faster by allowing initialization to be parallelized (cla: yes)\n\n10326 copypixelbuffer causes crash (cla: yes)\n\n10670 Expose LineMetrics in dart:ui (affects: text input, brand new feature, cla: yes)\n\n10814 Reland remove kernel sdk script (cla: yes, platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-156", "text": "10945 De-dup FILE output for each license (cla: yes)\n\n11031 sync web engine; run web engine tests (cla: yes)\n\n11035 Roll angle licenses (cla: yes)\n\n11041 Add a BroadcastStream to FrameTiming (cla: yes)\n\n11049 Release _ongoingTouches when FlutterViewController dealloc (cla: yes)\n\n11062 Provide a placeholder queue ID for the custom embedder task runner. (cla: yes)\n\n11063 Update ExternalViewEmbedder class comment. (cla: yes)\n\n11064 Reland \u201cTrack detailed LibTxt metrics with LineMetrics(#10127)\u201d (cla: yes)\n\n11070 Platform View implemenation for Metal (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-157", "text": "11070 Platform View implemenation for Metal (cla: yes)\n\n11210 Add Chrome to Dockerfile (cla: yes)\n\n11222 [b/139487101] Dont present session twice (cla: yes)\n\n11224 Update metal layer drawable size on relayout. (cla: yes)\n\n11226 Make firebase testlab always pass (cla: yes)\n\n11228 Re-enable firebase test and don\u2019t use google login (cla: yes)\n\n11230 Update tflite_native and language_model revisions to match the Dart SDK (cla: yes)\n\n11239 Remove dart entrypoint Intent parameter from FlutterActivity. (#38713) (cla: yes)\n\n11255 Migrate Embedder API documentation to Doxygen format. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-158", "text": "11256 Upgrade compiler to Clang 10. (cla: yes)\n\n11265 make it possible to disable debug symbols stripping (cla: yes)\n\n11270 Reset NSNetService delegate to nil\uff0cwhen stop service. (cla: yes)\n\n11283 Fix objects equal to null not being detected as null (cla: yes)\n\n11300 Do not Prepare raster_cache if view_embedder is present (cla: yes)\n\n11305 Fix a segfault in EmbedderTest.CanSpecifyCustomTaskRunner (cla: yes)\n\n11306 Set FlutterMacOS podspec min version to 10.11 (cla: yes, waiting for tree to go green)\n\n11309 Fix change_install_name.py to be GN-friendly (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-159", "text": "11310 When using a custom compositor, ensure the root canvas is flushed. (cla: yes)\n\n11315 Do not add null task observers (cla: yes)\n\n11316 [lsc] Remove fuchsia.net.SocketProvider (cla: yes)\n\n11319 Add tests for platform views (cla: yes)\n\n11322 [fuchsia] Wire up OpacityLayer to Scenic (cla: yes)\n\n11324 Clean up Windows and Linux build output (cla: yes)\n\n11327 [Windows] Update API for alternative Windows shell platform implementation (cla: yes)\n\n11330 Remove engine hash from the output artifact (cla: yes)\n\n11337 Reference the Flutter framework instead of the dylib in iOS tests. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-160", "text": "11345 [Android] Write MINIMAL_SDK required to use PlatformViews to exception message (cla: yes)\n\n11350 Firebase test for Platform Views on iOS (cla: yes)\n\n11355 update sim script (cla: yes)\n\n11356 Remove engine hash from pom filename (cla: yes)\n\n11357 Rename first frame method and notify FlutterActivity when full drawn (#38714 #36796). (cla: yes)\n\n11359 Dry up fixture comparison in embedder unit-tests. (cla: yes)\n\n11360 build legacy web SDK (cla: yes)\n\n11361 Include Java stack trace in method channel invocations (cla: yes)\n\n11367 Make message loop task entry containers thread safe (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-161", "text": "11367 Make message loop task entry containers thread safe (cla: yes)\n\n11368 Switch to an incremental runloop for GLFW (cla: yes)\n\n11374 Update scenarios readme (cla: yes)\n\n11380 Use App.framework in macOS FlutterDartProject (cla: yes)\n\n11382 Trivial: remove empty line in the pom file (cla: yes)\n\n11384 Account for root surface transformation on the surfaces managed by the external view embedder. (cla: yes)\n\n11386 Allow non-resizable windows in GLFW embedding (cla: yes)\n\n11388 Allow overriding the GLFW pixel ratio (cla: yes)\n\n11390 preventDefault on touchend to show iOS keyboard (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-162", "text": "11392 Wire up software rendering in the test compositor. (cla: yes)\n\n11394 Avoid root surface acquisition during custom composition with software renderer. (cla: yes)\n\n11395 Remove deprecated ThreadTest::GetThreadTaskRunner and use the newer CreateNewThread API. (cla: yes)\n\n11413 Ios simulator unittests seem to not consider the full compilation unit (cla: yes)\n\n11416 Shrink cirrus docker image: reduce RUN count, apt-get clean (cla: yes)\n\n11419 Support non-60 refresh rate on PerformanceOverlay (cla: yes)\n\n11420 Fix touchpad scrolling on Chromebook (cla: yes)\n\n11421 sync Flutter Web engine to the latest (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-163", "text": "11421 sync Flutter Web engine to the latest (cla: yes)\n\n11423 Add tracing of the number of frames in flight in the pipeline. (cla: yes)\n\n11427 Skip empty platform view overlays. (cla: yes)\n\n11436 update method for skia (cla: yes)\n\n11441 Android 10+ View.setSystemGestureExclusionRects (cla: yes, platform-android)\n\n11449 Roll buildroot and update gn script for bitcode_marker (cla: yes)\n\n11451 Android 10+ View.getSystemGestureExclusionRects (cla: yes, platform-android)\n\n11456 Update the ui.LineMetrics.height metric to be more useful to external users (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-164", "text": "11466 Assert that the JUnit tests are running on Java 8 (cla: yes, waiting for tree to go green)\n\n11473 Add missing newline at EOF (cla: yes)\n\n11475 buildfix: support build windows release/profile mode(#32746) (cla: yes)\n\n11483 Roll buildroot to 58d85da77cf1d5c668d185570fa8ed3d2e1a1ab5 (cla: yes)\n\n11489 Ensure trailing newline before EOF in C++ sources (cla: yes)\n\n11492 Roll third_party/benchmark to a779ffce872b4c811beef482e18bd0b63626aa42 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-165", "text": "11514 Update label of Fuchsia FIDL targets. (cla: yes)\n\n11520 Bitcode only for release (cla: yes)\n\n11522 Revert \u201cReuse texture cache in ios_external_texture_gl. (#9806)\u201d (cla: yes)\n\n11524 Reuse texture cache in ios_external_texture_gl (cla: yes)\n\n11528 Strip bitcode from gen_snapshot (cla: yes)\n\n11530 Optionally strip bitcode when creating ios framework (cla: yes)\n\n11537 Add check to enable metal for import (cla: yes)\n\n11550 Make Skia cache size channel respond with a value (cla: yes)\n\n11554 make engine, ui, and sdk rewriter inputs of dill construction (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-166", "text": "11576 Minor tweaks to the Doxygen theme. (cla: yes)\n\n11622 Include from font_asset_provider (cla: yes)\n\n11635 [flutter_runner] Port Expose ViewBound Wireframe Functionality (cla: yes)\n\n11636 [fidl][flutter_runner] Port Migrate to new fit::optional compatible APIs (cla: yes)\n\n11638 Update CanvasSpy::onDrawEdgeAAQuad for Skia API change (cla: yes)\n\n11640 remove Web test blacklist; all tests should pass now (cla: yes)\n\n11649 [flutter] Port: Run handle wait completers on the microtask queue (cla: yes)\n\n11652 iOS platform view mutation XCUITests (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-167", "text": "11654 Append newlines to EOF of all translation units. (cla: yes)\n\n11655 Don\u2019t crash while loading improperly formatted fonts on Safari (cla: yes)\n\n11669 Add style guide and formatting information (cla: yes)\n\n11717 Return a JSON value for the Skia channel (cla: yes)\n\n11720 Revert \u201cNotify framework to clear input connection when app is backgrounded (#35054) (#9498)\u201d (cla: yes)\n\n11722 Quote the font family name whenever setting the font-family property. (cla: yes)\n\n11732 last flutter web sync: cc38319841 (cla: yes)\n\n11736 Add wasm to sky_engine (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-168", "text": "11736 Add wasm to sky_engine (cla: yes)\n\n11776 [flutter_runner] Port over all the changes to the dart_runner cmx files (cla: yes)\n\n11783 completely strip bitcode (cla: yes)\n\n11784 Roll fuchsia/sdk/core/linux-amd64 from -UaaS\u2026 to fSXZ0\u2026 (cla: yes)\n\n11790 Roll fuchsia/clang/linux-amd64 from wGyr4\u2026 to -mnHl\u2026 (cla: yes)\n\n11792 Started logging warnings if we drop platform messages. (cla: yes)\n\n11795 Add a good reference source for font metrics. (cla: yes)\n\n11796 Provide a hook for a plugin handler to receive messages on the web (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-169", "text": "11798 Manage resource and onscreen contexts using separate IOSGLContext objects (cla: yes)\n\n11799 Let java unit tests build with autoninja (cla: yes)\n\n11802 Adjust iOS frame start times to match the platform info (cla: yes)\n\n11804 Incorporate View.setSystemGestureExclusionRects code review feedback from #11441 (cla: yes, platform-android)\n\n11807 Fix deleting Thai vowel bug on iOS (cla: yes)\n\n11808 Annotate nullability on FlutterEngine to make swift writing more ergonomic (cla: yes)\n\n11817 Smooth out iOS irregular input events delivery (cla: yes)\n\n11828 [Windows] Address #36422 by adding a context for async resource uploading (affects: desktop, cla: yes, platform-windows)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-170", "text": "11835 [CFE/VM] Fix merge/typo for bump to kernel version 29 (cla: yes)\n\n11839 Remove ENABLE_BITCODE from Scenarios test app (affects: tests, cla: yes)\n\n11841 Revert \u201cAdd a BroadcastStream to FrameTiming (#11041)\u201d (cla: yes)\n\n11842 Fix RTL justification with newline by passing in full justify tracking var (cla: yes)\n\n11844 Updated API usage in scenario app by deleting unnecessary method. (cla: yes)\n\n11847 Add a sample unit test target to flutter runner (cla: yes)\n\n11849 Support building standalone far packages with autogen manifests (cla: yes)\n\n11875 [flutter_runner] Add common libs to the test far (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-171", "text": "11877 Finish plumbing message responses on method channels (cla: yes)\n\n11880 Handle new navigation platform messages (cla: yes, platform-web)\n\n11883 LTO fuchsia binaries (cla: yes)\n\n11886 remove extra redundant channels setup in iOS embedding engine (cla: yes)\n\n11890 Add some AppLifecycleTests (CQ+1, cla: yes)\n\n11893 Add @Keep annotation (cla: yes)\n\n11899 Improve input method and Unicode character display(#30661) (cla: yes)\n\n11902 Remove un-needed FragmentActivity import statements to facilitate proguard. (cla: yes)\n\n11912 Document dependencies and remove support-v13 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-172", "text": "11913 Added new lifecycle enum (CQ+1, cla: yes, prod: API break, waiting for tree to go green)\n\n12010 option for \u2013no-lto for fuchsia (CQ+1, cla: yes, waiting for tree to go green)\n\n12011 Cherry-picks for 1.9.1 (cla: yes)\n\n12016 [flutter_runner] Kernel platform files can now be built in topaz (cla: yes)\n\n12023 Fix multi span text ruler cache lookup failure. (cla: yes)\n\n12026 [flutter_runner] Plumb Flutter component arguments to the Dart entrypoint (cla: yes)\n\n12034 [flutter_runner] Refactor our build rules to make them more inline with topaz (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-173", "text": "12048 [flutter_runner] Generate symbols for the Dart VM profiler (cla: yes)\n\n12054 [flutter_runner] Port the accessibility bridge from Topaz (cla: yes)\n\n12055 Revert \u201cManage resource and onscreen contexts using separate IOSGLCon\u2026 (cla: yes)\n\n12058 Roll fuchsia/clang/linux-amd64 from -mnHl\u2026 to VoYNW\u2026 (cla: yes)\n\n12076 Add a method to flutter_window_controller to destroy the current window. (cla: yes)\n\n12078 Manage iOS contexts separately (cla: yes)\n\n12079 Add custom test plugin that supports screenshot tests (cla: yes)\n\n12080 Don\u2019t quote generic font families (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-174", "text": "12080 Don\u2019t quote generic font families (cla: yes)\n\n12081 Add GradientRadial paintStyle implementation (cla: yes)\n\n12084 Guard availability of user notification related methods to iOS 10.0 (cla: yes)\n\n12085 Enable platform view keyboard input on Android Q (cla: yes, waiting for tree to go green)\n\n12087 Don\u2019t launch the observatory by default on each embedder unit-test invocation. (cla: yes)\n\n12128 Make iOS FlutterViewController stop sending inactive/pause on app lifecycle events when not visible (cla: yes, prod: API break)\n\n12161 Ensure that the web image ImageShader implements Shader (cla: yes)\n\n12167 Channel buffers (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-175", "text": "12167 Channel buffers (cla: yes)\n\n12190 Move the Fuchsia tryjob into a its own step and disable LTO. (cla: yes)\n\n12192 Updating text field location in IOS as a pre-work for spellcheck (affects: text input, cla: yes, platform-web)\n\n12197 add a convenience CLI tool for building and testing web engine (cla: yes)\n\n12204 Don\u2019t disable toString in release mode for dart:ui classes (cla: yes)\n\n12205 Don\u2019t load Roboto by default (cla: yes)\n\n12206 Only build the x64 variant of Fuchsia on the try-jobs. (cla: yes)\n\n12209 Roll buildroot and Fuchsia toolchain and unblock the Fuchsia/Linux autoroller manually. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-176", "text": "12218 Namespace patched SDK names to not conflict with Topaz (cla: yes)\n\n12222 Do not generate kernel platform files on topaz tree (cla: yes)\n\n12226 [web_ui] add missing dispose handler for MethodCalls to flutter/platform_view (cla: yes)\n\n12227 [web_ui] PersistedPlatformView attribute update handling to enable resizing (cla: yes)\n\n12228 pin and auto-install chrome version (cla: yes)\n\n12229 Improve check to render (or not) a DRRect when inner falls outside of outer on RecordingCanvas (cla: yes)\n\n12230 Add an initial macOS version of FlutterAppDelegate (cla: yes)\n\n12232 FlutterViewController notify will dealloc (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-177", "text": "12232 FlutterViewController notify will dealloc (cla: yes)\n\n12233 Revert \u201cManage iOS contexts separately\u201d (cla: yes)\n\n12234 [glfw/windows] Stops keeping track of input models (cla: yes)\n\n12235 Roll dart to e6887536aadc7fbd1990448989601cee0224958d. (cla: yes)\n\n12249 Editable text fix (affects: text input, cla: yes, platform-web)\n\n12251 Revert \u201cSmooth out iOS irregular input events delivery (#11817)\u201d (cla: yes)\n\n12253 Implement Base32Decode (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-178", "text": "12253 Implement Base32Decode (cla: yes)\n\n12255 Roll dart to d9489622befb638c040975163cf9b8eba2ff057b. (cla: yes)\n\n12256 Do not assume Platform.script is a Dart source file during training. (cla: yes)\n\n12257 Re-enable ThreadChecker and fix associated failures (CQ+1, cla: yes)\n\n12258 Refactor and polish the \u2018felt\u2019 tool (cla: yes)\n\n12263 Revert \u201cStarted taking advantage of Skia\u2019s new copyTableData to avoid (#10154)\u201d (cla: yes)\n\n12264 Revert \u201cAdd some AppLifecycleTests (#11890)\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-179", "text": "12266 Reland add some AppLifecycleTests (cla: yes)\n\n12267 [macos] Stops keeping track of text input models (cla: yes, platform-macos)\n\n12268 Close the tree (cla: yes)\n\n12269 a11y: expose max character count for text fields (cla: yes)\n\n12272 Revert \u201cClose the tree\u201d (cla: yes)\n\n12273 Clean up after AppLifecycleTests (cla: yes)\n\n12274 Store screenshot test output as Cirrus artifacts; do fuzzy comparison of non-matching screenshot pixels (cla: yes)\n\n12275 Shuffle test order and repeat test runs once. (CQ+1, cla: yes)\n\n12276 Add system font change listener for windows (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-180", "text": "12276 Add system font change listener for windows (cla: yes)\n\n12277 Manage resource and onscreen contexts using separate IOSGLContext objects (cla: yes)\n\n12280 Reland \u201cSmooth out iOS irregular input events delivery (#11817)\u201d (cla: yes)\n\n12281 optionally skip builds (cla: yes)\n\n12282 [flutter_runner] Change the path to artifacts (cla: yes)\n\n12284 New features for golden tests (for web) (cla: yes)\n\n12287 Adds PluginRegistry to the C++ client wrapper API (cla: yes)\n\n12288 Include firefox in check to quote font families (cla: yes)\n\n12289 Fix flutter runner paths (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-181", "text": "12289 Fix flutter runner paths (cla: yes)\n\n12292 Revert \u201cAdd iOS platform view mutation XCUITests to the scenario app \u2026 (cla: yes)\n\n12295 Issue 13238: on iOS, force an orientation change when the current orientation is not allowed (cla: yes, platform-ios)\n\n12303 Add a build command to felt (cla: yes, platform-web)\n\n12305 Introduce flutterfragmentactivity (cla: yes)\n\n12306 Fix the declaration of setSystemGestureExclusionRects to match the PlatformMessageHandler interface (cla: yes)\n\n12307 Cleanup in web_ui (cla: yes)\n\n12308 [flutter] Remove old A11y API\u2019s. (cla: yes)\n\n12318 Update canvaskit backend (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-182", "text": "12318 Update canvaskit backend (cla: yes)\n\n12319 Add \u201ctype\u201d to getDisplayRefreshRate protocol (cla: yes)\n\n12320 Fix continuous event polling in the GLFW event loop (cla: yes)\n\n12322 Tests for #11283 (cla: yes)\n\n12323 README for the felt tool (cla: yes, platform-web)\n\n12324 Roll buildroot and remove toolchain prefix. (cla: yes)\n\n12325 [fuchsia] add fuchsia.netstack.Netstack (affects: engine, cla: yes, customer: pink)\n\n12327 Revert \u201cProvide dart vm initalize isolate callback so that children i\u2026 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-183", "text": "12328 Added javadoc comments to FlutterActivity and FlutterFragmentActivity. (cla: yes)\n\n12330 Ensure DRRects without corners also draw. (cla: yes)\n\n12335 [Web] Implement dark mode support for web (cla: yes)\n\n12336 Check for index bounds in RTL handling for trailing whitespace runs. (cla: yes)\n\n12338 Add missing CL, fix targets for Fuchsia (cla: yes)\n\n12340 [flutter_runner] Do not use pre-builts just yet (cla: yes)\n\n12342 Update test to verify that secondary isolate gets shutdown before root isolate exits. (cla: yes)\n\n12343 [flutter_runner] Remove usages of shared snapshots from CC sources (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-184", "text": "12345 [flutter_runner] Port over the tuning advice for vulkan surface provider (cla: yes)\n\n12346 [flutter_runner] Move from runner context to component context (cla: yes)\n\n12347 [flutter_runner][async] Migrate dart/flutter to new async-loop APIs (cla: yes)\n\n12348 [flutter_runner] Port the new compilation trace from topaz (cla: yes)\n\n12349 [flutter_runner] Explicitly set\n\ntrace_skia\n\nto false (cla: yes)\n\n12350 [flutter_runner] Port vulkan surface changes (cla: yes)\n\n12353 Add web engine screenshot (scuba) tests (cla: yes)\n\n12354 java lints (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-185", "text": "12354 java lints (cla: yes)\n\n12355 skip flaky test (cla: yes)\n\n12359 Forwards Flutter View to platform views and detaches when needed. (cla: yes)\n\n12362 Fixes race condition that was reported internally. (cla: yes)\n\n12363 Track \u201cmouse leave\u201d event (cla: yes, platform-windows)\n\n12364 Revert \u201cReland \u201cSmooth out iOS irregular input events delivery\u201d (#12280)\u201d (cla: yes)\n\n12370 Added a default entrypoint variable to match android syntax. (cla: yes)\n\n12373 Added unit tests for method channels. (cla: yes)\n\n12375 Sync dart_runner (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-186", "text": "12375 Sync dart_runner (cla: yes)\n\n12376 Roll Wuffs to 0.2.0-alpha.47 (cla: yes)\n\n12380 [flutter_runner] a11y updates, tests! (CQ+1, cla: yes)\n\n12383 Add macOS testing support (cla: yes)\n\n12385 Reland \u201cSmooth out iOS irregular input events delivery (#12280)\u201d (cla: yes)\n\n12395 Update \u2013dart-vm-flags whitelist to include \u2013write-service-info and \u2013sample-buffer-duration (cla: yes)\n\n12402 Resize channel buffers (CQ+1, cla: yes)\n\n12403 Don\u2019t send pointer events when the framework isn\u2019t ready yet (cla: yes, platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-187", "text": "12404 Support accessibility labels on iOS switches. (cla: yes)\n\n12410 Send TYPE_VIEW_FOCUSED for views with input focus. (cla: yes)\n\n12412 SkSL precompile (cla: yes)\n\n12413 Migrate from fuchsia.crash.Analyzer to fuchsia.feedback.CrashReporter (cla: yes)\n\n12423 add windows embedding test (cla: yes)\n\n12426 Store fallback font names as a vector instead of a set. (cla: yes)\n\n12428 Reword confusing messaging surrounding unhandled exception in flutter_runner on Fuchsia (cla: yes)\n\n12431 Interpret negative radii as 0 in recording_canvas.dart (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-188", "text": "12432 Work around Samsung keyboard issue (cla: yes)\n\n12434 delete golden files; switch to flutter/goldens (cla: yes)\n\n12435 add dart:html, dart:js, and dart:js_util to the copy of the Dart SDK used for analysis (cla: yes)\n\n12436 Roll dart sdk to 69b5681546c68ab85e2ce6d3e7b92ed7d113e7c1. (cla: yes)\n\n12443 Force exit felt tool on sigint, sigterm (cla: yes)\n\n12445 [web] filter test targets; cache host.dart compilation (cla: yes)\n\n12446 Add support for JIT release mode (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-189", "text": "12446 Add support for JIT release mode (cla: yes)\n\n12447 Reflect selection changes in Firefox for text editing (cla: yes, platform-web)\n\n12448 Make kDoNotResizeDimension public so framework can use it directly (cla: yes)\n\n12450 Adds support for 5 mouse buttons (cla: yes)\n\n12453 Adding Link SemanticsFlag (accessibility, affects: framework, cla: yes)\n\n12454 Add .mskp file to binary format (cla: yes)\n\n12455 Revert \u201cSend TYPE_VIEW_FOCUSED for views with input focus. (#12410)\u201d (cla: yes)\n\n12466 Revert \u201cSupport accessibility labels on iOS switches.\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-190", "text": "12469 Started asserting the FlutterEngine is running before communicating over channels. (cla: yes)\n\n12470 [web_ui] Check if a pointer is already down for the specific device (cla: yes)\n\n12479 Refactoring text_editing.dart (cla: yes)\n\n12563 Remove use of the blobs snapshot format from unittests (cla: yes)\n\n12565 Remove references to topaz (cla: yes)\n\n12572 Update linux toolchain for fuchsia (cla: yes)\n\n12573 [flutter_runner] Refactor thread_application pair to ActiveApplication (cla: yes)\n\n12578 Revert \u201cUpdate linux toolchain for fuchsia\u201d (cla: yes)\n\n12587 Split out the logic to handle status bar touches into its own function (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-191", "text": "12610 Revert \u201c[fuchsia] Wire up OpacityLayer to Scenic (#11322)\u201d (cla: yes)\n\n12618 Add isFocusable to SemanticsFlag (cla: yes)\n\n12681 Create a package-able incremental compiler (cla: yes)\n\n12695 Add onUnregistered callback in \u2018Texture\u2019 and \u2018FlutterTexture\u2019 (cla: yes)\n\n12698 [web_ui] Fixing invalid state bug for text editing (affects: text input, cla: yes, platform-web)\n\n12699 Adding \u2018pub get\u2019 to the \u2018compile_xxxx.sh\u2019 in the Scenario app (cla: yes)\n\n12700 Add missing flag for embedder. (cla: yes)\n\n12701 Cleanup: Made a macro to assert ARC is enabled. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-192", "text": "12703 [flutter_runner] Replace read exec calls on Fuchsia to adhere to Verified Execution semantics (cla: yes)\n\n12706 Check for a null input method subtype (cla: yes)\n\n12707 Reland \u201cAdd iOS platform view mutation XCUITests to the scenario app(#11652)\u201d (cla: yes)\n\n12708 Cleanup: Turned on NS_ASSUME_NONNULL_BEGIN for FlutterViewController. (CQ+1, cla: yes)\n\n12710 Set transparent background in textarea elements (affects: text input, cla: yes, platform-web)\n\n12712 Support correct keymap for web (accessibility, affects: text input, cla: yes, platform-web)\n\n12725 Expanded channel buffer resize to method channels. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-193", "text": "12728 Remove unused import in the scenario app (cla: yes)\n\n12730 Stop setting the accessibility text if a node has SCOPES_ROUTE set. (cla: yes)\n\n12732 Fix parameter naming in docs (cla: yes)\n\n12733 [flutter_runner] Make rd and rx uniform (cla: yes)\n\n12742 Revert \u201cRevert \u201cUpdate linux toolchain for fuchsia\u201d (#12578)\u201d (CQ+1, cla: yes)\n\n12746 Send AccessibilityEvent.TYPE_VIEW_FOCUSED when input focus is set. (cla: yes)\n\n12747 Add web implementation for channel_buffers.dart (cla: yes)\n\n12752 Enabled people to chose if SystemNavigator.pop is animated on iOS. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-194", "text": "12753 [web] Don\u2019t require felt to be in PATH (cla: yes, platform-web)\n\n12754 Fix Metal builds by accounting for the updated SubmitFrame signature. (cla: yes)\n\n12761 Build AOT and test targets, generate FARs when building Fuchsia (CQ+1, cla: yes)\n\n12771 roll buildroot to 01e923507b28e5d1d3fe7597d2db2b30b0a543e9 (CQ+1, cla: yes)\n\n12773 Revert \u201cManage resource and onscreen contexts using separate IOSGLCon\u2026 (cla: yes)\n\n12775 Added some thread asserts to the code and made ios_surface_ safe since (cla: yes)\n\n12777 Fix Metal builds. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-195", "text": "12777 Fix Metal builds. (cla: yes)\n\n12780 Restart all modern Samsung keyboard IMM (cla: yes)\n\n12781 Revert \u201cBuild AOT and test targets, generate FARs when building Fuchsia\u201d (cla: yes)\n\n12783 Add a unit-test to verify that root surface transformation affects platform view coordinates. (cla: yes)\n\n12785 Fix bug in package script and add dev_compiler to list (cla: yes)\n\n12793 Fixing selection issues in Firefox (cla: yes, platform-web)\n\n12794 [web] Add support for path transform (cla: yes)\n\n12795 Reland fuchsia build improvements (CQ+1, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-196", "text": "12797 add option for bulk-updating screenshots; update screenshots (Work in progress (WIP), cla: yes)\n\n12798 [flutter_runner] Update the cmx files to include TZ support (cla: yes)\n\n12799 Disable EmbedderTest::CanLaunchAndShutdownMultipleTimes. (cla: yes)\n\n12800 Prettify all CMX files (cla: yes)\n\n12801 do not wrap font family name (cla: yes, platform-web)\n\n12802 Build gen_snapshot with a 64-bit host toolchain even if the target platform is 32-bit (cla: yes)\n\n12805 Unbreak Fuchsia unopt builds (cla: yes)\n\n12806 Move initialization into FlutterEngine (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-197", "text": "12806 Move initialization into FlutterEngine (cla: yes)\n\n12808 Added an embedder example (cla: yes)\n\n12809 Use the x64 host toolchain for x86 target gen_snapshot only on Linux (cla: yes)\n\n12811 [web] Implement basic radial gradient (TileMode.clamp, no transform) (cla: yes)\n\n12813 Unblock SIGPROF on flutter_tester start (cla: yes)\n\n12814 Enable all engine test on windows (cla: yes)\n\n12815 Revert \u201cAdding Link SemanticsFlag\u201d (cla: yes)\n\n12816 Enable sanitizer build variants. (cla: yes)\n\n12819 Open source canvas tests from flutter_web_ui (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-198", "text": "12821 Update buildroot to pull in ubsan updates. (cla: yes)\n\n12931 remove references to package:_chrome (cla: yes)\n\n12958 Adding deviceId to KeyEventChannel enconding method (cla: yes)\n\n12960 Fix typo on channel buffer debug output. (cla: yes)\n\n12972 Re-land Adding Link Semantics (accessibility, affects: framework, cla: yes)\n\n12974 Support empty strings and vectors in standard codec (cla: yes)\n\n12977 Unblock Fuchsia roll (cla: yes)\n\n12980 Made _printDebug only happen on debug builds of the engine for now. (cla: yes)\n\n12982 Color matrix doc (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-199", "text": "12982 Color matrix doc (cla: yes)\n\n12983 Roll Wuffs to 0.2.0-rc.1 (cla: yes)\n\n12986 Prevent default when Tab is clicked (accessibility, affects: text input, cla: yes, platform-web)\n\n12987 Added FlutterActivity and FlutterFragment hook to cleanUpFlutterEngine() as symmetry for configureFlutterEngine(). (#41943) (cla: yes)\n\n12988 Use the standard gen_snapshot target unless the platform requires host_targeting_host (cla: yes)\n\n12989 Unpublicize kDoNotResizeDimension (cla: yes)\n\n12990 Fix for a11y crash on iOS (cla: yes)\n\n12991 Compile sanitizer suppressions list and file bugs as necessary. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-200", "text": "12997 Roll dart to aece1c1e92. (cla: yes)\n\n12999 Started setting our debug background task id to invalid (cla: yes)\n\n13001 Missing link flag (cla: yes)\n\n13003 [web] Update the url when route is replaced (cla: yes, platform-web)\n\n13004 Allow embedders to disable causal async stacks in the Dart VM (cla: yes)\n\n13005 Auto-formatter fixes for BUILD.gn files (cla: yes)\n\n13006 Refactor: FlutterDartProject (cla: yes)\n\n13008 Integration with more of Skia\u2019s SkShaper/SkParagraph APIs (cla: yes)\n\n13009 Fixing Link Semantics Typo (accessibility, affects: framework, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-201", "text": "13013 Add missing focusable testing info (cla: yes)\n\n13015 Fire PlatformViewController FlutterView callbacks (cla: yes)\n\n13017 Revert \u201cUpgrade compiler to Clang 10.\u201d (cla: yes)\n\n13029 Minimal test harness for iOS (cla: yes)\n\n13033 dart analysis of tests, cleanup (CQ+1, cla: yes)\n\n13037 Analyze framework Dart code in presubmit tests (cla: yes)\n\n13042 Add \u201cfelt clean\u201d command (cla: yes)\n\n13043 Add a task runner for the Win32 embedding (cla: yes)\n\n13044 Support keyboard types on mobile browsers (affects: text input, cla: yes, platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-202", "text": "13045 Wires the locale provided by Fuchsia. (cla: yes)\n\n13047 Allow embedders to specify arbitrary data to the isolate on launch. (cla: yes)\n\n13048 Test child isolates are terminated when root is shutdown (cla: yes)\n\n13049 Ignore thread leaks from Dart VM in tsan instrumented builds. (cla: yes)\n\n13051 Don\u2019t bump iOS deployment target for Metal builds. (cla: yes)\n\n13053 Set the Cirrus badge to only display status of the master branch. (cla: yes)\n\n13056 Put Metal renderer selection behind runtime flag and plist opt-in. (cla: yes)\n\n13059 Android targets create final zip artifacts (CQ+1, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-203", "text": "13066 [web] Add basic color per vertex drawVertices API support (cla: yes)\n\n13067 Revert \u201cTest child isolates are terminated when root is shutdown\u201d (cla: yes)\n\n13071 [dart_aot_runner] Add support for generating dart_aot snapshots (cla: yes)\n\n13073 Removed retain cycle from notification center. (cla: yes)\n\n13074 [dart_aot_runner] Add rules to generate dart_aot binaries (cla: yes)\n\n13075 Revert \u201c[dart_aot_runner] Add support for generating dart_aot snapsho\u2026 (cla: yes)\n\n13076 Reland dart_aot_runner shims (cla: yes)\n\n13082 java imports/style (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-204", "text": "13085 Print more output when gen_package fails (cla: yes)\n\n13086 Gen package output corrected (cla: yes)\n\n13088 felt: use rest args for specifying test targets (cla: yes)\n\n13089 cleanup gen_package.py (cla: yes)\n\n13090 Snapshot the felt tool for faster start-up (cla: yes)\n\n13091 Remove persistent cache unittest timeout (cla: yes)\n\n13093 iOS Platform View: Fixed overrelease of the observer. (cla: yes)\n\n13094 Integrate more SkParagraph builder patches (cla: yes)\n\n13096 [dart_aot_runner] Use the host_toolchain to build kernels (cla: yes)\n\n13097 Update felt README (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-205", "text": "13097 Update felt README (cla: yes)\n\n13099 NO_SUGGESTIONS keyboard flag in Android (cla: yes)\n\n13100 ColorFilter matrix docs (cla: yes)\n\n13101 [dart_aot_runner] Generate vmservice aotsnapshots (cla: yes)\n\n13103 [dart_aot_runner] Complete the port of dart_aot_runner (cla: yes)\n\n13121 Change IO thread shader cache strategy (cla: yes)\n\n13122 refactoring chrome_installer (cla: yes)\n\n13123 Upgrades the ICU version to 64.2 (cla: yes)\n\n13124 Allow embedders to specify a render task runner description. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-206", "text": "13125 add the dart:__interceptors library to the dart sdk (cla: yes)\n\n13126 [frontend_server] Include bytecode generation in the training run. (cla: yes)\n\n13141 Enable/tweak web sdk source maps (cla: yes)\n\n13143 Add flutter_tester binary to the CIPD package (cla: yes)\n\n13144 Document //flutter/runtime/dart_vm (cla: yes)\n\n13145 Merge the Fuchsia frontend_server build script into the new flutter_frontend_server target (cla: yes)\n\n13146 Revert \u201cUpgrades the ICU version to 64.2 (#13123)\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-207", "text": "13148 Revert \u201cEnable/tweak web sdk source maps (#13141)\u201d (cla: yes)\n\n13151 Remove incomplete static thread safety annotations. (cla: yes)\n\n13153 Make the Dart isolate constructor private. (cla: yes)\n\n13154 Fix an output file path for the frontend server package_incremental script (cla: yes)\n\n13155 Roll buildroot to pull in static thread safety analysis options. (cla: yes)\n\n13157 Fix type error in SkVertices (cla: yes)\n\n13158 Add templates to generate fuchsia host bundles (cla: yes)\n\n13159 Move surface-based SceneBuilder implementation under surface/ (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-208", "text": "13160 Revert \u201cIssue 13238: on iOS, force an orientation change when the current orientation is not allowed\u201d (cla: yes)\n\n13161 Enable/tweak web sdk source maps, take 2 (cla: yes)\n\n13162 Document //flutter/runtime/dart_isolate.h (cla: yes)\n\n13163 Manual roll of src/third_party/dart 4131d3d7c4\u202641b65b27c2 (28 commits) (cla: yes)\n\n13170 Issue 13238: on iOS, force an orientation change when the current orientation is not allowed (cla: yes)\n\n13175 Remove redundant call to updateEditingState in sendKeyEvent (cla: yes)\n\n13176 Add repeatCount to FlutterKeyEvent (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-209", "text": "13176 Add repeatCount to FlutterKeyEvent (cla: yes)\n\n13177 Update compiler to Clang 10. (cla: yes)\n\n13179 Update timeout_microseconds to timeout in docs (cla: yes)\n\n13180 Use the fixtures mechanism for txt unit-tests and benchmarks. (cla: yes)\n\n13181 Revert \u201cUpdate compiler to Clang 10.\u201d (cla: yes)\n\n13182 If we get a \u2018down\u2019 event, add that device to the active devices. (cla: yes)\n\n13185 Adding firefox_installer.dart (affects: tests, cla: yes, platform-web)\n\n13187 [web] Environment variable to disable felt snapshot (cla: yes, platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-210", "text": "13189 Add utils to disable on mac/windows, disable invalid LibLxt tests on mac (cla: yes)\n\n13190 [web] Fix canvas reuse metrics. Refactor drawVertices code. (cla: yes)\n\n13192 Use window.devicePixelRatio in the CanvasKit backend (cla: yes)\n\n13193 Custom compositor layers must take into account the device pixel ratio. (cla: yes)\n\n13196 Document //flutter/runtime/dart_snapshot.h (cla: yes)\n\n13207 Wrap the text in text editing to fix selections. (cla: yes)\n\n13209 Preserve stdout colors of subprocesses run by felt (cla: yes, platform-web)\n\n13211 Revert \u201cCustom compositor layers must take into account the device pixel ratio.\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-211", "text": "13212 Add trace events around custom compositor callbacks. (cla: yes)\n\n13213 Re-land \u201cCustom compositor layers must take into account the device pixel ratio.\u201d (cla: yes)\n\n13214 Forwards Activity result to FlutterFragment in FlutterFragmentActivity. (cla: yes)\n\n13215 Adds Dark Mode support to new Android embedding (this was accidentally missed previously). (cla: yes)\n\n13216 Reland icu upgrade (cla: yes)\n\n13218 Specify a human readable reason for an error from the embedder API. (cla: yes)\n\n13232 Avoid dereferencing IO manager weak pointers on the UI thread (CQ+1, cla: yes)\n\n13233 Update ui.instantiateImageCodec docs to reflect what it does. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-212", "text": "13236 Roll buildroot to 994c6 (cla: yes)\n\n13237 Do not attempt to drain the SkiaUnrefQueue in the destructor (cla: yes)\n\n13238 Allow embedders to update preferrred locales. (cla: yes)\n\n13239 Hold a reference to the Skia unref queue in UIDartState (cla: yes)\n\n13240 Update CanvasKit to 0.7.0 and flesh out painting (cla: yes)\n\n13241 Ignore *.obj files when gathering licenses (cla: yes)\n\n13242 Update harfbuzz to 2.6.2, Roll buildroot to a518e (cla: yes)\n\n13255 Fix NPE in accessibility bridge (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-213", "text": "13255 Fix NPE in accessibility bridge (cla: yes)\n\n13259 [web] Support -j to use goma in felt build (cla: yes, platform-web)\n\n13261 Updated license script to ignore testdata directories (cla: yes)\n\n13262 Added Semantic header support on Android. (cla: yes)\n\n13264 Made restarting the Engine remember the last entrypoint that was used. (cla: yes)\n\n13265 Ensure we call into Engine from the UI taskrunner in Shell::EngineHasLivePorts() (cla: yes)\n\n13268 [web] Support input action (affects: text input, cla: yes, platform-web)\n\n13269 Send flag modified events to the framework (cla: yes)\n\n13270 Add recipe changelog (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-214", "text": "13270 Add recipe changelog (cla: yes)\n\n13272 [web] [test] Adding firefox install functionality to the test platform (affects: tests, cla: yes, platform-web)\n\n13273 Make flutter_tester support multithreaded testing, and run all Dart tests in both single and multithreaded configurations (cla: yes)\n\n13274 Fix decode feature detection in HtmlCodec (cla: yes)\n\n13275 Flesh out the CanvasKit backend some more (cla: yes)\n\n13280 Android embedding API updates for plugin ecosystem (cla: yes)\n\n13282 Manual Roll of Dart from a61c775db8\u2026e1c409792c (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-215", "text": "13287 Revert \u201cMade restarting the Engine remember the last entrypoint that \u2026 (cla: yes)\n\n13289 Made restarting the Engine remember the last entrypoint that was used. (cla: yes)\n\n13290 Do not request executable permission on Fuchsia file mappings unless it is required (cla: yes)\n\n13292 Disable flaky test ShellTest_ReportTimingsIsCalled. (cla: yes)\n\n13294 Roll Dart to 6a65ea9cad4b014f88d2f1be1b321db493725a1c. (cla: yes)\n\n13295 Avoid accessing the Cocoa view on the GPU or IO task runners. (cla: yes)\n\n13296 [web] Cupertino dynamic color fix. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-216", "text": "13298 Show strace logs when the Fuchsia gen_package script gets an error from the packaging tool (cla: yes)\n\n13300 Switch the MacOS Desktop embedder to using a thread configuration where the platform and render task runners are the same. (cla: yes)\n\n13311 [recipe] Upload opt flutter_tester (cla: yes)\n\n13314 Guarding EAGLContext used by Flutter (cla: yes, platform-ios)\n\n13315 Roll Dart to 635c47b1c9efe86b896d95bd446c6a5e2459037e. (cla: yes)\n\n13316 Update the dependencies for the Fuchsia build of flutter_frontend_server (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-217", "text": "13319 Add FlutterEngineRunsAOTCompiledDartCode to the embedder API. (cla: yes)\n\n13321 Pass LinearTextFlag to SkFont - iOS13 letter spacing (cla: yes)\n\n13335 [fuchsia] [packaging] Host bundles are per runtime-mode (cla: yes)\n\n13337 Bump dart/language_model to 9fJQZ0TrnAGQKrEtuL3-AXbUfPzYxqpN_OBHr9P4hE4C (cla: yes)\n\n13338 [fuchsia] [packaging] Layout debug symbols for Fuchsia (CQ+1, cla: yes)\n\n13339 Fix the output filename of the Fuchsia archive build template (CQ+1, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-218", "text": "13341 Create a separate directory for the intermediate outputs of each Fuchsia archive build action (cla: yes)\n\n13342 Intercept SystemSound.play platform message before it\u2019s sent. (cla: yes)\n\n13345 Expose platform view ID on embedder semantics node (CQ+1, cla: yes)\n\n13346 Remove TODO on embedder a11y unit tests (CQ+1, cla: yes)\n\n13349 Deprecated DartExecutor as BinaryMessenger and added a getBinaryMessenger() method. (#43202) (cla: yes)\n\n13359 Web: fix Color subclass handling (cla: yes)\n\n13360 Turn on RasterCache based on view hierarchy (cla: yes)\n\n13361 Expand on CanvasKit backend more (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-219", "text": "13361 Expand on CanvasKit backend more (cla: yes)\n\n13364 [flutter_runner] Remove the checks for libdart profiler symbols (cla: yes)\n\n13367 Delay metal drawable acquisition till frame submission. (cla: yes)\n\n13391 Implement basic Picture.toImage via BitmapCanvas (cla: yes)\n\n13394 Remove multiplexed Flutter Android Lifecycle. (#43663) (cla: yes)\n\n13395 fix fml_unittes is not run during presubmit (cla: yes)\n\n13396 Made it so we clean up gl resources when view controllers get deleted. (CQ+1, cla: yes)\n\n13397 [flutter_runner] Don\u2019t build far files twice (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-220", "text": "13400 Revert \u201c[flutter_runner] Don\u2019t build far files twice (#13397)\u201d (cla: yes)\n\n13401 Reformat BUILD.gn files to comply with the format checker presubmit script (cla: yes)\n\n13402 Converted ActivityAware and ServiceAware Lifecycles to opaque objects (#43670) (cla: yes)\n\n13403 Use DartExecutor.getBinaryMessenger in FlutterNativeView instead of deprecated send methods (cla: yes)\n\n13405 Make sure root surface transformations survive resetting the matrix directly in Flow. (cla: yes)\n\n13406 Fix the dry run mode of the GN format checker script (cla: yes)\n\n13407 Kick luci (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-221", "text": "13407 Kick luci (cla: yes)\n\n13419 [dart_runner] Common libs need to exist for aot runner (CQ+1, cla: yes)\n\n13421 FlutterAppDelegate: Added back in empty lifecycle methods (cla: yes)\n\n13422 [fuchsia] [packaging] Create a script to upload debug symbols to CIPD (cla: yes)\n\n13423 Automatically destroy FlutterEngine when created by FlutterActivity or FlutterFragment. (cla: yes)\n\n13424 Add isRunningInRobolectricTest back (cla: yes, waiting for tree to go green)\n\n13425 Revert \u201cfix fml_unittes is not run during presubmit (#13395)\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-222", "text": "13426 Reland \u201cfix fml_unittes is not run during presubmit (#13395)\u201d (CQ+1, cla: yes)\n\n13428 Set the install name at link time for darwin dylibs (cla: yes)\n\n13432 Release shim bindings when detaching (cla: yes)\n\n13440 Switch to Cirrus Dockerfile as CI (cla: yes)\n\n13442 Revert \u201cTurn on RasterCache based on view hierarchy (#13360)\u201d (cla: yes)\n\n13444 Remove usage of yaml module from CIPD script (cla: yes)\n\n13445 Fizzle onConfigurationChanged if no FlutterView (cla: yes)\n\n13448 Duplicate the directory fd in fml::VisitFiles (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-223", "text": "13449 Fix iOS crash when multiple platform views are in the scene (cla: yes)\n\n13451 Fix mDNS for iOS13 (cla: yes, waiting for tree to go green)\n\n13455 Automatically register plugins in FlutterEngine. (#43855) (cla: yes)\n\n13460 [dart] Makes the intl services available (cla: yes)\n\n13461 CIPD needs the directory to be relative (cla: yes)\n\n13462 [web] Get the size from visualviewport instead of window.innerHeight/innerW\u2026 (cla: yes, platform-web)\n\n13463 [fuchsia] [packaging] Prettify parent folder name (cla: yes)\n\n13464 [recipe] Upload sky_engine to CIPD (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-224", "text": "13466 [fuchsia] Bundle stripped SO files in fars (CQ+1, cla: yes)\n\n13467 Revert 78a8ca0f62b04fa49030ecdd2d91726c0639401f (CQ+1, cla: yes)\n\n13468 Pass the automaticallyRegisterPlugins flag to the FlutterEngine constructor in FlutterActivityTest (cla: yes)\n\n13469 Fix stale platform view gr context on iOS (cla: yes)\n\n13471 Package fml_unittests in a .far file for fml unit tests on Fuchsia (cla: yes)\n\n13474 Request a reattach when creating the text input plugin on Android (cla: yes, waiting for tree to go green)\n\n13478 use check_output instead of check_call (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-225", "text": "13479 Print the output (cla: yes)\n\n13480 Disabled GPUThreadMerger tests. (cla: yes)\n\n13482 [fuchsia] [packaging] Fuchsia tree expects nested bz2 archives (cla: yes)\n\n13483 web: fix Paragraph.getBoxesForRange for zero-length ranges (cla: yes)\n\n13486 Add fuchsia.intl.PropertyProvider to our services on Fuchsia (cla: yes)\n\n13630 Fix bug where Enter doesn\u2019t add new line in multi-line fields (affects: text input, cla: yes, platform-web)\n\n13632 Revert \u201cAdded new lifecycle enum (#11913)\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-226", "text": "13634 [web] Ignore changes in *.ttf files in felt build watch mode (cla: yes, platform-web)\n\n13642 Issues/39832 reland (CQ+1, cla: yes)\n\n13643 Ensure that the CAMetalLayer FBO attachments can be read from. (cla: yes)\n\n13649 Add \u2018Cough\u2019 test font and support multiple test fonts. (cla: yes)\n\n13651 Fixed the scroll direction for iOS horizontal accessibility scroll events. (cla: yes)\n\n13660 Fix splash screen lookup. (#44131) (cla: yes)\n\n13695 Fix Class.forName unchecked call warning (cla: yes)\n\n13696 [fuchsia] Temporarily disable intl provider (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-227", "text": "13697 Moves pointer event sanitizing to engine. (cla: yes)\n\n13698 Fix plugin registrant reflection path. (#44161) (cla: yes)\n\n13699 [web] Don\u2019t send keyboard events from text fields to flutter (affects: text input, cla: yes, platform-web)\n\n13702 Fix editing selection and deletion on macOS (cla: yes)\n\n13708 Ensure that the device pixel ratio is taken into account with window metrics in physical pixels. (cla: yes)\n\n13710 Fix picture raster cache throttling (cla: yes, waiting for tree to go green)\n\n13711 Imagefilter wrapper object (cla: yes)\n\n13719 Fix NPE in splash screen lookup (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-228", "text": "13719 Fix NPE in splash screen lookup (cla: yes)\n\n13720 Revert \u201cAdded new lifecycle enum\u201d (cla: yes)\n\n13721 Revert \u201c[fuchsia] Temporarily disable intl provider (#13696)\u201d (cla: yes)\n\n13722 [web] Proper support for text field\u2019s obscureText (affects: text input, cla: yes, platform-web)\n\n13727 Add line boundary information to LineMetrics. (cla: yes)\n\n13728 Prefer SchedulerBinding.addTimingsCallback (cla: yes)\n\n13731 Expose the platform view mutator stack to custom compositors. (cla: yes)\n\n13735 Cleanup obsolete \u2013strong option of front-end server (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-229", "text": "13736 libtxt: pass an RTL bool flag instead of a bidiFlags enum to measureText (cla: yes)\n\n13737 [web] Don\u2019t run engine tests under vm (causing warnings) (cla: yes)\n\n13738 Removed scary experimental warnings for new embedding. (#44314) (cla: yes)\n\n13739 Point old plugin registry accessors to new embedding plugin accessors. (#44225) (cla: yes)\n\n13741 [web] Refactor text editing to handle any order of platform messages gracefully (affects: text input, cla: yes, platform-web)\n\n13742 Only specify \u2013no-link-platform when not specifying \u2013aot, roll dart-lang sdk (cla: yes)\n\n13743 Expose asset lookup from plugin binding. (#42019) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-230", "text": "13744 Create a new picture recorder even when the embedder supplied render target is recycled. (cla: yes)\n\n13747 Move TextRange from the framework to dart:ui. (cla: yes)\n\n13748 [web] Support gif/webp animations, Speed up image drawing in BitmapCanvas. (cla: yes)\n\n13753 Revert \u201cGuarding EAGLContext used by Flutter\u201d (cla: yes)\n\n13755 Reland \u201cGuarding EAGLContext used by Flutter #13314\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-231", "text": "13756 Manual roll of Dart e68ca9b652acdb642668a6acb5f630d5be6c03da\u2026fa4379946109467c8a48f20f19d83d7c72968a3e (cla: yes)\n\n13757 Revert \u201cReland \u201cGuarding EAGLContext used by Flutter #13314\u201d\u201d (cla: yes)\n\n13758 Reland children isolates sharing isolate group change. (cla: yes)\n\n13759 Reland \u201cGuarding EAGLContext used by Flutter #13314\u201d (CQ+1, cla: yes)\n\n13760 Implement Path.computeMetrics in the CanvasKit backend (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-232", "text": "13761 Manual Dart roll fa4379946109467c8a48f20f19d83d7c72968a3e\u2026d45c3d15cb3cea0104a87697c085259666eec528 (cla: yes)\n\n13762 Turn on RasterCache based on view hierarchy (cla: yes)\n\n13763 Remove usage of fuchsia.modular.Clipboard. (cla: yes)\n\n13765 Change wordBoundary to take dynamic temporarily (cla: yes)\n\n13767 reland add lifecycle enum (cla: yes)\n\n13768 Add ImageFilter and BackdropFilter to CanvasKit backend (cla: yes)\n\n13769 [web] Implement TextStyle.shadows (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-233", "text": "13772 Move Path and PathMetrics from canvas.dart into their own files. No delta (cla: yes)\n\n13779 [web] Fix path to svg for drrect (cla: yes)\n\n13780 Allow passing hot reload debugging flags through (cla: yes)\n\n13781 Create a WeakPtrFactory for use on the UI thread in VsyncWaiter (cla: yes)\n\n13782 Document the coordinate space of points in FlutterPointerEvent. (cla: yes)\n\n13784 Add Helvetica and sans-serif as fallback font families (cla: yes)\n\n13785 Fix RendererContextSwitch result check in Rasterizer::MakeRasterSnapshot (cla: yes)\n\n13786 Take devicePixelRatio into account when drawing shadows (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-234", "text": "13788 Revert \u201cGuarding EAGLContext used by Flutter #13314\u201d (cla: yes)\n\n13789 add recent packages to javadoc list (cla: yes, waiting for tree to go green)\n\n13795 Adds missing comma in EngineParagraphStyle.toString() (cla: yes)\n\n13796 implement radial gradient in canvaskit backend (cla: yes)\n\n13799 Update version of dart/language_model distributed with flutter engine to latest (cla: yes)\n\n13802 [web] Fix selectable text rendering (cla: yes)\n\n13803 [build] Make \u2013engine-version flag optional (CQ+1, cla: yes)\n\n13805 Remove extra shadows from ParagraphStyle (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-235", "text": "13805 Remove extra shadows from ParagraphStyle (cla: yes)\n\n13809 [web] Fix blendmode for images (cla: yes)\n\n13812 RendererContextSwitch guard flutter\u2019s gl context rework. (CQ+1, cla: yes)\n\n13828 Revert \u201cRoll src/third_party/skia d860a78fd60c..581108137b46 (13 comm\u2026 (cla: yes)\n\n13829 [dart_runner] Initialize logging and tracing (cla: yes)\n\n13832 Remove unused import (cla: yes)\n\n13837 Roll buildroot to 0fec442d067a0998352ea12706fcae0a53b62884. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-236", "text": "13842 Disable LTO on Fuchsia (cla: yes)\n\n13847 Avoid GL calls when compiling for Fuchsia. (cla: yes)\n\n13848 Use Skia\u2019s matchStyleCSS3 to find bundled asset typefaces matching a font style (cla: yes)\n\n13850 Fix test to account for pixel ratio transformations being framework responsibility. (cla: yes)\n\n13851 Implement the rest of ui.Path methods for CanvasKit (cla: yes)\n\n13852 Do not default to downstream affinity on iOS insertText (cla: yes)\n\n13855 Add support for \u2013dart-flags in FlutterShellArgs. (#44855) (cla: yes)\n\n13857 Guard against orphaned semantic objects from referencing dead accessibility bridge on iOS (accessibility, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-237", "text": "13860 [web] Change canvas sibling transforms to 3d with z=0 to get around canvas rendering bug. (cla: yes)\n\n13864 [flow][fuchsia] Add more tracing to layers and Fuchsia surface pool (cla: yes)\n\n13865 [fuchsia] Package flutter_frontend_server snapshot for fuchsia (cla: yes)\n\n13869 Changing test runner and platform to be browser independent (cla: yes)\n\n13881 Change edge conditions of getLineBoundary (cla: yes)\n\n13885 Work around Fuchsia a11y / ICU name conflict (cla: yes)\n\n13901 [web] Fix single line bitmap canvas text shadow (cla: yes)\n\n13902 Adding opacity -> alpha method to Color class (affects: framework, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-238", "text": "13903 Implement basic text rendering support in CanvasKit backend (cla: yes)\n\n13904 Fix withIn matcher distance function lookup (cla: yes)\n\n13906 Revert \u201cRendererContextSwitch guard flutter\u2019s gl context rework.\u201d (cla: yes)\n\n13907 allow ignoring toString, hashCode, and == in api_conform_test (cla: yes)\n\n13908 Made a way to turn off the OpenGL operations on the IO thread for backgrounded apps (cla: yes)\n\n13909 [web] Implement PathMetrics.length (cla: yes)\n\n13910 Roll buildroot to a985f7f63ac. (cla: yes)\n\n13918 Add virtual destructor to GPUSurfaceSoftwareDelegate. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-239", "text": "13922 [web] Flutter for web autocorrect support (cla: yes, platform-web, waiting for tree to go green)\n\n13923 Roll Skia to e678b79c489d (2 commits) (cla: yes)\n\n13925 [shell][fuchsia] Migrate away from deprecated async loop configs (CQ+1, cla: yes)\n\n13926 Add dev_compiler and frontend_server to package uploading rule (cla: yes)\n\n13928 Roll Skia to e678b79c489d (cla: yes)\n\n13929 [web] Allow users to enable canvas text measurement (cla: yes, platform-web)\n\n13932 Removed GET_ACTIVITIES flag from all manifest meta-data lookups. (#38891) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-240", "text": "13934 Ensure we use the base CompositorContext\u2019s AcquireFrame method when screenshotting (CQ+1, cla: yes)\n\n13940 [web] Fix Edge detection for correct dom_renderer reset (cla: yes)\n\n13943 Made the thread checker print out the thread names on Apple platforms. (cla: yes)\n\n13945 Update SwiftShader to 5d1e854. (cla: yes)\n\n13947 [flutter_runner] fix a11y tests (cla: yes)\n\n13960 [web] Fix default line-height issue for Firefox (cla: yes)\n\n13962 Added auto-reviewer config file (cla: yes)\n\n13963 Remove the strace debug logging from the Fuchsia gen_package script (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-241", "text": "13971 [fuchsia] Ensure we do not initialize nan RoundedRectangles (cla: yes)\n\n13975 Refactor to passing functions by const ref (CQ+1, cla: yes)\n\n13980 Updated googletest to fix fuchsia build. (CQ+1, cla: yes)\n\n13981 [web] use Element.nodes instead of Element.children in text layout (cla: yes, platform-web)\n\n13989 [fuchsia] Capture SkRRect in scene_update_context by value (cla: yes)\n\n13990 Setup a Metal test surface and add a new unit-test target that tests the testing utilities. (cla: yes)\n\nPRs closed in this release of flutter/plugins", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-242", "text": "PRs closed in this release of flutter/plugins\n\nFrom Sun Aug 19 17:37:00 2019 -0700 to Mon Nov 25 12:05:00 2019 -0800\n\n1370 [camera] Pause/resume video recording for Android & iOS (cla: yes, feature)\n\n1702 [google_maps_flutter]Marker drag event (cla: yes, in review)\n\n1767 [google_maps_flutter] Adds support for displaying the traffic layer (cla: yes, in review)\n\n1784 [google_maps_flutter] Allow (de-)serialization of CameraPosition (cla: yes, in review, submit queue)\n\n1813 [video-player] add support for content uris as urls (cla: yes, in review)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-243", "text": "1866 [instrumentation_adapter] enable Firebase Test Lab Android testing (cla: yes)\n\n1933 [google_maps_flutter] Avoid unnecessary redraws (cla: yes, in review)\n\n1953 [path_provider] add getApplicationLibraryDirectory (cla: yes)\n\n1984 Remove Flutterfire plugins (moved to FirebaseExtended) (cla: yes)\n\n1985 [android_alarm_manager] Added ability to get id in the callback (cla: yes)\n\n1990 [path_provider] Add missing tests (backlog, cla: yes)\n\n1993 [pathprovider] Fix fall through bug (cla: yes)\n\n1996 [webview_flutter] Allow underscores anywhere for Javascript Channel name (cla: yes)\n\n1998 [video_player] Fix deprecated member use (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-244", "text": "1998 [video_player] Fix deprecated member use (cla: yes)\n\n1999 [Connectivity] add a method to request location on iOS (for iOS 13) (cla: yes)\n\n2000 [android_intent] add flags option (cla: yes, submit queue)\n\n2003 [video_player] Added formatHint to to override video format on Android (cla: yes)\n\n2004 [cirrus] Use flutter create for all_plugins test (cla: yes)\n\n2005 Add explicit initialization of TestWidgets binding to all breaking unit tests (cla: yes)\n\n2009 Fix unit test for sensors (cla: yes)\n\n2010 [Image_picker] fix retrieveImage breakage, added tests. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-245", "text": "2014 [In_App_Purchase] Avoids possible NullPointerException with background registrations. (cla: yes, submit queue)\n\n2015 [google_sign_in] Use implementation rather than api dependencies for plugin third-party dependencies. (cla: yes)\n\n2016 [In_App_Purchase] Improve testability (cla: yes, in review)\n\n2022 [instrumentation_adapter] Update README instructions (cla: yes)\n\n2023 [instrumentation_adapter] update boilerplate to use @Rule instead of FlutterTest (cla: yes)\n\n2024 [instrumentation_adapter] update CODEOWNERS (cla: yes)\n\n2027 [in_app_purchase] Remove skipped driver test (cla: yes)\n\n2028 [instrumentation_adapter] Update documentation about using androidx (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-246", "text": "2029 fix android crash when pausing or resuming video on APIs lower than 24. (cla: yes, in review)\n\n2036 video player version fix (cla: yes)\n\n2038 [url_launcher] Removed reference to rootViewController during initialization (cla: yes, in review, waiting for test harness)\n\n2045 [android_intent] Add action_application_details_settings (cla: yes, submit queue)\n\n2047 [local_auth] Avoid user confirmation on face unlock (cla: yes, submit queue, waiting for test harness)\n\n2049 [path_provider] Android: Support multiple external storage options (cla: yes, in review)\n\n2050 [instrumentation_adapter] Add support for running tests with Flutter driver (cla: yes)\n\n2051 [instrumentation_adapter] update for release (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-247", "text": "2052 [instrumentation_adapter] Add stub iOS implementation and example app (cla: yes)\n\n2053 [google_maps_flutter] Fix analyzer failures relating to prefer_const_constructors (cla: yes)\n\n2055 Point opensource site at new location (cla: yes)\n\n2056 Reland \u201c[webview_flutter] Add a getTitle method to WebViewController\u201d\u2026 (cla: yes)\n\n2057 [Camera] Fixes NullPointerException (cla: yes, submit queue, waiting for test harness)\n\n2059 [google_sign_in] Fix chained async methods in error handling zones (cla: yes)\n\n2065 [google_maps_flutter] Prefer const constructors. (cla: yes)\n\n2068 [google_maps_flutter] Fix iOS MyLocationButton on iOS (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-248", "text": "2070 [image_picker] swap width and height when source image orientation is left or right (cla: yes, in review)\n\n2075 [instrumentation_adapter] Migrate example to AndroidX (cla: yes)\n\n2076 [google_maps_flutter] Clone cached elements in GoogleMap (cla: yes)\n\n2083 [image_picker] Fix a crash when picking video on iOS 13 and above. (cla: yes, in review)\n\n2084 [update] local_auth - intl version (cla: yes)\n\n2087 [android_alarm_manager] Update and migrate iOS example project (cla: yes)\n\n2088 [android_intent] Update and migrate iOS example project (cla: yes)\n\n2089 [battery] Update and migrate iOS example project (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-249", "text": "2090 [camera] Update and migrate iOS example project (cla: yes, submit queue)\n\n2091 [connectivity] Update and migrate iOS example project (cla: yes)\n\n2092 [device_info] Update and migrate iOS example project (cla: yes)\n\n2093 [google_maps_flutter] Update and migrate iOS example project (cla: yes)\n\n2094 [google_sign_in] Update and migrate iOS example project (cla: yes)\n\n2095 [image_picker] Update and migrate iOS example project (cla: yes)\n\n2096 [in_app_purchase] Update and migrate iOS example project (cla: yes, submit queue)\n\n2097 [local_auth] Update and migrate iOS example project (cla: yes)\n\n2098 [package_info] Update and migrate iOS example project (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-250", "text": "2099 [path_provider] Update and migrate iOS example project (cla: yes)\n\n2100 [quick_actions] Update and migrate iOS example project (cla: yes)\n\n2101 [sensors] Update and migrate iOS example project (cla: yes)\n\n2102 [share] Update and migrate iOS example project (cla: yes)\n\n2103 [shared_preferences] Update and migrate iOS example project (cla: yes)\n\n2108 [google_maps_flutter] Add Projection methods to google_maps (cla: yes)\n\n2109 [url_launcher] Update and migrate iOS example project (cla: yes, submit queue)\n\n2110 [video_player] Update and migrate iOS example project (cla: yes)\n\n2111 [local_auth] Api to stop authentication (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-251", "text": "2111 [local_auth] Api to stop authentication (cla: yes)\n\n2112 Run flutter_plugin_tools format (cla: yes)\n\n2113 [google_maps_flutter] Avoid AbstractMethod crash (cla: yes)\n\n2115 [camera] Define clang modules in for iOS (cla: yes)\n\n2119 Add web url launcher (cla: yes)\n\n2120 [image_picker] fix crash when aar from \u2018flutter build aar\u2019 (cla: yes, in review)\n\n2123 [camera] Fix event type check (cla: yes)\n\n2124 [video_player] Move [player dispose] to onUnregistered (cla: yes)\n\n2125 [in_app_purchase] Define clang module for iOS (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-252", "text": "2127 [google_sign_in] Fix deprecated API usage issue by upgrading CocoaPod to 5.0 (cla: yes, submit queue)\n\n2128 [image_picker] Define clang module for iOS (cla: yes)\n\n2131 [share]fix iOS crash when setting the subject to null (cla: yes)\n\n2135 [android_alarm_manager] Define clang module for iOS (cla: yes)\n\n2136 [url_launcher_web] Fix README.md pubspec example (cla: yes)\n\n2137 [connectivity] Define clang module for iOS (cla: yes)\n\n2138 [device_info] Define clang module for iOS (cla: yes)\n\n2139 [google_maps_flutter] Add NonNull macro to reduce warnings in iOS (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-253", "text": "2141 BugFix: formatHint was meant for network streams. (cla: yes)\n\n2142 [Connectivity] migrate to the new android embedding (cla: yes)\n\n2143 [android_intent] Migrate to the new embedding (cla: yes)\n\n2144 [android_intent] Define clang module for iOS (cla: yes)\n\n2145 [instrumentation_adapter] Define clang module for iOS (cla: yes)\n\n2146 [local_auth] Define clang module for iOS (cla: yes)\n\n2147 [path_provider] Define clang module for iOS (cla: yes)\n\n2148 [package_info] Define clang module for iOS (cla: yes)\n\n2149 [quick_actions] Define clang module for iOS (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-254", "text": "2152 [battery] Support the v2 Android embedder (cla: yes)\n\n2154 Use stable Flutter image as base (cla: yes)\n\n2155 [in_app_purchase] migrate to the v2 android embedding (cla: yes)\n\n2156 [Share] Support v2 android embedder. (cla: yes)\n\n2157 [url_launcher] Migrate to the new embedding (cla: yes)\n\n2158 [video_player] Basic test for VideoPlayerController initialization (cla: yes)\n\n2160 [package_info] Support the v2 Android embedder (with e2e tests) (cla: yes)\n\n2161 Rename instrumentation_adapter plugin to e2e plugin (cla: yes)\n\n2162 [shared_preferences] Support v2 android embedder. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-255", "text": "2163 [device_info] Support v2 android embedder. (cla: yes)\n\n2164 [sensor] Support v2 android embedder. (cla: yes)\n\n2165 [camera] Migrate to the new embedding (cla: yes)\n\n2167 [quick_actions] Support v2 android embedder. (cla: yes)\n\n2168 Add plugin for Android lifecycle in embedding (cla: yes)\n\n2169 [flutter_webview] Migrate to the new embedding (cla: yes)\n\n2174 [url_launcher] Enable androidx and jetifier in android gradle properties (cla: yes)\n\n2175 [sensors] Define clang module for iOS (cla: yes)\n\n2176 [shared_preferences] Define clang module for iOS (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-256", "text": "2177 [url_launcher] Define clang module for iOS (cla: yes)\n\n2178 [e2e] update README (cla: yes)\n\n2179 [battery] Define clang module for iOS (cla: yes)\n\n2180 [share] Define clang module for iOS (cla: yes)\n\n2182 [google_maps_flutter] Define clang module for iOS, fix analyzer warnings (cla: yes)\n\n2183 [video_player] Define clang module for iOS (cla: yes)\n\n2184 [google_sign_in] Define clang module for iOS (cla: yes)\n\n2185 [webview_flutter] Define clang module for iOS (cla: yes)\n\n2186 Run clang analyzer on iOS and macOS code in CI test when packages change (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-257", "text": "2188 [android_intent] Bump the Flutter SDK min version (cla: yes)\n\n2189 [battery] relax the example app minimal required Flutter version (cla: yes)\n\n2190 [e2e] Update to support new embedder (cla: yes)\n\n2191 [image_picker] Fix iOS build and analyzer warnings (cla: yes)\n\n2192 [in_app_purchase] Fix iOS build warning (cla: yes)\n\n2194 [battery] add e2e dependency to the example app (cla: yes)\n\n2195 [android_intent] Cleanup the V2 migration (cla: yes)\n\n2196 [webview_flutter] (Trivial) Add V2 warnings (cla: yes)\n\n2197 Enable testing on both master and stable (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-258", "text": "2197 Enable testing on both master and stable (cla: yes)\n\n2199 Revert \u201cEnable testing on both master and stable (#2197)\u201d (cla: yes)\n\n2200 [flutter_webview] Revert v2 embedder support (cla: yes)\n\n2201 [url_launcher] Revert embedding support (cla: yes)\n\n2202 [android_intent] componentName must be provided before resolveActivity is called (cla: yes, waiting for test harness)\n\n2203 Re-land testing of plugins on stable (cla: yes)\n\n2204 [url_launcher] Re-land v2 embedding support (cla: yes)\n\n2205 s/flutter_android_lifecycle/flutter_plugin_android_lifecycle/ (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-259", "text": "2206 [flutter_plugin_android_lifecycle] Update README with new plugin name (cla: yes)\n\n2207 [flutter_plugin_android_lifecycle] bump e2e depenency to 0.2.1 (cla: yes)\n\n2208 delete all example/android/app/gradle.properties files (cla: yes)\n\n2209 [webview_flutter] Re-land support v2 embedding support (cla: yes)\n\n2211 Ensure that when testing on stable Cirrus is upgraded to latest on iOS (cla: yes)\n\n2212 [connectivity]remove AndroidX constraint (cla: yes)\n\n2215 [in_app_purchase] remove AndroidX constraint (cla: yes)\n\n2216 [battery]Use android.arch.lifecycle instead of androidx.lifecycle:lifecycle in (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-260", "text": "2217 [url_launcher] Add url_launcher_platform_interface package (cla: yes)\n\n2218 [package_info]remove AndroidX constraint (cla: yes)\n\n2219 [camera]remove androidx constraint (cla: yes)\n\n2220 [url_launcher]remove AndroidX constraint (cla: yes)\n\n2221 [android_intent]remove AndroidX constraint (cla: yes)\n\n2222 Fix testing instructions in CONTRIBUTING.md (cla: yes)\n\n2223 [flutter_plugin_android_lifecycle] register the e2e plugin in the example app (cla: yes)\n\n2226 [video_player] Add v2 embedding support (cla: yes)\n\n2228 [url_launcher] Use url_launcher_platform_interface to handle calls (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-261", "text": "2230 Forbid ... implements UrlLauncherPlatform (cla: yes)\n\n2231 [cleanup] Remove AndroidX warning (cla: yes)\n\n2232 [multiple] V2 embedding plugins use compileOnly (cla: yes)\n\n2233 [e2e] update README (cla: yes)\n\n2236 Use package import to import files inside lib/ directory. (cla: yes)\n\n2237 [url_launcher] Migrate url_launcher_web to the platform interface (cla: yes)\n\n2239 [camera] Android: Improve image streaming by creating a request suita\u2026 (cla: yes, waiting for test harness)\n\n2241 [Shared_preferences]suppress warnings (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-262", "text": "2241 [Shared_preferences]suppress warnings (cla: yes)\n\n2242 [google_maps_flutter] Cast error.code to unsigned long to avoid using NSInteger as %ld format warnings. (cla: yes, submit queue)\n\n2243 [flutter_plugin_android_lifecycle] Adapt the FlutterLifecycleAdapter to the new embedding API (cla: yes)\n\n2244 [google_sign_in] Move plugin to its subdir to allow for federated implementations (cla: yes)\n\n2250 Run the publish with the pub version from flutter stable (cla: yes)\n\n2252 [google_sign_in] Handle new style URLs in GoogleUserCircleAvatar (cla: yes)\n\n2257 [webview_flutter] Add async NavigationDelegates (cla: yes)\n\n2260 Make setMockInitialValues handle non-prefixed keys (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-263", "text": "2261 [image_picker] more documentations and tests. (cla: yes)\n\n2262 [connectivity] add more documentations, delete example/README (cla: yes)\n\n2266 [google_sign_in] Port plugin to use the federated Platform Interface (cla: yes)\n\n2267 Bump google_maps_flutter pubspec version to match CHANGELOG (cla: yes)\n\n2268 [android_intent] Add missing DartDocs (cla: yes)\n\n2269 [connectivity] Lint for public DartDocs (cla: yes)\n\n2270 [image_picker] Lint for public DartDocs (cla: yes)\n\n2271 [infra] Ignore analyzer issues in CI (cla: yes)\n\n2272 [sensors] Documentation and test improvements (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-264", "text": "2272 [sensors] Documentation and test improvements (cla: yes)\n\n2273 [video_player] Add platform interface (cla: yes)\n\n2274 [url_launcher] DartDoc and test improvements (cla: yes)\n\n2275 Update cirrus to create IOS simulator on 13.2 an xCode 11 (cla: yes)\n\n2280 Add google_sign_in_web plugin. (cla: yes)\n\n2281 [connectivity] Fix reachability stream for iOS (cla: yes)\n\n2282 Migrate plugins to use e2e tests. (cla: yes)\n\n2284 [path_provider] Add v2 embedding support for (cla: yes)\n\n2286 [video_player] Improve DartDocs and test coverage (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "9935b6bd1c24-265", "text": "2288 [path_provider] Add missing DartDocs (cla: yes)\n\n2289 [url_launcher] Update deps and docs in url_launcher_web (cla: yes)\n\n2292 Update CONTRIBUTING.md to allow mockito (cla: yes)\n\n2293 [image_picker]fix a crash when a non-image file is picked. (cla: yes)\n\n2296 [shared_preferences] Add missing DartDoc (cla: yes)\n\n2297 [share] README update (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.12.13/index.html"} {"id": "84705d153d56-0", "text": "Change log for Flutter 1.2.2\n\nTools\n\nSDK\n\nRelease notes\n\n1.2.2 change log\n\nPRs closed in this release of flutter/flutter\n\nPRs closed in this release of flutter/engine\n\nPRs closed in this release of flutter/plugins\n\nPRs closed in this release of flutter/flutter\n\nFrom Fri Nov 29 19:41:00 2018 -0800 to Thu Feb 21 20:22:00 2019 -0800\n\n21157 Swap scope with gesture (cla: yes, f: scrolling, framework)\n\n22139 move INTERNET permission to debug/AndroidManifest.xml (cla: yes, tool, \u25a3 platform-android)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-1", "text": "23118 Setting icon color to first ListTile in ExpansionTile. Fixes #23053 (cla: yes, f: material design, framework)\n\n23188 Check for duplicative Flutter.framework emeddings when building for Xcode 10 (cla: yes, tool, \u233a\u202c platform-ios)\n\n23424 Teach drag start behaviors to DragGestureRecognizer (a: text input, cla: yes, d: examples, f: cupertino, f: date/time picker, f: gestures, f: material design, f: scrolling, framework)\n\n23506 Create slider with editable numerical value in gallery (cla: yes, f: material design, framework)\n\n23531 [O] Remove many timeouts. (a: tests, cla: yes, t: gradle, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-2", "text": "23677 Add animation tests for changes to the FloatingActionButtonLocation (cla: yes, f: material design, framework)\n\n23759 Adds CupertinoTheme (cla: yes, f: cupertino, f: material design, framework, team: gallery)\n\n23782 Add flutter_shared assets to module artifact (a: assets, t: gradle, tool)\n\n23817 Fix project directory has spaces lead to compile error (a: existing-apps, cla: yes, tool, \u25a3 platform-android)\n\n23860 Clearing pendingImages when the cache is cleared or evicted. (cla: yes, framework)\n\n23889 Flutter doctor error message lookup (cla: yes, t: flutter doctor, tool)\n\n23919 Allow detection of taps on TabBar (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-3", "text": "24156 [Material] Bottom app bar theme (cla: yes, f: material design, framework)\n\n24169 [Material] Theme-able elevation on dialogs. (cla: yes, f: material design, framework)\n\n24209 Do not ignore pubspec.lock in project templates (cla: yes, tool)\n\n24440 Adding support for android app bundle - Issue #17829 (cla: no, t: gradle, tool, \u25a3 platform-android)\n\n24449 Text field style merge (cla: yes, f: material design, framework)\n\n24457 Revise Android and iOS gestures on Material TextField (a: text input, cla: yes, f: cupertino, f: material design, framework)\n\n24511 [H] Undeprecate BigInteger support, but document what it actually does. (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-4", "text": "24513 Add some basic tests for evaluating expressions in flutter test (a: debugging, a: tests, cla: yes, tool)\n\n24515 Add some a basic debug stepping tests (a: debugging, cla: yes, tool)\n\n24527 obscureText and enableInteractiveSelection defaults (a: text input, cla: yes, framework)\n\n24537 Add ipv6 and observatory port support to the attach command. (cla: yes, customer: dream (g3), tool)\n\n24551 Add consumedScrollExtent to SliverConstraints as reported by Viewport (cla: yes, f: scrolling, framework)\n\n24554 Adds force press gesture detector and recognizer (cla: yes, f: gestures, framework)\n\n24580 Remove code signing special casing for Googlers round 2 (cla: yes, tool, \u233a\u202c platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-5", "text": "24581 [OR] Cleanup device lab test and remove a timeout. (cla: yes, t: hot reload, tool)\n\n24587 Validate style in TextField (cla: yes, f: material design, framework)\n\n24632 Include error message in crash reports (cla: yes, tool)\n\n24635 TextFormField cursor params (a: text input, cla: yes, f: material design, framework)\n\n24643 [H] Some minor tweaks to InputDecoration (mainly docs). (cla: yes, f: material design, framework)\n\n24669 Ensure that cache dirs and files have appropriate permissions (cla: yes, tool)\n\n24728 [H] Support setting the elevation of disabled floating action buttons (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-6", "text": "24736 [H] Provide some more locations for the FAB. (cla: yes, f: material design, framework)\n\n24744 drop/restore focus when app becomes invisible/visible (a: text input, cla: yes, framework)\n\n24746 Change the required version of adb, as older versions break hot reload. (cla: yes, tool, \u25a3 platform-android)\n\n24752 Replace platform check with switch (cla: yes, f: material design)\n\n24754 Replace Android-specific check with switch (cla: yes, framework, team)\n\n24761 Adds support for floating cursor (a: text input, cla: yes, framework)\n\n24767 [H] Improved positioning of leading and trailing widgets in overflowing ListTiles (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-7", "text": "24779 Skip formatters if text has not changed (a: text input, cla: yes, framework)\n\n24797 Iterate through potential grapheme cluster lengths in text painter (a: text input, a: typography, cla: yes, framework)\n\n24816 [H] ClipPath.shape and related fixes (cla: yes, f: material design, framework)\n\n24830 Implement hover support for mouse pointers. (cla: yes, f: gestures, framework, \u238a platform-chromebook, \u25a3 platform-android)\n\n24848 [H] Handle errors in compute() by propagating them to the Future. (cla: yes, framework)\n\n24862 Fix semantics compiler for offstage children (a: accessibility, cla: yes, framework, severe: crash)\n\n24868 Clarify dart:ui dependencies in foundation library (cla: yes, d: api docs, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-8", "text": "24876 Adds a fade in and out, rounds corners, fixes offset and fixes height of cursor on iOS (a: text input, cla: yes, f: cupertino, f: material design, framework)\n\n24878 Add a flutter-attach entry point for fuchsia (cla: yes, tool)\n\n24881 Remove offstage wording from KeepAlive (cla: yes, framework)\n\n24889 Update AUTHORS (cla: yes, team)\n\n24890 Remove deprecated lint \u201cprefer_bool_in_asserts\u201d. (cla: yes, team)\n\n24892 Handle a TabBarView special case: last tab deleted before animation ends (cla: yes, f: material design, framework)\n\n24930 Run flutter tests through mini test engine when run directly (flutter run -t test_file) (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-9", "text": "24932 Fixed Typography null factory constructor (cla: yes, f: material design, framework)\n\n24941 Update Switch doc: disabled state (cla: yes, f: material design, framework)\n\n24942 Fix debugPrint(null) to not crash (cla: yes, framework, severe: crash)\n\n24944 Fix flutter root error message string interpolation (cla: yes, tool)\n\n24953 Fuchsia multiple devices and target (cla: yes, customer: fuchsia, tool)\n\n24976 Support TextField multi-line hint text #20941 (cla: yes, f: material design, framework)\n\n24989 Add documentation for how to use annotated region (cla: yes, d: api docs, framework)\n\n24993 Add InputDecoration alignLabelWithHint parameter (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-10", "text": "24994 Add polling module discovery for Fuchsia (cla: yes, tool, \u25cb platform-fuchsia)\n\n24999 Remove TextField.noMaxLength, use maxLength = -1 instead (cla: yes, f: material design, framework)\n\n25003 Fix typo in documentation (cla: yes, d: api docs, framework)\n\n25007 Warn when building on master channel (cla: yes, tool)\n\n25008 [Slider] Custom track, ticker, and overlay shape painters (cla: yes, f: material design, framework)\n\n25013 Adds a small fix to the Cupertino Navigation demo (cla: yes, team: gallery)\n\n25046 Add a check for build methods that return context.widget (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-11", "text": "25048 Don\u2019t crash if pinned & floating AppBar has less than minExtent remainingPaintExtent (cla: yes, framework, severe: crash)\n\n25049 Fix behavior of handleDrawFrame() in benchmark mode. (a: tests, cla: yes, framework)\n\n25051 Do not fade out text for pinned & floating AppBar (cla: yes, f: material design, framework)\n\n25055 Include cursor in textfield intrinsic width measurement (a: text input, cla: yes, framework)\n\n25058 ensure lastBuildTimestamp is set before early return (cla: yes, tool)\n\n25076 fix: cuertino dialog action background blur effect (cla: yes, f: cupertino, framework)\n\n25079 Fix Podfile issue #24342 (cla: yes, tool, waiting for tree to go green, \u233a\u202c platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-12", "text": "25091 Add animations to SliverAppBar doc (cla: yes, d: api docs, f: material design, framework)\n\n25094 Include empty config message in \u2018flutter config\u2019 output (cla: yes, tool)\n\n25095 InputDecorator Count Widget (cla: yes, f: material design, framework)\n\n25096 Change network image URL in doc (cla: yes, d: api docs, framework)\n\n25120 Replace deprecated link (to design-principles page) in comment (cla: yes, d: api docs, f: material design, framework)\n\n25125 Add reverse functionality to repeat() of AnimationController (a: animation, cla: yes, framework)\n\n25126 Fix error message and other typos (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-13", "text": "25154 Don\u2019t require the AVD folder to exist in order to run flutter emulators (cla: yes, tool, \u25a3 platform-android)\n\n25159 fix #25143 Successive calls to precacheImage() throw an exception (cla: yes, framework, waiting for tree to go green)\n\n25168 Fixed an InheritedWidget code sample typo (cla: yes, framework)\n\n25178 Adds favicon to Dash/Zeal docset, adds OpenSearch metadata. (cla: yes, team)\n\n25183 Add navigatorKey to CupertinoTabView (cla: yes, f: cupertino, framework)\n\n25184 Add imports section to sample code templates, and more docs. (cla: yes, team)\n\n25186 Temporarily add back filtered bintray ExoPlayer repository (cla: yes, team: gallery)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-14", "text": "25217 Fixed Spelling. (cla: yes, framework)\n\n25221 Support ANDROID_SDK_ROOT in addition to ANDROID_HOME (cla: yes, tool, \u25a3 platform-android)\n\n25228 IntrinsicWidth stepWidth or stepHeight == 0.0 (cla: yes, framework)\n\n25229 Right aligned backspace bug (a: text input, cla: yes, framework)\n\n25237 Fix typo (a: text input, cla: yes, d: api docs, framework)\n\n25238 [OR] Update links for China help (cla: yes, tool)\n\n25239 Call mark* methods before attaching child (cla: yes, framework, severe: crash)\n\n25240 Revert \u201cEnsure that cache dirs and files have appropriate permissions\u201d (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-15", "text": "25243 Allow snippets tool to be run from arbitrary CWDs (cla: yes, d: api docs, team)\n\n25269 Make doctor output consistent between VS Code/IntelliJ/Android Studio when plugins are missing (cla: yes, t: flutter doctor, tool)\n\n25288 Revert \u201cAdd ipv6 and observatory port support to the attach command.\u201d (cla: yes, tool)\n\n25300 Remove uses-material-design from hello_world example (a: size, cla: yes, d: examples)\n\n25301 Flutter tool support for automatic saving of JIT compilation trace (cla: yes, framework, tool)\n\n25303 Add ipv6 and observatory port support to the attach command (cla: yes, tool)\n\n25305 Use stderr instead of stdout to contain errors in flutter attach test (a: tests, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-16", "text": "25332 [fuchsia] Get Dart VM service ports from The Hub (cla: yes, tool, \u25cb platform-fuchsia)\n\n25335 Revert \u201cobscureText and enableInteractiveSelection defaults\u201d (a: text input, cla: yes, framework)\n\n25339 [Material] Theme-able TextStyles for AlertDialog (cla: yes, f: material design, framework)\n\n25342 Revert \u201cRevert \u201cobscureText and enableInteractiveSelection defaults\u201d\u201d (a: text input, cla: yes, f: material design, framework)\n\n25344 Add fuchsia devices to daemon command (cla: yes, customer: fuchsia, tool)\n\n25345 assert(elevation >= 0.0) and doc clarifications (cla: yes, customer: fuchsia, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-17", "text": "25352 Revert \u201cAdds support for floating cursor\u201d (a: text input, cla: yes, f: cupertino, f: material design, framework)\n\n25380 Revert \u201cUse stderr instead of stdout to contain errors in flutter attach test\u201d (a: tests, cla: yes)\n\n25381 Add cull opacity perf test to device lab (a: tests, cla: yes, framework, severe: performance)\n\n25382 Revert \u201cCall mark* methods before attaching child (#25239)\u201d (cla: yes, framework, severe: crash)\n\n25384 Adds support for floating cursor (a: text input, cla: yes, f: cupertino, f: material design, framework)\n\n25390 Revert \u201cdrop/restore focus when app becomes invisible/visible\u201d (a: text input, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-18", "text": "25394 Update localizations (a: internationalization, cla: yes, framework)\n\n25395 Reland \u201cCall mark* methods before attaching child (#25239)\u201d (cla: yes, framework, severe: crash)\n\n25413 Added key.properties and *.jks to .gitignore (cla: yes, tool, waiting for tree to go green)\n\n25416 try disabling flutter run test (cla: yes, team)\n\n25440 don\u2019t warn for non-matching device discoverers (cla: yes, tool)\n\n25443 fix the daemon device.getDevices call (cla: yes, tool)\n\n25470 Support Java 1.8 (cla: yes, t: gradle, tool)\n\n25472 Read correct cached VM snapshot in dynamic mode (PRODUCT vs RELEASE) (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-19", "text": "25473 TextField.onChanged() doc update (a: text input, cla: yes, d: api docs, framework)\n\n25474 fix some formatting issues (a: animation, cla: yes, f: cupertino, framework, team)\n\n25477 TransitionRoute.canTransitionFrom,To() doc update (cla: yes, d: api docs, f: routes, framework)\n\n25479 Depend on the goldens repo through git. (a: tests, cla: yes, tool)\n\n25482 Mark flaky tests as such (a: tests, cla: yes)\n\n25483 Update examples to match the new version of generated build.gradle (cla: yes, d: examples)\n\n25484 Fix gradle local.properties tests that were never excersized (cla: yes, t: gradle, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-20", "text": "25488 Transition Curve Fix (a: animation, cla: yes, f: cupertino, framework)\n\n25489 Video demo instrumentation (a: tests, cla: yes, team: gallery)\n\n25512 Fix failed assert when running flutter test with --start-paused (cla: yes, tool)\n\n25513 make \u201cSee also\u201d sections uniform (cla: yes, team)\n\n25514 fix typo (cla: yes, team)\n\n25515 Write snippets index file when generating docs (cla: yes, d: api docs, team)\n\n25516 Change flutter create to use master-docs.flutter.io instead of firebase URL. (cla: yes, tool)\n\n25520 Fix flutter tool to actually honor \u2013build-number/\u2013build-name flags (cla: yes, t: gradle, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-21", "text": "25521 fix indentation in doc comments (cla: yes, team)\n\n25563 Revert \u201cUpdate examples to match the new version of generated build.gradle (#25483)\u201d (cla: yes, d: examples, t: gradle, team, team: gallery)\n\n25568 Fix the build (a: tests, cla: yes, team)\n\n25569 Reland: Update examples to match the new version of generated build.gradle (#25483) (cla: yes, d: examples, t: gradle, team)\n\n25573 Update DayPicker,DatePicker doc \u201csee also\u201d sections (cla: yes, d: api docs, f: date/time picker, f: material design, framework)\n\n25574 Use full textspan tree instead of top level textspan (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-22", "text": "25576 Flutter tool support for building dynamic patches on Android (cla: yes, t: gradle, tool)\n\n25579 fix doc-comment snippets (cla: yes, team)\n\n25582 Add missing dependency to fix the build (cla: yes, team, team: gallery)\n\n25584 Fix material reference in CupertinoPicker doc (cla: yes, d: api docs, f: cupertino, framework)\n\n25585 Expose font fallback API in TextStyle, Roll engine 54a3577c0139..215ca1560088 (8 commits) (a: typography, cla: yes, f: material design, framework)\n\n25586 Report devfs stats (cla: yes, tool)\n\n25593 Let CupertinoTabScaffold handle keyboard insets too (cla: yes, f: cupertino, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-23", "text": "25594 Switch over to the new name for compilation trace native function (cla: yes, framework)\n\n25595 Don\u2019t parse APK unless explicitly requested (cla: yes, tool)\n\n25604 no period after an alone reference in see also section (cla: yes, d: api docs, framework)\n\n25631 Default baseline build options (cla: yes, tool)\n\n25642 Revert dependency upgrade to see if it helps with build times and APK size (cla: yes, team, team: gallery)\n\n25645 Friendlier flags for Dart compilation training. (cla: yes, tool)\n\n25646 Revert \u201c[O] Remove many timeouts.\u201d (a: tests, cla: yes, t: flutter driver, tool)\n\n25670 3D SemanticsTree (a: accessibility, cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-24", "text": "25674 Updated Shrine demo (a: tests, cla: yes, team, team: gallery)\n\n25678 Pin the goldens repo to a specific commit in the android_views test. (a: tests, cla: yes)\n\n25682 Move runner directory messages to the user messages class (a: internationalization, cla: yes, tool)\n\n25683 Selects a word on force tap (a: text input, cla: yes, f: cupertino, f: material design, framework)\n\n25718 Fix merge conflict. (cla: yes, f: material design, framework)\n\n25788 Add Robert Penner\u2019s easing functions (a: animation, cla: yes, framework)\n\n25790 Clarify doc for AnimatedContainer (a: animation, cla: yes, d: api docs, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-25", "text": "25792 Actively reject UiKitView gestures. (a: platform-views, cla: yes, f: gestures, framework)\n\n25796 Allow dynamic patches without a patch number. (cla: yes, t: gradle, tool)\n\n25798 remove early-stage from Gallery\u2019s About screen (cla: yes, team, team: gallery)\n\n25799 Make LicensePage respect the notch (cla: yes, f: material design, framework)\n\n25815 Flutter engine roll with dart roll (cla: yes)\n\n25817 fix flutter run in dev/manual_tests (a: tests, cla: yes, team)\n\n25849 Roll engine to f0a1d6f91 (cla: yes)\n\n25854 Fix analyzer \u201cprefer const\u201d warning. (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-26", "text": "25857 Mark flutter_gallery__back_button_memory as flaky. (a: tests, cla: yes, team, team: gallery)\n\n25863 Friendlier messages when using dynamic patching (cla: yes, tool)\n\n25864 Make decodeImageFromList mockable (cla: yes, framework)\n\n25865 [H] Add ImageStreamCompleter.hasListeners (and cleanup) (cla: yes, f: material design, framework)\n\n25872 Optimize cocoapods logic in flutter doctor. (cla: yes, customer: gold, tool, waiting for tree to go green, \u233a\u202c platform-ios)\n\n25888 Extract TestBorder into a utility file (a: tests, cla: yes)\n\n25922 update lint list (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-27", "text": "25922 update lint list (cla: yes, team)\n\n25974 Add a validator to ensure NO_PROXY is set correctly if HTTP_PROXY is set (cla: yes, t: flutter doctor, tool)\n\n25977 Add didSendFirstFrameEvent service extension. (cla: yes, framework)\n\n25980 Ensure all errors thrown by image providers can be caught by developers. (cla: yes, framework)\n\n25984 use RRect to draw avatar check on chip (cla: yes, f: material design, framework)\n\n25988 Add Golden test for background painting order. (a: tests, cla: yes, engine)\n\n25992 Add docs to TextStyle for fontFamilyFallback/Custom font fallback (cla: yes, d: api docs, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-28", "text": "25994 Simplify ImageStream(Completer).removeListener (cla: yes, framework)\n\n25995 Address code review comment. (cla: yes, team)\n\n26001 Add long-press-drag cursor move support for text fields (a: text input, cla: yes, f: cupertino, f: material design, framework, severe: API break)\n\n26015 [fuchsia] Fix flutter_gallery BUILD.gn (cla: yes, team, team: gallery)\n\n26017 Fix recursive link resulted flutter doctor stucking. (cla: yes, customer: gold, tool, \u25a3 platform-android)\n\n26021 Fix SliverAppBar title opacity and test all cases (cla: yes, f: material design, framework)\n\n26024 Workaround the Gradle crash due to non ASCII characters. (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-29", "text": "26030 Turn clipping on for Card Demo (cla: yes, team, team: gallery)\n\n26031 Clean gallery about page post-1.0 (cla: yes, team, team: gallery)\n\n26039 Report hot reload statistics. (cla: yes, t: hot reload, tool)\n\n26041 Update dartdoc to 0.27.0 (cla: yes, d: api docs, team)\n\n26042 Update material spec references in BottomSheet et al., Scaffold (cla: yes, d: api docs, f: material design, framework)\n\n26069 Improve the intergrity checking for \u201cgradle wrapper\u201d. (cla: yes, t: gradle, tool)\n\n26084 Improve message when saving compilation training data (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-30", "text": "26088 Fix typos introduced with the TextField.onTap PR, udpated debugFillProperties (cla: yes, f: material design, framework)\n\n26089 Explain that BoxDecoration doesn\u2019t do clip. (cla: yes, d: api docs, framework)\n\n26090 Replace netls and netaddr with dev_finder (cla: yes, tool, \u25cb platform-fuchsia)\n\n26101 Fix a floating snapping SliverAppBar crash (cla: yes, f: material design, framework)\n\n26104 Put correct VM snapshot in APK when using cached engine (cla: yes, tool)\n\n26107 Better error messages for flutter tool \u2013dynamic flag. (cla: yes, tool)\n\n26143 Fix DropDownButton with no items resulting in RenderFlex overflow (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-31", "text": "26153 Remove the cc @Hixie from no-response template (cla: yes, team)\n\n26192 [FAB] Adding FAB as class in tests. (cla: yes, f: material design, framework)\n\n26199 Fix tristate checkbox false to null transition, test ALL transitions (cla: yes, f: material design, framework)\n\n26201 Prevent calls to view.uiIsolate.flutterExit on devices which do not support it (cla: yes, tool, \u25cb platform-fuchsia)\n\n26203 Add support for reverse to ReorderableListView (cla: yes, f: material design, framework)\n\n26209 Revert \u201cTeach drag start behaviors to DragGestureRecognizer (#23424)\u201d (a: text input, cla: yes, d: examples, f: cupertino, f: gestures, f: material design, f: scrolling, framework, team: gallery)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-32", "text": "26227 Give integration tests unique temp folder names (a: tests, cla: yes)\n\n26235 rev the min dart sdk dep in the templates to 2.1.0 (cla: yes, tool)\n\n26238 Remove long-deprecated TwoLevelList (cla: yes, f: material design, framework, severe: API break)\n\n26239 Force DatePicker value to stay within firstDate and lastDate upon year change (cla: yes, f: date/time picker, framework)\n\n26244 move analysis_options to package (cla: yes, team)\n\n26246 Teach drag start behaviors to DragGestureRecognizer (cla: yes, f: gestures, f: scrolling, framework)\n\n26249 Revert \u201cReplace netls and netaddr with dev_finder\u201d (cla: yes, tool, \u25cb platform-fuchsia)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-33", "text": "26250 Reland: Switch to dev_finder (cla: yes, tool, \u25cb platform-fuchsia)\n\n26252 Manual engine roll with analyzer fixes (cla: yes)\n\n26257 Add link to Flutter brand guidelines (cla: yes, f: material design, framework)\n\n26259 Deprecate Scaffold resizeToAvoidBottomPadding, now resizeToAvoidBottomInset (cla: yes, f: material design, framework)\n\n26260 Fixed typo (cla: yes, d: api docs, f: material design, framework)\n\n26262 Declare a system message channel for Skia configuration (cla: yes, dependency: skia, framework)\n\n26265 Add support for detecting which modifier keys have been pressed on RawKeyboardEvents (a: text input, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-34", "text": "26266 [flutter_driver] Move Fuchsia logging code. (cla: yes, t: flutter driver, tool, \u25cb platform-fuchsia)\n\n26269 Update docs for editable_text (TextField) (a: text input, cla: yes, d: api docs, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n26270 Fix red tree (Android module) (cla: yes, t: gradle, tool)\n\n26271 Add compileOptions to android_host_app (a: existing-apps, a: tests, cla: yes)\n\n26274 Add source line to snippet metadata file (cla: yes, d: api docs)\n\n26285 Wrap lines at 80 characters (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-35", "text": "26290 Add new curve animations to class documentation (a: animation, cla: yes, d: api docs, framework, waiting for tree to go green)\n\n26295 Added the superellipse (a.k.a. squircle) shape to flutter. (a: fidelity, cla: yes, f: cupertino, framework)\n\n26297 Added \u2018physics\u2019 prop to Stepper. (cla: yes, f: material design, framework)\n\n26300 Allow bundle identifier to be surrounded with quotes. (cla: yes, tool)\n\n26303 Adds a type parameter to invokeMethod (and additional utility methods) (cla: yes, framework, p: framework, plugin, team)\n\n26309 Fix descenders cutoff in TextField (a: text input, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-36", "text": "26312 Add logic for creating rollback dynamic patches. (cla: yes, t: gradle, tool, \u25a3 platform-android)\n\n26313 Fix Listenable.merge to not leak (cla: yes, framework)\n\n26315 Ensure that Dart SDK dirs have appropriate permissions (cla: yes, tool)\n\n26332 Integrate Strut: Add StrutStyle, expose Strut API, wire up strut with dart:ui, Roll engine 31a7f4d..e7eb1c8 (7 commits) (a: text input, a: typography, cla: yes, framework, severe: API break)\n\n26333 Add back lost gallery theme code (cla: yes, team, team: gallery, waiting for tree to go green)\n\n26334 mark tests as not flaky (a: tests, cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-37", "text": "26337 chromebot recipe instructions missing a step (cla: yes, team)\n\n26339 Revert \u201cCheck for duplicative Flutter.framework emeddings when building for Xcode 10\u201d (cla: yes, t: xcode, tool, \u233a\u202c platform-ios)\n\n26376 removed image with 404 (cla: yes, team)\n\n26377 Restore ignore for *.lock files (cla: yes)\n\n26378 Friendlier flutter tool messages for dynamic mode (cla: yes, tool)\n\n26385 Deprecate the animated image frame cache (a: tests, cla: yes, framework)\n\n26386 Check response code, retry when downloading docs (cla: yes, team)\n\n26388 fix #26207 .gitignore only include project root build directory (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-38", "text": "26389 Make sure package cache prepare does not end up creating projects inside the cloned Flutter repo (a: tests, cla: yes, team)\n\n26392 Avoid use of ParagraphConstrains const ctor (cla: yes, framework, team)\n\n26395 Emit more of HTTP error response bodies (cla: yes, team)\n\n26402 Let the packaging recipe use gsutil.py (cla: yes, team)\n\n26403 Re-enable compute credites for macOS PRs only. (cla: yes, team)\n\n26422 Create an injectable factory for application packages. (cla: yes, tool)\n\n26426 Send ServiceExtensionToggled event when service extension is set. (cla: yes, f: inspector, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-39", "text": "26430 Roll engine e5ec3cf3ea5c..b7f6bf0192d1 (28 commits) (cla: yes)\n\n26436 Revert \u201cmove analysis_options to package\u201d (cla: yes, team)\n\n26440 [fuchsia] Add BUILD.gn for flutter_localizations (a: internationalization, cla: yes, framework)\n\n26441 Fix some doc references (cla: yes, d: api docs, f: cupertino, framework)\n\n26444 Update compileSdkVersion in the Android app templates to Android P (cla: yes, tool, \u25a3 platform-android)\n\n26449 Add asserts for @required parameters (cla: yes, framework, team)\n\n26450 Add a manifest for profile builds that enables INTERNET permission (cla: yes, tool, \u25a3 platform-android)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-40", "text": "26454 Cleanup temporary catchError. (cla: yes, framework)\n\n26456 flutter create --template=plugin now includes flutter (dart) unit test (cla: yes, tool)\n\n26482 Grammatical fix: \u201cplaces\u201d to \u201cplaced\u201d (cla: yes, d: api docs, framework)\n\n26511 desktop workflow, devices, and test (cla: yes, tool, \u2318\u202c platform-mac, \u2756 platform-windows, \ud83d\udc27 platform-linux)\n\n26519 Skip flutter test expression eval tests (a: tests, cla: yes, tool)\n\n26533 [Material] TabBarTheme text style parameters (cla: yes, f: material design, framework)\n\n26537 Report overall and transfer timings as part of hot reload statistics,\u2026 (cla: yes, t: hot reload, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-41", "text": "26539 Narrow regexp for import search in bot\u2019s analyze script. (cla: yes, team)\n\n26545 remove ignore_for_file lints (cla: yes, team)\n\n26546 Update dartdoc to 0.28.0 and add flags to constrain warnings (cla: yes, d: api docs, team)\n\n26550 Remove incorrect Coveralls badge. (cla: yes, team)\n\n26559 add type parameter back to PageRouteFactory (cla: yes, team)\n\n26562 Remove todo from Podhelpr.rb (cla: yes, team)\n\n26565 Emulator support for dynamic mode on Intel architecture (cla: yes, tool, \u25a3 platform-android)\n\n26579 Fix+unskip flutter test expression eval tests (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-42", "text": "26586 Added Sample code for Stack widget (cla: yes, d: api docs, framework)\n\n26589 Do not exit tool if parts of fuchsia workflow fail (cla: yes, tool, \u25cb platform-fuchsia)\n\n26592 Prevent crash when calling lerp for IconThemeData with null arguments (cla: yes, framework)\n\n26593 Support running macOS prebuilt application (cla: yes, tool, \u2318\u202c platform-mac)\n\n26596 Roll engine to 5983e34a3c0e1217da7e8bbe9f2fe685048fe259 (cla: yes)\n\n26597 [Material] Implement App Bar Theme (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-43", "text": "26598 Add tests for getOffsetToReveal on RenderSlivers (a: tests, cla: yes, framework, severe: crash)\n\n26604 Adding a shutdown hook to HotRunnerConfig (cla: yes, tool)\n\n26605 Implemented Dark Mode for Android (#25525) (cla: yes, f: material design, framework, \u25a3 platform-android)\n\n26611 IconButton backgroundColor doc sample (cla: yes, d: api docs, f: material design, framework)\n\n26612 Remove TODO, reduce tech debt (cla: yes, team)\n\n26613 Updated AlertDialog content doc (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-44", "text": "26629 [HX] Quick fix for tap-to-show-keyboard regression (a: text input, cla: yes, f: gestures, f: material design, framework, \u26a0 TODAY)\n\n26630 Move flutter_assets to App.framework (a: existing-apps, cla: yes, t: xcode, tool, \u233a\u202c platform-ios)\n\n26642 Fix \u2013build-shared-library on newer NDKs (cla: yes, tool, \u25a3 platform-android)\n\n26644 Revert \u201cAdd flutter_shared assets to module artifact (#23782)\u201d (a: assets, cla: yes, t: gradle, tool)\n\n26650 Wrap dart:convert to track utf8 decode failures (cla: yes, tool)\n\n26652 Fix rounding error in build tests (a: tests, a: text input, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-45", "text": "26659 Adds fix for NAN value and pressure values outside of device reported min and max (a: text input, cla: yes, f: gestures, framework, waiting for tree to go green)\n\n26663 Make getOffsetToReveal work with nested Viewports (cla: yes, f: scrolling, framework)\n\n26668 [Gradle] Copy ICU data to flutter_shared only when building an AAR module (cla: yes, t: gradle, tool)\n\n26669 Register hotRestart service in flutter_tools. (cla: yes, tool)\n\n26675 Revert \u201cMove flutter_assets to App.framework (#26630)\u201d (a: existing-apps, cla: yes, t: xcode, tool)\n\n26680 [frdp] Adds paths for find and ls for Fuchsia execution. (cla: yes, team, tool, \u25cb platform-fuchsia)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-46", "text": "26690 Doc fix: SliverChildBuilderDelegate is the lazy one (cla: yes, d: api docs, f: scrolling, framework)\n\n26693 Add another test to ImageStream (a: tests, cla: yes, framework, waiting for tree to go green)\n\n26694 Roll engine back to 1e93a8eb39d79f643952737aa4fc31e1787a5a17 (cla: yes, engine, team)\n\n26702 Update test temp folder name to be more consistent with others (a: tests, cla: yes, tool)\n\n26713 Roll engine to 05fee4eeee0ff6b219b1fcc394371e5f6963cc46 (a: assets, cla: yes, tool, \u233a\u202c platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-47", "text": "26715 Experimental flags in flutter (cla: yes, tool)\n\n26716 Fix missing const analyzer warning (a: tests, cla: yes, team)\n\n26720 Allow attaching to profile builds (cla: yes, tool)\n\n26721 Respect EditableText.keyboardAppearance (a: text input, cla: yes, f: cupertino, framework)\n\n26722 [Material] Refactor _build methods in BottomNavBar (cla: yes, f: material design, framework)\n\n26727 Roll engine to d470fc65ea1cb91ae66706b320d82c4536a4da8b (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-48", "text": "26734 Reverts default DragStartBehavior to DragStartBehavior.down (a: text input, cla: yes, f: cupertino, f: material design, f: scrolling, framework)\n\n26736 [O] Removing all timeouts (mark II) (a: tests, cla: yes, framework, t: flutter driver, team, tool)\n\n26737 Use Cirrus image\u2019s fastlane instead of freezing our own set of gem dependencies (cla: yes, team, team: gallery)\n\n26763 Close the Scaffold drawer in scroll_perf_test.dart (cla: yes, team)\n\n26764 Fix lerp in textTheme to allow for null parameters (cla: yes, f: material design, framework)\n\n26765 [Material] Inline the single Theme.of(context) call in BAB (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-49", "text": "26766 Report early error if appropriate host local engine is not found. (cla: yes, tool)\n\n26770 Revert switch drag behavior (cla: yes, f: material design, framework)\n\n26774 [cupertino_icons] add car, bus, train, paw, controller, and flask icons. (cla: yes, f: cupertino, framework)\n\n26778 Better ListTile leading/trailing widget alignment (cla: yes, f: material design, framework)\n\n26790 Rev Android Platform to 28 for bots (cla: yes, t: gradle, team)\n\n26793 Fill editable_text.dart test coverage (a: tests, a: text input, cla: yes, framework)\n\n26795 Update VERSION_LINUX_SDK (cla: yes, team, \ud83d\udc27 platform-linux)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-50", "text": "26796 [Material] Theme data type for cards (cla: yes, f: material design, framework)\n\n26797 Update VERSION_WIN_SDK (cla: yes, team, \u2756 platform-windows)\n\n26798 targetSdkVersion 28 (cla: yes, d: examples, team, \u25a3 platform-android)\n\n26807 #19060 Update material.google.com links to material.io (cla: yes, d: api docs, f: material design, framework, team)\n\n26808 Add Checkbox checkIcon color parameter (cla: yes, f: material design, framework)\n\n26809 Fix test expectations per change made in #26736 (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-51", "text": "26819 Refactor android launchable activity extractor logic (cla: yes, customer: gold, tool, waiting for tree to go green, \u25a3 platform-android)\n\n26826 Avoid calling cancel on AnsiSpinner more than once when building for iOS (cla: yes, tool, \u2318\u202c platform-mac, \u233a\u202c platform-ios)\n\n26840 Support using flutter with specific version (cla: yes, tool)\n\n26883 Move Circle CI badge next to heading in Readme (cla: yes, team)\n\n26896 Add uiMode to android:configChanges (cla: yes, team, tool, \u25a3 platform-android)\n\n26898 make FDE opt-in via the environment variable (cla: yes, tool)\n\n26900 Make reassemble public (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-52", "text": "26900 Make reassemble public (cla: yes, framework)\n\n26901 Add Dismissible.confirmDismiss callback (cla: yes, f: material design, framework)\n\n26904 Fix immediately overriding the user\u2019s chosen AM/PM selection (cla: yes, f: cupertino, f: date/time picker, framework, waiting for tree to go green)\n\n26911 Dismissible not dismissable (cla: yes, team, team: gallery)\n\n26913 Upgrade the Gradle script to Android plugin version 3.3.0 (cla: yes, team)\n\n26921 fix some bad indentations (cla: yes, team)\n\n26926 Roll engine to 10eb972fc15b8a3f97ed7c26032cae03b10fca2c (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-53", "text": "26932 Make UriMapper and StdoutHandler public and add test cases (cla: yes, tool)\n\n26938 Fix gradle verbose error. (cla: yes, customer: gold, t: gradle, tool, waiting for tree to go green)\n\n26942 Detect Android SDK 28/28.0.3 (a: first hour, cla: yes, t: flutter doctor, tool, waiting for tree to go green, \u25a3 platform-android)\n\n26944 Use mDNS to discover the device port (cla: yes, tool, \u233a\u202c platform-ios)\n\n26964 Refactor logic to get plugins path for android studio in mac (cla: yes, customer: gold, t: gradle, tool, waiting for tree to go green, \u25a3 platform-android)\n\n26967 Use site-shared as canonical source for Flutter logo (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-54", "text": "26970 Fix a problem that: PODS_ROOT not defined because that Debug.xcconfig misses Flutter environment (cla: yes, customer: gold, t: xcode, tool, waiting for tree to go green, \u233a\u202c platform-ios)\n\n26978 Add flutter_build package for codegen and version sync with tool (cla: yes, tool)\n\n26988 Experimental flags for hot reloads (cla: yes, t: hot reload, tool)\n\n26989 Add experimentalBuildEnabled flag and initial shim for build_runner (cla: yes, tool)\n\n26990 Re-enable use of ParagraphConstrains const ctor (cla: yes, framework, team)\n\n26991 Assert when calling a method that tries to use the ticker unsafely after dispose (a: animation, a: debugging, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-55", "text": "26993 Add WorkspaceSettings.xcsettings for stocks app (cla: yes, d: examples)\n\n26996 Explain font platform inconsistency (cla: yes, d: api docs, framework)\n\n27003 Add more RenderEditable test coverage (a: tests, a: text input, cla: yes, framework)\n\n27032 Pass \u2013verify-entry-points in debug mode. (cla: yes, tool)\n\n27037 Revert \u201cExperimental flags for hot reloads\u201d (cla: yes, t: hot reload, tool)\n\n27039 Improve documentation on decodeSyslog (cla: yes, tool, \u233a\u202c platform-ios)\n\n27042 Updated DropdownButton docs (cla: yes, f: material design, framework)\n\n27043 Experimental flags for hot reloads, fixed (cla: yes, t: hot reload, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-56", "text": "27045 Revert \u201cUpgrade the Gradle script to Android plugin version 3.3.0 (#26913)\u201d (cla: yes, t: gradle, team)\n\n27046 Update packages (cla: yes, team)\n\n27049 Roll engine to 31c79171796c7d24d5f81033db77e25f95c45a64 (cla: yes)\n\n27053 Modify offline docs platform family for Dash/Zeal (cla: yes, team)\n\n27054 Update flutter clean to remove .dart_tool directory (cla: yes, tool)\n\n27058 Add arguments for pushing named routes (cla: yes, d: examples, f: routes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-57", "text": "27059 Revert \u201cExperimental flags for hot reloads, fixed\u201d (cla: yes, t: hot reload, tool)\n\n27093 Update readmes for stocks/gallery (cla: yes, d: examples, team, team: gallery)\n\n27096 Revert \u201cWarn when building on master channel (#25007)\u201d (cla: yes, tool)\n\n27097 Typo fixes for notched_shapes.dart (cla: yes, framework)\n\n27111 format initializer list of constructors (cla: yes, team)\n\n27112 prevent _computeColumnWidths from getting stuck due to double precision (cla: yes, framework)\n\n27113 Fix gsutil.py call for windows (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-58", "text": "27114 Adds haptic vibration to Cupertino switch (cla: yes, f: cupertino, framework)\n\n27116 Add some instructions to the README for packaging archives locally (cla: yes, team)\n\n27122 Add module checking (cla: yes, tool)\n\n27140 Add docs and sample for takeException (a: tests, cla: yes, d: api docs)\n\n27154 Add2App: Fix crash resulted from hard-code module \u2018app\u2019 (a: existing-apps, cla: yes, customer: gold, t: gradle, tool)\n\n27169 Update an IconButton sample, add RaisedButton sample (cla: yes, d: api docs, f: material design, framework)\n\n27181 Change \u201cStarting Xcode build\u201d status text to \u201cRunning xcode build\u201d (cla: yes, t: xcode, tool, \u2318\u202c platform-mac)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-59", "text": "27186 Improve unsupported text (cla: yes, tool)\n\n27191 Revert f9e6242db (#26944) (cla: yes, tool)\n\n27195 PopupMenuDivider.represents() paramter must be void, not Null (cla: yes, f: material design, framework)\n\n27197 Add default values for optional parameters. (cla: yes, team)\n\n27199 Remove obsolete ignore: (cla: yes, framework, team)\n\n27207 Add support for multiroot scheme to PackageUriMapper (cla: yes, tool)\n\n27208 Add a flag to enable tracing to systrace. (cla: yes, tool, \u25a3 platform-android)\n\n27211 Inject KernelCompiler via KernelCompilerFactory (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-60", "text": "27252 Add support for experimental flags during hot reload. (cla: yes, t: hot reload, tool)\n\n27253 [flutter_tool,doctor] Fix and test gen_snapshot failure message (cla: yes, tool)\n\n27256 Update additionalTime in TestWidgetsFlutterBinding.runAsync() to 1000. (a: tests, cla: yes, team)\n\n27257 Add basic codegen app to be used for integration testing and benchmarks (a: tests, cla: yes, tool)\n\n27260 Update Align docs (cla: yes, framework, waiting for tree to go green)\n\n27261 format parameter list (cla: yes, team)\n\n27271 Remove all obsolete \u201c// ignore:\u201d (cla: yes, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-61", "text": "27272 Fix asserts for initialDateTime in CupertinoDatePicker (cla: yes, f: cupertino, f: date/time picker, framework, waiting for tree to go green)\n\n27274 Add missing comma to fix build (cla: yes, d: api docs, framework)\n\n27277 Use flutter_tools to generate build_script (cla: yes, tool)\n\n27278 Make version documentation clearer. (cla: yes, tool)\n\n27295 Handle missing curl (cla: yes, tool)\n\n27297 Add Material/Card borderOnForeground flag to allow border to be painted behind the child widget (cla: yes, f: material design, framework)\n\n27305 Outline for survey implementation (cla: yes, d: api docs, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-62", "text": "27316 Add elevation to Chips to allow for more flexibility (cla: yes, f: material design, framework)\n\n27319 Don\u2019t send accept/reject if compilation never started. (cla: yes, tool)\n\n27322 Fix typo in WrapAlignment documentation (cla: yes, d: api docs, framework, waiting for tree to go green)\n\n27323 don\u2019t pass the \u2013packages-dir flag (cla: yes, tool)\n\n27365 Updated focus handling for nested FocusScopes (cla: yes)\n\n27367 Update shrine login screen so that cancel dismisses the route (cla: yes, team, team: gallery)\n\n27374 Lazily download artifacts: The Phantom Menace (cla: yes, tool)\n\n27376 Material.border type is now BorderRadiusGeometry (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-63", "text": "27378 Make the deviceDiscovery API overridable (cla: yes, tool)\n\n27381 Fix bug in UnconstrainedBox class debugFillProperties (a: debugging, cla: yes, framework)\n\n27387 Track InheritedElement dependencies in diagnostic properties (cla: yes, framework)\n\n27389 Enable dependency injection of Window instead of using static property (cla: yes)\n\n27399 Add elevation/pressElevation to ChipThemeData (cla: yes, f: material design, framework)\n\n27400 Ensure Shrine app respects the platform toggle from Gallery options (cla: yes, team, team: gallery)\n\n27409 Ensure all curves return 0 and 1 in .transform(t) when t=0/1 (a: animation, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-64", "text": "27410 Disable usage of bare instructions in AOT (cla: yes, tool)\n\n27413 Fix typo \u201cwhen when\u201d (cla: yes, d: api docs, framework)\n\n27424 [H] Expose \u201ccenter\u201d on CustomScrollView (cla: yes, f: date/time picker, f: scrolling)\n\n27425 [HR] Clean up matters related to \u201coffstageness\u201d. (cla: yes, framework)\n\n27432 Remove leftover of GlobalKey removal listeners (cla: yes, framework)\n\n27433 Fix issue where SliverPersistentHeader that is both floating and pinned would scroll down when scrolling past the beginning of the ScrollView (cla: yes, f: scrolling, framework, waiting for tree to go green)\n\n27471 Refactor ios bundleid/android application process logic. (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-65", "text": "27477 [H] Tabs (cla: yes, f: material design, framework)\n\n27481 Move Brightness to dart:ui in the engine (#27479). (cla: yes, framework)\n\n27487 [H] Make NotchedShape more practical to use (cla: yes, f: material design, framework)\n\n27501 Update docs for initstate(), didUpdateWidget(), dispose() (cla: yes, d: api docs, framework)\n\n27502 Make a kReleaseMode constant that is public. (cla: yes, framework)\n\n27504 Added support for the Galician language (material_es_GL.arb) (a: internationalization, cla: yes, framework)\n\n27505 Remove icudtl.dat from APK asset size checks (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-66", "text": "27506 Added support for Swahili (material_sw.arb) (a: internationalization, cla: yes, framework)\n\n27509 Removed double the (cla: yes, d: api docs, f: material design, framework)\n\n27510 [Material] Allow slider shapes to be easily resized (cla: yes, f: material design, framework)\n\n27511 Update dartdoc to 0.28.1+1 and add parameters for source-code linking (cla: yes, team)\n\n27513 Add scroll performance test for flutter_gallery (cla: yes, team)\n\n27519 Update OutlineButton on-pressed fill color (cla: yes, f: material design, framework)\n\n27528 Fixed Cupertino Switch Demo (cla: yes, f: cupertino, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-67", "text": "27531 Print 50000$ monopoly money (cla: yes, tool, waiting for tree to go green)\n\n27532 Add @isTest to Flutter\u2019s wrappers over group/test (a: tests, cla: yes)\n\n27534 Stop using SelectionChangedCause internally to show the text selection toolbar (a: text input, cla: yes, f: cupertino, f: material design, framework, severe: API break)\n\n27553 Use CP_REPOS_DIR if it\u2019s set (cla: yes, tool, \u233a\u202c platform-ios)\n\n27556 update flutter and flutter.bat command to suggest stable branch (cla: yes, tool)\n\n27559 Update dartdoc to 0.28.1+2 and fix search text alignment (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-68", "text": "27564 Fix window bug in _sendPlatformMessage() (#27541). (cla: yes, framework, p: framework)\n\n27566 Warn when gradle builds fail because of AndroidX (cla: yes, t: gradle, tool)\n\n27568 Fix initial scroll of TabBar in release mode (cla: yes, f: material design, f: scrolling, framework)\n\n27569 Bugfix: Add platformBrightness to TestWindow. (a: tests, cla: yes)\n\n27570 Small cleanup in CupertinoSliverRefreshControl (cla: yes, f: cupertino, framework)\n\n27573 Let text selection toolbar buttons be independent from theme (cla: yes, f: cupertino, framework)\n\n27575 Update OutlineButton default border width and highlight elevation (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-69", "text": "27576 Handle CupertinoTabScaffold rebuilds with deleted tabs (cla: yes, f: cupertino, framework)\n\n27577 [flutter_driver] Use async call to run SSH cmds w/o deadlock. (cla: yes, t: flutter driver, tool, \u25cb platform-fuchsia)\n\n27588 CupertinoSliverRefreshControl inactive overscroll behavior (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n27596 Check powershell version. (cla: yes, tool, waiting for tree to go green, \u2756 platform-windows)\n\n27604 Update material Galician (gl) translations filename (a: internationalization, cla: yes, framework)\n\n27607 Remove build runner from injection (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-70", "text": "27607 Remove build runner from injection (cla: yes, tool)\n\n27613 [Material] Simple API for skipping over certain Slider shapes (cla: yes, f: material design, framework)\n\n27615 fix list devices throwing on junk input (cla: yes, tool, \u25cb platform-fuchsia)\n\n27616 minor doc fixes for overlay (cla: yes, framework)\n\n27620 Add a keyboard key code generator. (cla: yes, tool)\n\n27623 Make FlexibleSpaceBar title padding configurable (cla: yes, f: material design, framework)\n\n27627 Adding support for logical and physical key events (cla: yes, framework)\n\n27632 Null check logic for datatable. (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-71", "text": "27647 Fixed #27621: CupertinoTimerPicker breaks if minuteInterval > 1 (cla: yes, f: cupertino, framework)\n\n27648 Make sample analyzer more friendly for running locally. (cla: yes, team)\n\n27659 fix small typo (cla: yes, framework, waiting for tree to go green)\n\n27661 Add build_runner_core to flutter_tools BUILD.gn (cla: yes, tool)\n\n27663 TextField should only set EditableText.cursorOffset for iOS (a: text input, cla: yes, f: material design, framework)\n\n27665 Add desktop devices to daemon behind flag (cla: yes, tool)\n\n27668 Wire dart2js through flutter tool, add compilation test (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-72", "text": "27672 Support for building dynamic patches in AOT mode. (cla: yes, tool)\n\n27687 Add android studio process logic for JetBrainsToolbox (cla: yes, customer: gold, tool, \u25a3 platform-android, \u26a0 TODAY)\n\n27690 remove super_goes_last (cla: yes, team)\n\n27691 Fix Xcode_backend.sh for flavors (cla: yes, t: xcode, tool, waiting for tree to go green, \u233a\u202c platform-ios)\n\n27697 Cupertino TextField Cursor Fix (a: text input, cla: yes, f: cupertino, framework)\n\n27699 [Material] Update the card demo in the Gallery to demonstrate different uses of the Card widget (cla: yes, f: material design, framework, team, team: gallery)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-73", "text": "27703 Add builder parameter to showDatePicker, showTimePicker (cla: yes, f: date/time picker, f: material design, framework)\n\n27705 Revert \u201cLazily download artifacts\u201d (cla: yes, tool)\n\n27708 remove build_runner_core import from flutter_tools (cla: yes, tool)\n\n27709 Increase our build budget to 16ms (cla: yes, t: flutter driver, tool)\n\n27717 Refactor \u201cno ios devices attached\u201d logic. (cla: yes, tool, \u233a\u202c platform-ios)\n\n27735 Lazily download artifacts (Part II): The Clone Wars (cla: yes, tool)\n\n27743 Refactor build-number/build-name logic. (cla: yes, t: gradle, t: xcode, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-74", "text": "27752 Adding horizontal and vertical scale parameter to ScaleUpdateDetails. (cla: yes, f: gestures, framework, waiting for tree to go green)\n\n27754 Add support for binary compression of dynamic patches by the flutter tool. (cla: yes, t: gradle, tool)\n\n27765 Refactor local engine logic (cla: yes, t: xcode, tool, \u233a\u202c platform-ios)\n\n27773 DatePicker noon/midnight overflow fix (cla: yes, f: cupertino, f: date/time picker, framework)\n\n27789 Revert \u201cDisable usage of bare instructions in AOT (#27410)\u201d (cla: yes, tool)\n\n27793 Remove remaining \u201c### Sample code\u201d segments, and fix the snippet generator. (cla: yes, d: api docs, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-75", "text": "27800 Prevent tests from importing other tests. (a: tests, cla: yes, team)\n\n27803 Added sample code to AnimatedWidget (a: animation, cla: yes, d: api docs, framework, waiting for tree to go green)\n\n27808 Manual Engine roll for flutter/engine#7791 - Add trailing whitespace tracking. (a: text input, cla: yes, framework)\n\n27812 Pass method used to start flutter application (cla: yes, tool)\n\n27817 Optimize flutter run logic for iOS by \u201cONLY_ACTIVE_ARCH=YES\u201d if possible (cla: yes)\n\n27818 Fix Dashing rules to use new dartdoc CSS entity markers. (cla: yes, d: api docs, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-76", "text": "27825 Deflake AnsiSpinner tests (a: tests, cla: yes, team, team: flakes, waiting for tree to go green)\n\n27849 Revert \u201cRoll engine 713fe130eb02..d48de7a3ec97 (1 commits)\u201d (cla: yes)\n\n27851 Fixes a cursor offset mistake for Material on iOS (a: text input, cla: yes, framework, \u233a\u202c platform-ios)\n\n27853 Hook up character events and unmodified code points to Android raw key event handling. (cla: yes, framework)\n\n27855 Reland \u201cRoll engine 713fe130eb02..d48de7a3ec97 (1 commits)\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-77", "text": "27861 Temporarily disable inconsistent strut golden tests due to test fonts (a: tests, a: typography, cla: yes, framework)\n\n27864 Fix crash when disposing nested Scrollables while holding in overscroll position (cla: yes, f: scrolling, framework, severe: crash)\n\n27865 Add Armenian translations (a: internationalization, cla: yes, framework)\n\n27866 Handle back swipe completed->completed or completed->dismissed transitions (cla: yes, f: cupertino, f: routes, framework)\n\n27873 Don\u2019t cache result for homeDirPath. (cla: yes, tool)\n\n27892 Fix overflow clipping/fading for text (cla: yes, framework)\n\n27895 Revert \u201cLazily download artifacts (Part II)\u201d (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-78", "text": "27900 Fixes switch vibration (cla: yes, f: cupertino, framework)\n\n27902 update packages and supress lint (cla: yes, framework, tool, waiting for tree to go green)\n\n27908 Reland automatic discovery of observatory port for iOS (cla: yes, tool, waiting for tree to go green, \u2318\u202c platform-mac, \u233a\u202c platform-ios)\n\n27914 fix multiroot scheme (cla: yes, tool)\n\n27915 Revert \u201c[HR] Clean up matters related to \u201coffstageness\u201d.\u201d (cla: yes, f: scrolling, framework)\n\n27919 Revert \u201cEnsure all curves return 0 and 1 in .transform(t) when t=0/1\u201d (a: animation, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-79", "text": "27929 Use double literals where a double type is expected (a: animation, cla: yes, framework, team)\n\n27945 Fixes crossAxisSpacing overflow in RTL (a: internationalization, cla: yes, f: scrolling, framework, waiting for tree to go green)\n\n27953 Add outer try block for obtainKey errors. Add docs. (cla: yes, framework, waiting for tree to go green)\n\n27955 Adds media query check in editable_text (a: text input, cla: yes, framework, waiting for tree to go green)\n\n27966 Revert \u201cFix overflow clipping/fading for text\u201d (a: typography, cla: yes, framework)\n\n27968 Sample code for Icon class (cla: yes, d: api docs, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-80", "text": "27969 Do not draw Slider tick marks if they are too dense (cla: yes, f: material design, framework)\n\n27970 Make sure the selection is still painted under the text (a: text input, cla: yes, framework)\n\n27973 Add extendBody parameter to Scaffold, body MediaQuery reflects BAB height (cla: yes, f: material design, framework)\n\n27980 Reapply \u201cFix overflow clipping/fading for text (#27892)\u201d (a: typography, cla: yes, framework)\n\n27983 Test text paint orders by color (a: tests, a: text input, cla: yes, framework)\n\n27987 add ui.Window fallback to TestViewConfiguration (a: tests, cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-81", "text": "28006 Re-apply \u201cEnsure all curves return 0 and 1 in .transform(t) when t=0/1\u201d (a: animation, cla: yes, framework)\n\n28011 Remove accidentally committed libs (cla: yes, tool)\n\n28024 Disable prefer_collection_literals in the analyzer until we can update to using set literals (cla: yes, team)\n\n28027 Remove extra slash from builder that is not handled on windows (cla: yes, tool)\n\n28031 Revert \u201cAdd support for binary compression of dynamic patches by the flutter tool. (#27754)\u201d (cla: yes, t: gradle, tool, \u25a3 platform-android)\n\n28032 Revert 26001 (a: text input, cla: yes, f: cupertino, f: material design, framework, severe: API break)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-82", "text": "28040 Remove json_schema and cli_util deps from flutter_tool (cla: yes, team, tool, waiting for tree to go green)\n\n28101 Remove unused \u2013packages argument to gen_snapshot. (cla: yes, tool)\n\n28178 Roll engine to f45572e95f93edb89b6750a4f36ad8ed7c0a2560 (cla: yes)\n\n28182 Add TextOverflow.visible (a: typography, cla: yes, framework, waiting for tree to go green)\n\n28183 Rename SuperellipseShare ContinuousRectangleBorder (cla: yes, f: material design, framework)\n\n28216 Fix \u2018to to\u2019 (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-83", "text": "28222 Manual engine roll to 6d7eb52185b117a3972cac4e23625f97198114d9 (cla: yes)\n\n28224 Adds a template for Pull Requests (cla: yes, team, waiting for tree to go green)\n\n28235 Remove line breaks from PR template (cla: yes, team)\n\n28238 Remove set literal syntax (cla: yes, team)\n\n28265 Revert \u201cRemove unused \u2013packages argument to gen_snapshot.\u201d (cla: yes, tool)\n\n28272 Make logcat less chatty on perf tests (cla: yes, team)\n\nPRs closed in this release of flutter/engine", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-84", "text": "PRs closed in this release of flutter/engine\n\nFrom Fri Nov 29 19:41:00 2018 -0800 to Thu Feb 21 20:22:00 2019 -0800\n\n6399 System Channels, Plugins, Dart Entrypoint, FlutterFragment (cla: yes)\n\n6558 Retained rendering in Fuchsia PhysicalShapeLayer (cla: yes)\n\n6719 Add onStart hook to FlutterFragmentActivity (cla: yes)\n\n6805 [OR] Offset.fromDirection and Size.aspectRatio (cla: yes)\n\n6879 Allow FlutterViewController to be released when not initialized with an engine (cla: yes)\n\n6903 [H] Undeprecate BigInteger support, but document what it actually does. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-85", "text": "6913 Support real fonts in \u2018flutter test\u2019 (cla: yes)\n\n6918 Announce in/out of list (cla: yes)\n\n6919 Reland \u201cCompile libcxx and libcxxabi for Android (#6886)\u201d (cla: yes, size)\n\n6922 Verify RunConfiguration is valid before running (cla: yes)\n\n6923 Compute cull_rect and optimize in Layer::Preroll (cla: yes)\n\n6926 Roll buildtools to bac220c15490dcf7b7d8136f75100bbc77e8d217 (cla: yes, size)\n\n6927 Support overriding font leading in TextStyle and LibTxt (affects: text input, brand new feature, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-86", "text": "6936 Return real null instead of null string when locale has not been set in locale closure. (cla: yes)\n\n6945 Adds force cursor support (cla: yes)\n\n6961 Add hover event support to the engine (cla: yes)\n\n6967 Eliminate obsolete FlutterDartProject initializers (cla: yes)\n\n6973 Eliminate main_dart_file_path, package_file_path (cla: yes)\n\n6977 Rename dart-non-checked-mode: disable-dart-asserts (cla: yes)\n\n6985 Fix keyboard not showing for targetSdk 28 (cla: yes)\n\n6989 Japanese Clear Text Crash (cla: yes)\n\n6991 MInor Docs to runtime controller WindowData (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-87", "text": "7002 Support querying display refresh rate in engine (cla: yes)\n\n7012 Merge latest from master => 21008 staging branch (cla: yes)\n\n7024 Roll Skia to 57d29eaf2ed7518983d9e91fd5219f4cfc181f88 (cla: yes)\n\n7031 Pass operator_new_alignment value through gn script into GN args. (cla: yes)\n\n7048 Only overflow the cache for one required frame (cla: yes)\n\n7068 SK_SUPPORT_LEGACY_TEXTENCODINGENUM (cla: yes)\n\n7087 Wire up support for external OpenGL textures for the embedder. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-88", "text": "7097 Simplify conversion of numeric types in the message codec on iOS (cla: yes)\n\n7098 Android embedding refactor PR1: JNI Extraction to FlutterJNI.java (cla: yes)\n\n7102 Prepare for upcoming fuchsia vulkan driver changes (cla: yes)\n\n7108 Fix destruction of the child object list in the iOS accessibility bridge (cla: yes)\n\n7146 Revert \u201cReland \u201cCompile libcxx and libcxxabi for Android (#6886)\u201d\u201d (cla: yes, size)\n\n7151 Generalize runFromBundle to support multiple bundlePaths (cla: yes)\n\n7152 Add native for fetching compilation trace as a memory buffer, for use in automated tools (cla: yes)\n\n7158 Minor comments fix and add TODO (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-89", "text": "7158 Minor comments fix and add TODO (cla: yes)\n\n7160 Reland \u201cCompile libcxx and libcxxabi for Android (#6886)\u201d (cla: yes, size)\n\n7161 Handle null bundlePaths in FlutterRunArguments (cla: yes)\n\n7162 Merge master branch into skia-master (cla: no)\n\n7163 Merge skia-master branch into master (cla: no)\n\n7164 Add empty metrics to account for truncated whitespace for GetRectsForRange. (cla: yes)\n\n7179 Fixed Spelling. (cla: yes)\n\n7185 Check for empty line before adding empty \u2018padding\u2019 metrics (cla: yes)\n\n7187 Revert \u201cSupport overriding font leading in TextStyle and LibTxt (#6927)\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-90", "text": "7189 Remove unnecessary includes of Skia headers. (cla: yes)\n\n7194 Roll buildroot to 4cb5a74c9612b71b917997f46e97da6d1051eab4 (cla: yes, size)\n\n7195 Roll buildroot to 8e538639660413490ea9261eee84864005e240f4 (cla: yes, size)\n\n7202 Add .woff file to binary format (cla: yes)\n\n7207 Downloading and installation of dynamic updates on Android (cla: yes)\n\n7208 Fallback font match caching to fix emoji lag. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-91", "text": "7213 Roll Dart to version e15e8609aa8610f8c432f1caf2ab89358e2fce50 (cla: yes)\n\n7214 [Fuchsia] Depend on libtrace when that is what\u2019s really meant (cla: yes)\n\n7221 [vulkan] Fix Fuchsia build (cla: yes)\n\n7227 Compile embedder unit test Dart to kernel (cla: yes)\n\n7230 Revert \u201cCompile embedder unit test Dart to kernel (#7227)\u201d (cla: yes)\n\n7231 Compile embedder unit test Dart to kernel (re-land) (cla: yes)\n\n7234 Fix misspelling in doc comments (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-92", "text": "7234 Fix misspelling in doc comments (cla: yes)\n\n7235 Fix settings.advisory_script_uri in iOS createShell (cla: yes)\n\n7237 Allow inferred types using diamond syntax (cla: yes)\n\n7238 Clarify TextAffinity docs (cla: yes)\n\n7239 Simplify nested try-with-resources statements (cla: yes)\n\n7240 Fix linter errors in ResourceUpdater (cla: yes)\n\n7241 Support user-provided font-fallback. (cla: yes)\n\n7242 Revert spelling correction in licence matcher (cla: yes)\n\n7244 iOS A11y memory leak (cla: yes)\n\n7245 Roll buildroot to support Android SDK 28 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-93", "text": "7246 Update iOS unit test for the removal of hex string encoding of uint64 data (cla: yes)\n\n7248 Update terminology to match that of the flutter tool (cla: yes)\n\n7250 Extract function to collect licenses for component (cla: yes)\n\n7254 Fix javadoc for Android-28 (cla: yes)\n\n7256 Document native functions for compilation trace (cla: yes)\n\n7257 Add a system message channel for controlling the Skia resource cache size (cla: yes)\n\n7258 Remove unused GrContext in AndroidSurfaceGL (cla: yes)\n\n7260 Re-run license tool on all source when it changes (cla: yes)\n\n7261 Update usage of some Android APIs that are deprecated in API level 28 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-94", "text": "7266 Eliminate use of new keyword in license tool (cla: yes)\n\n7267 Mark all unreassigned locals final in license tool (cla: yes)\n\n7269 [License] Eliminate duplicate case in switch (cla: yes)\n\n7270 [License] Assert license filename is non-null, non-empty (cla: yes)\n\n7272 Make IOManager own resource context (cla: yes)\n\n7273 [License] Sync analysis_options.yaml from framework (cla: yes)\n\n7274 TextAffinity Docs Improvement (cla: yes)\n\n7275 [License] Enable avoid_positional_boolean_parameters lint (cla: yes)\n\n7276 Remove unused native function dumpCompilationTrace() (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-95", "text": "7281 TextInputType.number default fix (cla: yes)\n\n7282 Add elevation and thickness to SemanticsNode (accessibility, cla: yes)\n\n7283 Revert \u201cRoll Dart to version e15e8609aa8610f8c432f1caf2ab89358e2fce50\u201d (cla: yes)\n\n7284 Roll buildroot and update method of getting android SDK and support libs (cla: yes)\n\n7286 Roll version of Dart to d1817ddc91fd3aea061647b2e21860c47a5a5180 (cla: yes)\n\n7287 Paint all backgrounds first to prevent overlap (cla: yes)\n\n7307 Only reject gestures to embedded UIViews when the framework says so. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-96", "text": "7308 Support loading flutter assets from dynamic patch (cla: yes)\n\n7309 Allow dynamic patches without a patch number. (cla: yes)\n\n7313 Revert \u201cOnly reject gestures to embedded UIViews when the framework s\u2026 (cla: yes)\n\n7315 Reland \u201cOnly reject gestures to embedded UIViews when the framework sa\u2026 (cla: yes)\n\n7316 Roll dart to 88e6fe0f67 (cla: yes)\n\n7317 Recreate the overlay rendering surfaces if the GrContext was changed. (cla: yes)\n\n7322 Roll buildroot (cla: yes)\n\n7324 Update GetCallbackHandle to use Dart_IsTearOff instead of a string comparison (cla: yes)\n\n7325 Minor refactoring of dynamic patching code. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-97", "text": "7325 Minor refactoring of dynamic patching code. (cla: yes)\n\n7327 Give more control over when dynamic patches get downloaded and installed. (cla: yes)\n\n7346 Make ParagraphConstraints have const constructor (cla: yes)\n\n7354 Preparing to remove SK_SUPPORT_LEGACY_PAINT_TEXTMEASURE (cla: yes)\n\n7360 Fix typo clas -> class (cla: yes)\n\n7363 Roll Dart to version ec86471ccc47a62df8b4009e1fb37c66ff9dc91b (cla: yes)\n\n7370 [HR] Documentation cleanup (cla: yes)\n\n7371 Test SDK roll (cla: yes)\n\n7374 Revert \u201cTest SDK roll\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-98", "text": "7374 Revert \u201cTest SDK roll\u201d (cla: yes)\n\n7387 Improve TextAffinity Docs (cla: yes)\n\n7398 Replace Java code with equivalent, more concise code. (cla: yes)\n\n7401 Reset ParagraphBuilder after build() (cla: yes)\n\n7403 Dart SDK roll for 2019-01-07 (cla: yes)\n\n7404 fix up analysis for Dart in Engine (cla: yes)\n\n7405 Dart SDK roll for 2019-01-07 (cla: yes)\n\n7409 Cleanup dead code (cla: yes)\n\n7410 Refactor shared code into separate function to simplify further work. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-99", "text": "7411 Dart SDK roll for 2019-01-08 (cla: yes)\n\n7413 remove deprecated updateNode argument (cla: yes)\n\n7414 Strut implementation (cla: yes)\n\n7416 Dart SDK roll for 2019-01-08 (cla: yes)\n\n7417 Dart SDK roll for 2019-01-09 (cla: yes)\n\n7419 Dart SDK roll for 2019-01-09 (cla: yes)\n\n7421 Dart SDK roll for 2019-01-09 (cla: yes)\n\n7426 Refactor dynamic patching to use clearer naming and structure. (cla: yes)\n\n7427 Allow embedders to add per shell idle notification callbacks. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-100", "text": "7428 Download dynamic patch to separate file to avoid races (cla: yes)\n\n7429 Eliminate unused import of ZipException (cla: yes)\n\n7431 Dart SDK roll for 2019-01-09 (cla: yes)\n\n7432 Improve 404 handling when downloading dynamic patches. (cla: yes)\n\n7433 Eliminate std::string using directive (cla: yes)\n\n7435 Add Ahem to LibTxt testing fonts. (cla: yes)\n\n7436 Clear the font collection\u2019s cache when a font is dynamically loaded (cla: yes)\n\n7437 Temporary revert of Dart SDK rolls made since 2019/01/08 (cla: yes)\n\n7439 Remove legacy and deprecated defaultClipBehavior (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-101", "text": "7439 Remove legacy and deprecated defaultClipBehavior (cla: yes)\n\n7442 Move Picture.toImage rasterization to the GPU thread (cla: yes)\n\n7443 Avg ms/frame instead of FPS in performance overlay (cla: yes)\n\n7444 Pass deadline to embedder idle notification callback (cla: yes)\n\n7445 Use anti-aliasing when drawing text in the performance overlay (cla: yes)\n\n7446 Reland Dart SDK rolls made since 2019/01/08 (cla: yes)\n\n7447 Make SetLocales more consistent with other RuntimeController methods (cla: yes)\n\n7449 Dart SDK roll for 2019-01-11 (cla: yes)\n\n7450 Stop pumping frames in applicationWillResignActive (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-102", "text": "7451 Dart SDK roll for 2019-01-11 (cla: yes)\n\n7459 add ColorFilter matrix support (cla: yes)\n\n7461 Dart SDK roll for 2019-01-14 (cla: yes)\n\n7463 Dart SDK roll for 2019-01-14 (cla: yes)\n\n7464 update site to use SkFont for text fields (cla: yes)\n\n7476 Log errors returned from method channel invocations in the text input plugin (cla: yes)\n\n7480 Switch to Skia\u2019s new SkColorSpace factory (cla: yes)\n\n7483 Revert \u201cAdd elevation and thickness to SemanticsNode\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-103", "text": "7484 Reland \u201cAdd elevation and thickness to SemanticsNode (#7282)\u201d (accessibility, cla: yes)\n\n7485 Execute Picture.toImage on the current thread in the test environment (cla: yes)\n\n7488 Implemented Dark Mode for Android (#25525) (cla: yes)\n\n7492 Cleanup Dart sticky errors API and roll tonic to 4634b29a24ccfc0fcfafcc8196ef30131185ad88 (cla: yes)\n\n7493 Add runttime unittest that loads and runs an isolate from the kernel. (cla: yes)\n\n7495 Add unittest that runs Dart code synchronously. (cla: yes)\n\n7496 Validate dynamic patches before attempting to install (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-104", "text": "7496 Validate dynamic patches before attempting to install (cla: yes)\n\n7497 Deprecate FlutterProjectArgs.main_path, packages_path (cla: yes)\n\n7500 Introduced a number of Java system channels in io/flutter/embedding/engine/systemchannels/ (cla: yes)\n\n7503 Edit the bundleid so that it conform to UIT specifications. (cla: yes)\n\n7511 Remove unused headers (cla: yes)\n\n7512 Wrap the user entrypoint function in a zone with native exception callback. (cla: yes)\n\n7516 Fixes Android pressure range (cla: yes)\n\n7518 Update default flutter_assets path for iOS embedding (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-105", "text": "7518 Update default flutter_assets path for iOS embedding (cla: yes)\n\n7522 Revert \u201cWrap the user entrypoint function in a zone with native exception callback. (#7512)\u201d (cla: yes)\n\n7525 Support custom kernel blob path in test fixtures (cla: yes)\n\n7528 Ensure the ResourceContext is not ripped out from under dart (cla: yes)\n\n7530 Fix suspicious typo \u201cpainted\u201d to \u201cpaint\u201d (cla: yes)\n\n7532 Mark new unavailable for those init marked unavailable (cla: yes)\n\n7533 Configure the embedder for AOT in \u201cprofile\u201d and \u201crelease\u201d runtime modes. (cla: yes)\n\n7537 Add mock capability to PerformanceOverlayLayer (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-106", "text": "7537 Add mock capability to PerformanceOverlayLayer (cla: yes)\n\n7538 Allow embedders to specify AOT snapshot buffers. (cla: yes)\n\n7539 IWYU to get SkFontMetrics (cla: yes)\n\n7544 Keep engine alive if VC is not deallocated (cla: yes)\n\n7545 IWYU, esp. since SkFontMetrics.h is leaving SkPaint.h (cla: yes)\n\n7548 Remove SkColorSpaceXformCanvas, use color-managed SkSurfaces instead (cla: yes)\n\n7549 Remove the shell build target\u2019s dependency on the embedder library (cla: yes)\n\n7551 Re-land \u201cWrap the user entrypoint function in a zone with native exception callback. (#7512)\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-107", "text": "7558 Fix UIButton selector doesn\u2019t work in iOS platformview (cla: yes)\n\n7563 Fix typos in Fuchsia (cla: yes)\n\n7566 Avoid unnecessarily creating/destroying the PlatformView (cla: yes)\n\n7567 Rename FlutterResult in embedder.h (cla: yes)\n\n7576 Allow generating coverage reports for all unit-tests in the engine. (cla: yes)\n\n7577 [embedder] Avoid looking for the kernel binary in AOT builds. (cla: yes)\n\n7579 Add lcov coverage file generation. (cla: yes)\n\n7588 Embed ICU data inside libflutter.so on Android (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-108", "text": "7591 Roll buildroot to b4d21cb2a64d63218c8d99533d9c14e99201e8d8 (cla: yes)\n\n7602 Update buildtools to c9e5400c9e03a0cfb7313d14fde38525399a7715 (cla: yes)\n\n7610 Provide public api to allow FlutterEngine related context to be destoryed (affects: engine, cla: yes, customer: gold, platform-ios)\n\n7611 Update license to sync with flutter/flutter (cla: yes)\n\n7617 Allow the engine to redirect traces to systrace via settings. (cla: yes)\n\n7621 Improve PathMetrics (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-109", "text": "7621 Improve PathMetrics (cla: yes)\n\n7628 Check in GEM_HOME for jazzy (cla: yes)\n\n7633 Revert buildtools roll back to bac220c (cla: yes)\n\n7634 Expose the Flutter engine, Dart and Skia versions to Dart. (cla: yes)\n\n7642 Initial import of FDE macOS framework (cla: yes)\n\n7643 Respect default goma path on Windows (cla: yes)\n\n7645 Fix dynamic array -> vector (cla: yes)\n\n7647 Update the verify_exported script to include the symbols for ICU data (cla: yes)\n\n7648 [embedder] Document make_resource_current on FlutterOpenGLRendererConfig and warn if the callback is not set. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-110", "text": "7649 Fix two typos in embedder docs (cla: yes)\n\n7651 Add FlutterProjectArgs::root_isolate_create_callback (cla: yes)\n\n7658 Use the Wuffs GIF decoder (cla: yes)\n\n7659 DCHECK that clip layer\u2019s behavior isn\u2019t none (cla: yes)\n\n7660 Add kernel-worker and dart2js to BUILD.gn (cla: yes)\n\n7678 Move Brightness definition to dart:ui (#27479) (cla: yes)\n\n7686 Replace hb_face_reference_table with hb_ot_color_has_png in isColorBitmapFont (cla: yes)\n\n7687 Lower the threshold to raster cache pictures (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-111", "text": "7687 Lower the threshold to raster cache pictures (cla: yes)\n\n7689 Revert \u201cDisable the persistent cache (#6835)\u201d (cla: yes)\n\n7691 Don\u2019t warn for Async texture uploads on Fuchsia (cla: yes)\n\n7692 Ensure dart2js and kernel worker snapshots are copied out of gen dir (cla: yes)\n\n7694 Create stubbed dart:ui implementation, dart2js libraries file, copy rule (cla: yes)\n\n7701 Revert \u201cLower the threshold to raster cache pictures\u201d (cla: yes)\n\n7702 Update snapshot build rules to generate .o files instead of .S files on Windows (Windows, cla: yes)\n\n7708 [fuchsia] Update scenic include (cla: yes)\n\n7713 Disable wuff on Windows (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-112", "text": "7713 Disable wuff on Windows (cla: yes)\n\n7715 Decode using the last cached required frame (cla: yes, crash)\n\n7717 Allow all entrypoints support by the command line VM. (cla: yes)\n\n7718 Roll buildroot to c82412bcdcd593f1385a478ae2c4b8eb9814f3b8 (cla: yes)\n\n7719 libtxt: support justification of RTL text (cla: yes)\n\n7725 Correct libraries.yaml path for stub_ui, add brightness, copy dart2js_platform.dill files (cla: yes)\n\n7726 Fix versions implementation (cla: yes)\n\n7731 [fuchsia] Update path to fuchsia.ui.scenic (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-113", "text": "7733 Update documentation for command line args in FlutterProjectArgs. (cla: yes)\n\n7734 Use all font managers to discover fonts for strut. (cla: yes)\n\n7735 Use correct flags on LUCI/legacy (cla: yes)\n\n7737 Provide a default pressure range if a MotionEvent does not have a device (cla: yes)\n\n7738 Android embedding refactor pr3 add remaining systemchannels (cla: yes)\n\n7739 Add onPlatformBrightnessChanged/platformBrightness to stub ui window. (cla: yes)\n\n7740 Rename macOS framework to FlutterMacOS.framework (cla: yes)\n\n7741 use full git hash for version (cla: yes)\n\n7744 Support for loading dynamic patches in AOT mode. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-114", "text": "7746 Don\u2019t call OnAnimatorNotifyIdle if a frame is scheduled (cla: yes)\n\n7751 Create mipmaps for images when uploading them on the IO thread (cla: yes)\n\n7753 allow specifying out directory root (cla: yes)\n\n7755 Document GPUSurfaceGLDelegate methods and move it to its own file. (cla: yes)\n\n7756 Add flutter config to macOS targets (cla: yes)\n\n7758 Recommended implementation of combining characters implementation. (cla: yes)\n\n7759 Throttle picture raster cache (cla: yes)\n\n7762 Allow specifying the out directory prefix (cla: yes)\n\n7764 Add x bit to some python scripts (cla: yes)\n\n7765 Revert \u201cAdd mock capability to PerformanceOverlayLayer\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-115", "text": "7777 Support for binary decompression of dynamic patches. (cla: yes)\n\n7785 Don\u2019t use WUFFs (cla: yes)\n\n7786 Update licenses for the switch away from the Wuffs GIF decoder (cla: yes)\n\n7790 Allow embedders to specify pointer device IDs. (cla: yes)\n\n7791 Add space metrics tracking for trailing whitespace \u201cghost\u201d runs. (cla: yes)\n\n7801 Revert \u201cUse all font managers to discover fonts for strut. (#7734)\u201d (cla: yes)\n\n7804 Add support for new Scenic clip planes. (cla: yes)\n\n7806 Remove the Dart JIT snapshot data from AOT builds of the embedder library (cla: yes)\n\n7807 Add flow events connecting pointer events to frames (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-116", "text": "7807 Add flow events connecting pointer events to frames (cla: yes)\n\n7809 Use newer Skia API for PathMeasure (cla: yes)\n\n7811 Add FFI to libraries.yaml. (cla: yes)\n\n7813 Expose more pointer phases in embedder.h (cla: yes)\n\n7814 Fix typo in painting.dart (cla: yes, waiting for tree to go green)\n\n7815 Allow specifying the buildtools path (cla: yes, waiting for tree to go green)\n\n7819 Fix tests that were committed after cirrus ran (cla: yes)\n\n7826 Pass flow id properly. (cla: yes)\n\n7827 Remove unnecessary entry-point closurization. (cla: yes)\n\n7830 Move up ndk version that is being downloaded(old one no longer available). (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-117", "text": "7832 Shut down and restart the Dart VM as needed. (cla: yes)\n\n7834 [fuchsia][SCN-1054] Map elevation onto -Z in Scenic (cla: yes)\n\n7836 Delete GL textures when they are released from the texture registry. (cla: yes)\n\n7837 Fix NullPointerException in SurfaceTextureRegistryEntry (cla: yes)\n\n7838 Fix NullPointerException in ResourceCleaner (cla: yes)\n\n7839 Ensure to pass dill file after VM options for gen_snapshot (cla: yes)\n\n7841 Don\u2019t call static method from instance variable (cla: yes)\n\n7843 Add support for calling into other plugins from a background context on iOS (cla: yes)\n\n7845 Add fml::FileExists implementation for Windows (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-118", "text": "7845 Add fml::FileExists implementation for Windows (cla: yes)\n\n7846 Update buildroot to 7f64ff4928e to unblock Mac builds. (cla: yes)\n\n7849 Revert \u201cAndroid embedding refactor pr3 add remaining systemchannels (\u2026 (cla: yes)\n\n7853 Revert \u201cSupport for binary decompression of dynamic patches. (#7777)\u201d (cla: yes)\n\n7862 Reland \u201cLower the threshold to raster cache pictures (#7687)\u201d (cla: yes)\n\n7863 Reland PerformanceOverlayLayer golden test (cla: yes)\n\n7874 Android embedding refactor pr3 add remaining systemchannels (cla: yes)\n\n7875 Fix caret being at left edge when newline pressed on centered text (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-119", "text": "7876 Revert \u201cRemove unnecessary entry-point closurization.\u201d (cla: yes)\n\n7877 Revert \u201cShut down and restart the Dart VM as needed.\u201d (cla: yes)\n\n7878 Android embedding refactor pr5 add flutterengine impl (cla: yes)\n\n7880 Test profile and release build and unit tests (cla: yes)\n\n7882 Fix minor typos in accessibility action docs (cla: yes)\n\n7883 Correct onAccessibilityFeaturesChanged docs (cla: yes)\n\n7886 Revert \u201cAndroid embedding refactor pr3 add remaining systemchannels\u201d (cla: yes)\n\n7891 Add accessibility semantics support to embedder (cla: yes)\n\n7892 Android embedding refactor pr3 add remaining systemchannels (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-120", "text": "7893 Respect the custom GL proc table when creating the resource context on the IO thread. (cla: yes)\n\n7895 Revert \u201cReland PerformanceOverlayLayer golden test (#7863)\u201d (cla: yes)\n\n7899 Eliminate .member = foo struct initialization (cla: yes)\n\n7904 Reland \u201cRemove unnecessary entry-point closurization.\u201d (cla: yes)\n\nPRs closed in this release of flutter/plugins\n\nFrom Fri Nov 29 19:41:00 2018 -0800 to Thu Feb 21 20:22:00 2019 -0800\n\n690 [video_player] Fix aspect ratio (cla: yes)\n\n842 Remove base detector class and change detection method name (cla: yes, flutterfire)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-121", "text": "895 [connectivity] Added getWifiIP() (cla: yes)\n\n896 [firebase-analytics] Enable setAnalyticsCollectionEnabled support for iOS (cla: no, flutterfire, submit queue)\n\n926 Remove firebase_auth dependency from android_alarm_manager library and add initialize step to readme (cla: yes, documentation, submit queue)\n\n936 Fixed typo BarcodeValueType (cla: yes)\n\n947 fix: url_launcher can\u2019t launcher for Android (cla: yes)\n\n949 Fixes: \u2018webview_flutter/WebviewFlutterPlugin.h\u2019 file not found (cla: yes)\n\n950 Show https://flutter.io in the webview_flutter example. (cla: yes)\n\n954 add new plugins reference to README.md (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-122", "text": "954 add new plugins reference to README.md (cla: yes)\n\n956 Make the description for webview_flutter longer. (cla: yes)\n\n957 fix message structure from intent (cla: yes)\n\n959 Add navigation methods to webview_flutter (cla: yes)\n\n960 Fail call when trying to recover auth with backgrounded app (cla: yes)\n\n961 Control the GoogleMap options with widget parameters. (cla: yes)\n\n965 Add byte streaming capability for the camera (cla: yes)\n\n967 Fix initialUrl null check for webview_flutter (cla: yes)\n\n971 Add the ability for ML Kit to create image from bytes (cla: yes)\n\n972 Fix typo in WebView\u2019s \u201cinitWithWithFrame\u201d. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-123", "text": "974 Implemented reload method in webview_flutter (cla: yes)\n\n976 [camera] Fix issue with crash when the physical device\u2019s orientation is unknown on Android. (cla: yes)\n\n977 Temporarily add exoplayer repo accidentally deleted from jcenter (cla: yes)\n\n992 Add currentUrl accessor to WebView plugin. (cla: yes)\n\n993 Allow user to handle PlatformExceptions caught by FirebaseAnalyticsObserver._sendScreenView(). (cla: yes)\n\n995 Bump webview_flutter\u2019s version. (cla: yes)\n\n997 closeWebView fixes for url_launcher (cla: yes)\n\n1002 Fixed local_auth crash with API < 24 #24339 (cla: yes)\n\n1006 Bump android_alarm_manager version to 0.2.3 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-124", "text": "1021 javascript evaluation ios/android (cla: yes, feature, webview)\n\n1024 Doc and build script updates to the IAP plugin (cla: yes)\n\n1025 Fix CI analyzer errors (cla: yes)\n\n1031 Workaround the Gradle crash due to non ASCII characters. (cla: yes)\n\n1034 Remove comments from license file (cla: yes)\n\n1037 Save photo orientation on iOS (cla: yes)\n\n1040 Rev version to publish 0.3.1 to pub (cla: yes)\n\n1042 Remove scary message (cla: yes)\n\n1046 Fix Crash When StartPreview Error (cla: yes)\n\n1051 Fix image picker crash on IOS (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-125", "text": "1051 Fix image picker crash on IOS (cla: yes)\n\n1057 [IAP] Check if the payment processor is available (cla: yes)\n\n1058 Update dart doc for forceSafariVC for the usage of universal links on iOS (cla: yes)\n\n1060 Bump camera plugin version and update changelog. (cla: yes)\n\n1062 Url launcher ios universallinksonly (cla: yes)\n\n1065 Supress strong_mode_implicit_dynamic_method for invokeMethod calls. (cla: yes)\n\n1068 Iap productlist ios (cla: yes)\n\n1072 adding nil check (cla: yes)\n\n1076 Fix Manifest versionCode not found (cla: yes)\n\n1082 [IAP] Clean up Dart unit tests (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-126", "text": "1083 [IAP] Add missing license headers (cla: yes)\n\n1084 [IAP] Fetch SkuDetails from Google Play (cla: yes)\n\n1085 Url launcher refactor (cla: yes)\n\n1086 Enable compute credits for commits, and for macOS PRs (cla: yes)\n\n1087 cirrues update to mojave-xcode-10.1 (cla: yes)\n\n1088 add deprecated_member_use_from_same_package to pass analyzer (cla: yes)\n\n1089 Fix a crash when selecting downloaded images on certain devices (cla: yes)\n\n1090 [IAP] Generate boilerplate serializers (cla: yes)\n\n1092 Fix broken documentation link to AndroidBuildVersionCodes (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-127", "text": "1093 [image_picker] Fixed a crash that would occur when called in quick succession on Android (cla: yes)\n\n1102 cleanup (cla: yes)\n\n1103 Migrate independent plugins to AndroidX (cla: yes)\n\n1104 Include Android SDK 27 in the docker image and accept licenses (cla: yes)\n\n1105 update change log for url launcher (cla: yes)\n\n1106 [firebase_ml_vision] Set minimum iOS to 8 (cla: yes)\n\n1108 Remove \u2018init\u2019 static method (cla: yes)\n\n1109 Update all plugins to minimum iOS 8.0 (cla: yes)\n\n1112 [IAP] Update README (cla: yes)\n\n1115 Migrate remaining plugins to AndroidX (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-128", "text": "1115 Migrate remaining plugins to AndroidX (cla: yes)\n\n1116 Add WebView JavaScript channels (Dart side). (cla: yes)\n\n1117 [firebase_auth] Update a broken dependency. (cla: yes)\n\n1118 [IAP] Update dev deps to match flutter_driver (cla: yes)\n\n1120 A few additional Androix dependencies (cla: yes)\n\n1124 Updated launch to use async and await, fixed the incorrect return value by launch method. (cla: yes)\n\n1125 Fixed image picker crash when used with android alarm manager (cla: yes)\n\n1126 [In_app_purchase] add payment translators in objc (cla: yes)\n\n1127 Revert AndroidX changes for 1.0.0 plugins (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-129", "text": "1128 Migrate to AndroidX forward roll (cla: yes)\n\n1129 android_alarm_manager background execution bug fixes (bugfix, cla: yes, submit queue)\n\n1130 WebView JavasScript channels Android implementation. (cla: yes, feature, webview)\n\n1132 Use string to save double for shared_preference(Android). (bugfix, cla: yes, needs love, submit queue)\n\n1133 Added support for persisting alarms across reboots (cla: yes, feature)\n\n1134 Updated connectivity to singleton (cla: yes)\n\n1135 FIx issue with calculating iOS image orientation in certain special c\u2026 (cla: yes)\n\n1138 Add a gradle warning to the AndroidX plugins (cla: yes)\n\n1139 WebView JavaScript channels - iOS implementation. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-130", "text": "1139 WebView JavaScript channels - iOS implementation. (cla: yes)\n\n1140 Change iOS video format back to bgra8888 (cla: yes)\n\n1147 [In_app_purchase] Use json serializer for skproduct wrapper and related classes. (cla: yes)\n\n1148 Update NSNull check with directly checking the expected type. (cla: yes)\n\n1149 Allow clearing cookies for FlutterWebView (cla: yes)\n\n1155 Updating the example to match the new API (cla: yes, documentation, flutterfire, submit queue)\n\n1156 Add capability of using single plane buffers (cla: yes)\n\n1157 Workaround to fix the camera positioning issue on the google map view (cla: yes)\n\n1161 Add Swift example to README.md for google_maps_flutter (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-131", "text": "1162 [In_app_purchase] Expose nslocale and expose currencySymbol instead of currencyCode to match android (cla: yes)\n\n1163 Change from Rectangle/Point to Rect/Offset for ui convenience (cla: yes)\n\n1169 [In_app_purchase] getproductlist basic draft (cla: yes)\n\n1170 Remove ML models from ML Kit Vision plugin (cla: yes)\n\n1171 Revert \u201cIAP add payment translators in objc (#1126)\u201d (cla: yes)\n\n1172 [In_app_purchase] add payment objc translators (cla: yes)\n\n1173 Fix biometrics check error below ios11. (cla: yes)\n\n1175 Add unit tests to connectivity plugin (cla: yes)\n\n1176 Fix Firebase phone auth on Android (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-132", "text": "1176 Fix Firebase phone auth on Android (cla: yes)\n\n1177 Fix bug causing black screen on some Android devices (cla: yes)\n\n1178 [In_app_purchase] iOS add payment dart wrappers (cla: yes)\n\n1180 Expose exception on the signIn method in Google sign in. (cla: yes)\n\n1185 remove extra space (cla: yes)\n\n1193 Mark some packages as unpublishable (cla: yes)\n\n1194 [In_app_purchase] Fix the param map passed down to the platform channel when calling querySkuDetails (cla: yes)\n\n1195 Fix bug where HttpMetric/Trace dictionaries weren\u2019t being initialized on iOS (cla: yes)\n\n1199 [In_app_purchase] fix requesthandler crash (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-133", "text": "1200 WebView controller let\u2019s you clear cache (cla: yes)\n\n1202 Fix IllegalStateException for cloud_firestore transactions (cla: yes)\n\n1203 Don\u2019t send empty cloud_firestore snapshots on iOS when encountering errors (cla: yes)\n\n1204 Remove assertion for firebase_core that can interfere with hot-restart (cla: yes)\n\n1205 Introduce CODEOWNERS (cla: yes)\n\n1206 Fix iOS transactions when getting a snapshot that doesn\u2019t exist (cla: yes)\n\n1207 Fix cloud_firestore dates on some iOS devices (cla: yes)\n\n1209 fix firestore multiple app support for DocumentSnapshot and transactions (cla: yes)\n\n1210 cloud functions multiple app support (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-134", "text": "1210 cloud functions multiple app support (cla: yes)\n\n1212 Change version webview flutter (cla: yes)\n\n1213 Set GoogleAppMeasurement dependency version (cla: yes)\n\n1214 Video player supported formats (cla: yes)\n\n1215 Bump video_player version to 0.10.0+2 (cla: yes)\n\n1217 [android_alarm_manager] Include missing dependency (cla: yes)\n\n1220 remove the blank line in CODEOWNER (cla: yes)\n\n1221 Remove the method channel\u2019s reference to webview/maps on dispose. (cla: yes)\n\n1222 [In_app_purchase]remove categories (cla: yes)\n\n1225 Rotate image file based on Exif data (cla: yes, submit queue)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "84705d153d56-135", "text": "1226 Remove categories (cla: yes)\n\n1230 [IAP] Add Java call for launchBillingFlow (cla: yes)\n\n1231 [in_app_purchase] make payment objc (cla: yes)\n\n1232 [IAP] Add the Dart API for launchBillingFlow (cla: yes)\n\n1238 [Camera] remove extra space in CHANGELOG (cla: yes)\n\n1242 Bugfix documents: webview_flutter JavascriptChannel, Example is not updated. (cla: yes)\n\n1246 Collection literals ignores in webview flutter plugin (cla: yes)\n\n1248 Remove left over conflict marker (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.2.1/index.html"} {"id": "743ab3ee101c-0", "text": "Change log for Flutter 1.5.4\n\nTools\n\nSDK\n\nRelease notes\n\n1.5.4 change log\n\nPRs closed in this release of flutter/flutter\n\nPRs closed in this release of flutter/engine\n\nPRs closed in this release of flutter/plugins\n\nPRs closed in this release of flutter/flutter\n\nFrom Thu Feb 21 20:22:00 2019 -0800 to Wed May 1 16:56:00 2019 -0700\n\n21834 Add shapeBorder option on App Bar (cla: yes, f: material design, framework)\n\n21896 Bottom sheet scrolling (a: animation, cla: yes, f: material design, f: routes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-1", "text": "22762 Add support for scrollwheels (cla: yes, f: gestures, framework)\n\n22810 build the gallery on PRs (cla: yes, team)\n\n24476 Fix text selection handles showing outside the visible text region (a: text input, cla: yes, framework)\n\n25164 Pan and zoom gallery demo (cla: yes, team, team: gallery)\n\n25202 fix #19175 How should addTime be used from a test? (a: tests, cla: yes, framework, team: gallery, waiting for tree to go green)\n\n26438 Breaks the moveBy call from drag and dragFrom into two separate calls and changes the default behavior of DragStartBehavior to DragStartBehavior.start (cla: yes, f: gestures, framework, severe: API break)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-2", "text": "26785 Document that SearchDelegate.buildResults can be called multiple time\u2026 (cla: yes, d: api docs, f: material design, framework, team: flakes, team: gallery)\n\n27034 Updated package template .gitignore file (cla: yes, tool)\n\n27205 Fix TextField height issues (a: text input, cla: no, framework)\n\n27217 Fix Shrine overscroll glow indicator (cla: yes, f: material design, framework, team, team: gallery)\n\n27435 Add lerping between LinearGradients with arbitrary number of colors and stops (cla: yes, framework, waiting for tree to go green)\n\n27572 Remove the flutter_shared assets directory from the Gradle script (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-3", "text": "27612 Force line height in TextFields with strut (a: text input, a: typography, cla: yes, f: cupertino, f: material design, framework, severe: API break)\n\n27660 Shader warm up (cla: yes, framework, severe: performance)\n\n27711 Make extended FAB\u2019s icon optional (a: fidelity, cla: yes, f: material design, framework)\n\n27712 add2app test (a: existing-apps, a: tests, cla: yes, engine, waiting for tree to go green)\n\n27749 Switch flutter_tools from script to app-jit snapshot. (cla: yes, tool)\n\n27751 Add Sample code for FlatButton #21136 (cla: yes, d: api docs, f: material design, framework)\n\n27811 set literal conversions (cla: yes, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-4", "text": "27811 set literal conversions (cla: yes, framework, team)\n\n27898 Add slight clarification to debugDeterministicCursor (a: text input, cla: yes, framework, waiting for tree to go green)\n\n27903 Lazily download artifacts (III): The Revenge of the Sith (cla: yes, tool)\n\n27904 Convert PointerEvent\u2019s toString to Diagnosticable (a: debugging, cla: yes, f: gestures, framework)\n\n27944 Add tests (a: tests, cla: yes, tool)\n\n27971 Run non-perf sensitive tests on Cirrus (a: tests, cla: yes, framework, team)\n\n28001 CupertinoTextField: added ability to change placeholder color (a: text input, cla: yes, f: cupertino, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-5", "text": "28004 Paint backgroundColor in CircularProgressIndicator (cla: yes, f: material design, framework)\n\n28013 [Material] Unit test for skipping Slider tick mark due to overdensity (cla: yes, f: material design, framework)\n\n28017 Add more docs to BackdropFilter (cla: yes, d: api docs, framework)\n\n28097 Allow for gradle downloading missing SDK assets (cla: yes, t: gradle, tool)\n\n28125 [Gallery] Fortnightly demo moved from flutter/samples. (cla: yes, team, team: gallery)\n\n28152 Improve hot reload performance (cla: yes, t: hot reload, tool)\n\n28157 Add await to future to please analyzer (cla: yes, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-6", "text": "28159 [Material] Expand BottomNavigationBar API (reprise) (cla: no, f: material design, framework)\n\n28163 [Material] Add ability to set shadow color and selected shadow color for chips and for chip themes (cla: yes, f: material design, framework)\n\n28166 Add some more CupertinoPicker doc (cla: yes, d: api docs, f: cupertino, framework)\n\n28168 [flutter_tool,fuchsia_tester] Only require a test source dir for coverage (a: tests, cla: yes, tool, \u25cb platform-fuchsia)\n\n28169 Add/rewrite tests for FocusScope. (a: text input, cla: yes, framework)\n\n28171 deploy to .dev firebase projects. (cla: yes, team)\n\n28172 Add backgroundColor argument to TextStyle for convenience (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-7", "text": "28174 No shrinking for BackdropFilter\u2019s cull rect (cla: yes, framework, severe: API break, waiting for tree to go green)\n\n28175 Only call Activity.reportFullyDrawn on Lollipop or above (cla: yes, team, team: gallery)\n\n28193 Clean up flutter_gallery.cmx\u2019s sandbox (cla: yes, team, team: gallery)\n\n28214 [Material] Add the ability to theme trailing app bar actions independently from leading (cla: yes, f: material design, framework)\n\n28215 Minor UI tweaks to Cards demo based on internal feedback (cla: yes, team, team: gallery)\n\n28242 Add long-press-move support for text fields 2 (a: text input, cla: yes, f: cupertino, f: gestures, f: material design, framework, severe: API break)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-8", "text": "28245 [Typo] Update \u2018use\u2019 to \u2018user\u2019 (cla: yes, d: api docs, f: material design, framework)\n\n28264 Fix the length of the valueHelp on the \u2013sample option for the create command, and turn on wrapping. (cla: yes, d: examples, tool)\n\n28280 [fuchsia] Fix paths to find and ls (cla: yes, tool, \u25cb platform-fuchsia)\n\n28281 Reduce memory benchmark perf tests outer loop to 10. (cla: yes, team)\n\n28290 Text selection via mouse (a: text input, cla: yes, f: gestures, framework)\n\n28291 Reland #27754, now that bsdiff has moved to flutter/packages. (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-9", "text": "28295 Revert \u201cAllow for gradle downloading missing SDK assets\u201d (cla: yes, tool, \u25a3 platform-android)\n\n28296 Roll the engine to 5db4b377244bae48bc21e449e616417e68c9a6b9 (cla: yes)\n\n28297 Test reporter (a: tests, cla: yes, team, waiting for tree to go green)\n\n28302 Add basic web device and run support (cla: yes, tool)\n\n28308 Roll engine to 043d92c48abdebdad926569bc204a59c5cf20a11 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-10", "text": "28309 Roll engine to cb0f7ece1f251c78a07550db89d0fcb3edf61e3c (cla: yes)\n\n28315 Roll engine to 33bb91cc15916610261097eb971ec8a11b804d06 (cla: yes)\n\n28334 Remove unused \u2013packages argument to gen_snapshot. (cla: yes, team, tool)\n\n28341 use deviceManager discovery in daemon protocol (cla: yes, tool)\n\n28343 pass \u2013skip-build-script-checks and remove module usage (cla: yes, team)\n\n28346 [flutter_tool,fuchsia] Add missing dep to flutter_tool (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-11", "text": "28349 Dynamic patching support for native code libraries. (cla: yes, t: gradle, tool, \u25a3 platform-android)\n\n28352 only perform multi-root mapping if there are multiple roots (cla: yes, tool)\n\n28355 Reland \u201cAllow for gradle downloading missing SDK assets\u201d (#28097) (cla: yes, t: gradle, tool, waiting for tree to go green, \u25a3 platform-android)\n\n28356 Log pub return code on failure on Windows (cla: yes, tool, \u2756 platform-windows)\n\n28369 Add LICENSE test to presubmit checks (cla: yes, team)\n\n28370 Removed trailing whitespace from the end of the CI config (cla: yes, team)\n\n28371 Ensure that the DropdownButton menu respects its parents bounds (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-12", "text": "28372 V1.2.1 hotfix.1 \u2014 cherry-pick (cla: yes, team)\n\n28373 Mark non-flaky test as such (a: tests, cla: yes, team)\n\n28376 Revert \u201cShader warm up (#27660)\u201d (cla: yes, team, team: flakes)\n\n28386 remove personal repo and replace with trivial example for smoke test (cla: yes, tool)\n\n28398 fix red build for analysis (a: typography, cla: yes, framework)\n\n28400 update packages (cla: yes, team)\n\n28431 [Gallery] Fix fortnightly analysis for consts. (cla: yes, team, team: gallery)\n\n28470 Throw assertion error when a Hero has a Hero child. (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-13", "text": "28472 Add SHA256 checksums to published metadata (cla: yes, team)\n\n28477 Fix backspace and clear length in AnsiStatus (cla: yes, tool)\n\n28478 Support iOS devices reporting pressure data of 0 (cla: yes, f: cupertino, f: gestures, f: material design, \u26a0 TODAY)\n\n28480 increase timeout (a: tests, cla: yes, team, team: flakes)\n\n28482 Fuschia -> Fuchsia (cla: yes, team)\n\n28517 remove json_schema dep again (cla: yes)\n\n28527 Be more strict about finding version number attached to a revision when packaging. (cla: yes, team)\n\n28530 Fix type issue of the timelineEvents assignment (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-14", "text": "28537 Reland \u201cShader warm up (#27660)\u201d (cla: yes, framework, severe: performance)\n\n28540 Add animation curve slowMiddle (a: animation, cla: yes, framework, severe: new feature)\n\n28546 Call onTapCancel when down pointer gets cancelled (cla: yes, f: gestures, framework)\n\n28555 disable dart2js test (a: tests, cla: yes, team)\n\n28558 Fix typo (a: text input, cla: yes, d: api docs, f: material design)\n\n28597 Adjust remaining Cupertino route animations to match native (a: fidelity, cla: yes, f: cupertino, f: routes, waiting for tree to go green)\n\n28598 TextField Snippet for API Docs (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-15", "text": "28602 Allow PointerEnterEvent and PointerExitEvents to be created from any PointerEvent (a: desktop, cla: yes, f: gestures, framework, severe: API break)\n\n28603 select ResidentCompiler during FlutterDevice initialization (cla: yes, tool)\n\n28604 Add warnings and an example to the TextEditingController docs (a: text input, cla: yes, d: api docs, framework)\n\n28607 Roll engine to 3e4e6f5c54db7a705e6d50f7f3bddfa2ac0d6612 (cla: yes)\n\n28608 Roll engine to 4434a39c7d545ed47186b2f4d98cd09c8366e720 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-16", "text": "28614 Add convex path and non-AA paint to shader warm-up (cla: yes, framework, p: firebase_performance)\n\n28619 Updated gallery light and dark themes (cla: yes, team, team: gallery)\n\n28629 Make sure everything in the Cupertino page transition can be linear when back swiping (cla: yes, f: cupertino, f: routes, framework)\n\n28638 Fix the test annotation used for test groups (a: tests, cla: yes, framework)\n\n28653 Fix ink highlight effect of RawChip (cla: yes)\n\n28657 Fix spelling errors. (cla: yes, framework)\n\n28658 Include git output into error message from channel command (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-17", "text": "28661 Use a simpler implementation of Diagnosticable.toString when running in profile/release mode (cla: yes, framework)\n\n28663 Update TabController.indexIsChanging doc (cla: yes, framework)\n\n28666 Make RenderUiKitView reject absorbed touch events (cla: yes, framework)\n\n28669 Drive-by fix for TODO (cla: yes)\n\n28672 Support hotfix version numbers (cla: yes, tool)\n\n28673 Add missing trailing commas (cla: yes, team)\n\n28675 Update docs for ancestorWidgetOfExactType (cla: yes, d: api docs, framework, waiting for tree to go green)\n\n28679 Shader warm-up doc fixes (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-18", "text": "28679 Shader warm-up doc fixes (cla: yes)\n\n28681 Expanded Snippet for API Docs (cla: yes, d: api docs, d: examples)\n\n28683 Remove the old HaTS implementation on API docs (cla: yes, d: api docs)\n\n28684 Add capability to run build_runner tests for tool (cla: yes)\n\n28687 Make shader warm-up async so it can handle image (cla: yes)\n\n28688 Initialize the lifecycle state with initial state in window. Roll engine (19 commits) (cla: yes, customer: mulligan (g3), framework)\n\n28698 Roll engine to 99f3f7a9c246f1ebedc6eefd867cde250b370380 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-19", "text": "28709 improve error messages on Text constructors (cla: yes, framework)\n\n28734 Update README.md (cla: yes)\n\n28735 [Material] Create a FloatingActionButton ThemeData and honor it within the FloatingActionButton (cla: yes, f: material design, framework)\n\n28736 Avoid the overhead of instantiating a generator in paintImage (cla: yes, framework)\n\n28746 Remove timeout from add2app test for iOS (a: tests, cla: yes, team, \u233a\u202c platform-ios)\n\n28747 Part 1: Improve Overlay API (cla: yes, framework)\n\n28748 Revert \u201cRemove the old HaTS implementation on API docs\u201d (cla: yes, d: api docs, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-20", "text": "28749 Add minimum time gap requirement to double tap (cla: yes, f: gestures, framework)\n\n28751 Expose decorationThickness in TextStyle. Roll engine (12 commits) (a: typography, cla: yes, framework)\n\n28752 FAB Snippet for API Docs (cla: yes, d: api docs, d: examples, f: material design, framework)\n\n28756 Handle Cupertino back gesture interrupted by Navigator push (cla: yes, f: cupertino, framework)\n\n28759 switch tool tests to build runner (cla: yes)\n\n28799 Add semantics label to FadeInImage. (cla: yes, framework)\n\n28809 fix some formatting issues (cla: yes, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-21", "text": "28809 fix some formatting issues (cla: yes, framework, team)\n\n28821 [fuchsia] Permit relative entries to the fuchsia_tester (cla: yes, tool)\n\n28845 [Material] Fix radio ink ripple to be centered (cla: yes, f: material design, framework)\n\n28852 Update macOS version in tests (a: tests, cla: yes, team)\n\n28855 Move material iOS back swipe test to material (cla: yes, f: cupertino, framework)\n\n28857 Form Snippet for API Docs (cla: yes, d: api docs, d: examples, framework)\n\n28863 Fall-back to platform tools in Android SDK detection logic. (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-22", "text": "28866 Add build script invalidation and snapshotting logic (cla: yes, tool)\n\n28873 Remove extra build_runner modes, remove flutter_build (cla: yes, tool)\n\n28888 Changed flutter.io to flutter.dev on each link on readme file (cla: yes, team)\n\n28899 Roll engine 4f54a1dd9\u2026e6a5201f0 (cla: yes)\n\n28900 Add key support to cupertino button (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n28919 Always composite PhysicalModels (cla: yes, framework, severe: API break)\n\n28922 Fix crash on flutter update-packages (cla: yes)\n\n28933 Fix indentations of statements in BlockFunctionBody (cla: yes, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-23", "text": "28938 Add a flutter create --list-samples command (cla: yes, tool)\n\n28944 fix missing variable name (cla: yes, framework, waiting for tree to go green)\n\n28951 Quick fix for shader warm up (cla: yes, framework)\n\n28953 Include platformViewId in semantics tree (cla: yes, framework, severe: API break)\n\n28955 Add more doc pointing to the EditableText\u2019s rudimentary nature around gesture handling (cla: yes, framework)\n\n28963 Fix for post submit on cirrus (cla: yes)\n\n28970 Fix coverage shard and print summary after test run (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-24", "text": "28975 Revert \u201cRoll engine f4951df193a7..471a2c89a689 (11 commits)\u201d (cla: yes)\n\n28990 Fix MouseTracker annotation leak (cla: yes, f: gestures, framework, waiting for tree to go green)\n\n29008 Update CupertinoTextField (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n29010 re-enable dart2js test (cla: yes, tool)\n\n29012 Remove doc references to obsolete SemanticsSortOrder (cla: yes)\n\n29016 make coverage work again (cla: yes)\n\n29020 Add integration to all targets (cla: yes)\n\n29023 update readme for LUCI (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-25", "text": "29023 update readme for LUCI (cla: yes)\n\n29024 Fix CupertinoTabView tree re-shape on view inset change (cla: yes, \u26a0 TODAY)\n\n29025 print system time on all mac builds (a: tests, cla: yes, team)\n\n29030 Revert \u201cre-enable dart2js test\u201d (cla: yes)\n\n29048 Use async execution for xcodebuild commands (cla: yes, tool)\n\n29051 fix block formatting (cla: yes, framework, team)\n\n29053 Update to Container Sample Code in API Docs (cla: yes, d: api docs, d: examples, framework)\n\n29054 Deprecate profile() (cla: yes, framework, waiting for tree to go green)\n\n29056 add heartbeat (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-26", "text": "29056 add heartbeat (cla: yes)\n\n29057 Fix Flex class docs by replacing \u2018vertical space\u2019 with \u2018space on its main axis\u2019 so that the language fits both column and row. (cla: yes, framework, waiting for tree to go green)\n\n29062 fix windows codegen (cla: yes, tool)\n\n29064 Revert \u201cLazily download artifacts (III)\u201d (cla: yes)\n\n29069 Heroes and nested Navigators (a: animation, cla: yes, framework)\n\n29072 Update to ListView Sample Code in API Docs (cla: yes, d: api docs, d: examples, framework)\n\n29073 Make sure test reporter prints out stderr, and disables Bigquery for non-contributors (a: tests, cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-27", "text": "29093 Revert \u201cFix TextField height issues\u201d (cla: yes)\n\n29126 Cause flutter analyze to fail if the analysis server experienced an error. (cla: yes, team, tool)\n\n29129 Update .cirrus.yml (cla: yes)\n\n29134 Properly escape Android SDK Manager path in error message (cla: yes, tool, waiting for tree to go green)\n\n29138 Update DropdownButton underline to be customizable (cla: yes, f: material design)\n\n29156 Fix typo in RefreshIndicator constructor API doc (cla: yes)\n\n29165 Docs edit for Tab Label Color (cla: yes, d: api docs, f: material design, framework)\n\n29171 Only run codegen at start of flutter_test (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-28", "text": "29175 Ensure that animated pairs of Tabs TextStyles have matching inherited values (cla: yes, f: material design, framework)\n\n29179 No image shader caching in default shader warm-up (cla: yes, framework)\n\n29183 Implement labelPadding configuration in TabBarTheme (cla: yes, f: material design, framework)\n\n29188 Fix 25807: implement move in sliver multibox widget (cla: yes, f: material design, framework, severe: API break)\n\n29189 MaterialButton shape should override ButtonTheme shape (cla: yes, f: material design, framework)\n\n29192 Update upgrade to rebase and stash local changes. (cla: yes, tool)\n\n29195 Add sample to forEachTween (a: animation, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-29", "text": "29196 Detect and cleanup leaky processes (a: tests, cla: yes, team: flakes)\n\n29200 Cupertino localization step 1: add an English arb file (a: internationalization, cla: yes, f: cupertino, framework)\n\n29229 Install JDK and Android SDK only for integration tests (cla: yes, team, waiting for tree to go green)\n\n29231 Adds macOS raw keyboard mapping (a: desktop, cla: yes, framework)\n\n29236 Add skip to group in test_compat (a: tests, cla: yes, framework)\n\n29245 Fix DartDoc for UniqueKey (cla: yes, d: api docs, framework, waiting for tree to go green)\n\n29247 Update flutter_localizations translations (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-30", "text": "29247 Update flutter_localizations translations (cla: yes)\n\n29250 Text field height attempt 2 (cla: yes, f: cupertino, f: material design, framework)\n\n29258 Add dump-shader-skp flag to flutter tools (cla: yes, tool)\n\n29273 Speculative fix for #29262 (a: tests, cla: yes, team)\n\n29304 Include platformViewId in semantics tree for iOS (a: accessibility, a: platform-views, cla: yes, framework, \u233a\u202c platform-ios)\n\n29314 Revert \u201cAlways composite PhysicalModels\u201d (cla: yes)\n\n29319 Revert \u201cSpeculative fix for #29262\u201d (cla: yes)\n\n29321 add option for \u2013verbose-system-logs (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-31", "text": "29329 Error message when TextSelectionOverlay finds no Overlay (cla: yes, framework)\n\n29330 Revert \u201cRoll engine 31b289f277c6..b1b388f1c235 (7 commits)\u201d, Roll to 8b1a299ed instead. (cla: yes)\n\n29332 add assert if length of TabController and number of tabs do not match (cla: yes, f: material design, framework)\n\n29340 guard new formatter behind env var (a: tests, cla: yes, team)\n\n29342 Add semantic label finders (a: accessibility, a: tests, cla: yes, t: flutter driver)\n\n29363 Manual engine roll with goldens (cla: yes)\n\n29369 Update README.md (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-32", "text": "29374 Revert \u201cManual engine roll with goldens\u201d (cla: yes)\n\n29377 Roll engine to 403337ebb893380101d1fa9cc435ce9b6cfeb22c (cla: yes)\n\n29383 \u2013verbose-logging to verbose-logging in android (cla: yes)\n\n29385 Skip Dialog interaction on macos (cla: yes)\n\n29386 Use fs.identical to compare paths when finding the engine source path (cla: yes)\n\n29387 Make it easier to ensure semantics in widgetTests (a: accessibility, a: tests, cla: yes)\n\n29389 Update SDK constraints to reflect the fact that set literals are being used (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-33", "text": "29390 Make expansion panel optionally toggle its state by tapping its header. (cla: yes, f: material design, framework, severe: new feature)\n\n29395 Fix text selection when user is dragging in the opposite direction (a: text input, cla: yes, framework)\n\n29399 Enable code generation features in tool (via opt-in) (cla: yes, tool)\n\n29403 Disable widget inspector scroll test (cla: yes)\n\n29404 Improve flutter test startup time (cla: yes, tool)\n\n29407 [cupertino_icons] Add circle and circle_filled, for radio buttons. (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n29413 Fix MaterialApp\u2019s _navigatorObserver when only builder used (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-34", "text": "29434 Add builders and engine hash to fingerprint (cla: yes, tool)\n\n29442 Align Snippet for API Docs (cla: yes, d: api docs, d: examples, framework)\n\n29445 Add doc about MediaQuery to Chip (cla: yes, d: api docs, f: material design, framework)\n\n29451 Added opacity to cupertino switch when disabled (cla: yes, f: cupertino)\n\n29452 some spaces formatting (cla: yes, framework, team)\n\n29454 Update another SDK constraint (cla: yes, customer: fuchsia, team)\n\n29456 Fix for sometimes packages file is an APK (cla: yes)\n\n29461 Remove explicit frame schedule (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-35", "text": "29461 Remove explicit frame schedule (cla: yes, tool)\n\n29463 Make real JSON in arb (cla: yes, f: cupertino, framework)\n\n29467 prevent stream notifications from interfering with reload (a: tests, cla: yes, team)\n\n29469 fix asset reloading (cla: yes, tool)\n\n29474 Let CupertinoTextField\u2019s clear button also call onChanged (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n29494 initial work on coverage generating script for tool (cla: yes, tool)\n\n29499 Set custom flutter_assets by add FLTAssetsPath to AppFrameworkInfo.plist (cla: yes, tool, waiting for tree to go green)\n\n29528 Ensure that assumed formatting of properties file is correct (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-36", "text": "29532 Reland composite physical layers on all platforms (cla: yes, customer: dream (g3), customer: fuchsia, framework)\n\n29540 Improve Navigator documentation (cla: yes)\n\n29563 Avoid flickering while dragging to select text (cla: yes, f: material design, framework)\n\n29564 Update progress indicator API docs (cla: yes, f: material design, framework)\n\n29566 Manually roll engine to 5088735e5f (a: tests, cla: yes, framework)\n\n29568 make build runner configurable (cla: yes, team)\n\n29572 DropdownButton Icon customizability (cla: yes, f: material design, framework)\n\n29604 added friendlier error for invalid AndroidManifest.xml (cla: yes, tool, \u25a3 platform-android)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-37", "text": "29619 make literals const for @immutable constructors (cla: yes, team)\n\n29621 Update PULL_REQUEST_TEMPLATE.md (cla: yes, team)\n\n29623 Revert \u201cReland composite physical layers on all platforms\u201d (cla: yes, framework)\n\n29625 Fix typo in flutter_tools (cla: yes, tool)\n\n29627 Manual engine roll for 2019-03-19 (cla: yes)\n\n29630 Add heart shapes to CupertinoIcons (cla: yes, f: cupertino, framework)\n\n29632 Enable platform views for Flutter Gallery on iOS. (cla: yes, team, team: gallery)\n\n29633 Download secondary SDK (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-38", "text": "29633 Download secondary SDK (cla: yes, tool)\n\n29638 Fix transition to stock details (cla: yes, team, team: gallery)\n\n29641 Fix links on homepage of API docs (cla: yes, d: api docs, framework)\n\n29644 Cupertino localization step 3: in-place move some material tools around to make room for cupertino (cla: yes, f: cupertino, f: material design, framework)\n\n29650 Cupertino localization step 4: let generated date localization combine material and cupertino locales (cla: yes, f: cupertino, f: material design, framework)\n\n29654 Include brackets on OutlineButton doc (cla: yes, d: api docs, f: material design, framework)\n\n29669 Speed up CI via mojave-flutter image (a: tests, cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-39", "text": "29677 Fix calculation of hero rectTween when Navigator isn\u2019t fullscreen (a: animation, cla: yes, customer: solaris, framework, waiting for tree to go green)\n\n29684 Revert last 2 engine rolls. (cla: yes)\n\n29693 Use source list from the compiler to track invalidated files for hot reload. (cla: yes, t: hot reload, tool)\n\n29697 Embedding new diagrams for API Docs (cla: yes, d: api docs, d: examples, framework)\n\n29699 Fix more tests for ANSI terminals (cla: yes, tool)\n\n29701 Reland composite physical layers for all platforms (cla: yes, framework)\n\n29708 Cupertino localization step 5: add french arb as translated example (cla: yes, f: cupertino, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-40", "text": "29721 Use Dart version in script cache check (cla: yes, tool)\n\n29747 Allowing adding/updating packages during hot reload (cla: yes)\n\n29754 Revert \u201cEnable platform views for Flutter Gallery on iOS.\u201d (cla: yes)\n\n29758 Linking Higher & Lower Class Docs (cla: yes, d: api docs, framework)\n\n29760 some formatting of map, parameters and spaces (cla: yes, framework, team)\n\n29764 update fuchsia-attach to configure dev_finder location (cla: yes, tool)\n\n29767 Cupertino localization step 6: add a GlobalCupertinoLocalizations base class with date time formatting (cla: yes, f: cupertino)\n\n29768 Directly depend on frontend_server tool in fuchsia_attach (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-41", "text": "29769 Add support for text selection via mouse to Cupertino text fields (cla: yes, f: cupertino, framework)\n\n29771 Set Max Height for ListTile trailing and leading widgets (cla: yes, f: material design, framework)\n\n29779 Removes unnecessary \u201cnew\u201d in documentation (cla: yes)\n\n29780 Revert \u201cUpdate upgrade to rebase and stash local changes.\u201d (cla: yes)\n\n29783 Fix cache location, artifacts, and re-enable dart2js test (cla: yes, tool)\n\n29785 Lazy cache 4: A New Hope (cla: yes, tool)\n\n29786 Update upgrade to stash local changes and reset off of hotfix branches (cla: yes, tool)\n\n29811 TextField Validator Height Docs (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-42", "text": "29817 roll engine to 5f8ae420c1ac61bbbb26e61251d129c879fc788d (cla: yes)\n\n29818 dont fail build if codegen fails (cla: yes, tool)\n\n29821 Cupertino localization step 1.5: fix a resource mismatch in cupertino_en.arb (cla: yes, f: cupertino, framework)\n\n29822 Cupertino localization step 7: modularize material specific things out of gen_localizations.dart (cla: yes, f: cupertino, framework)\n\n29824 Cupertino localization step 8: create a gen_cupertino_localizations and generate one for cupertino english and french (cla: yes, f: cupertino, framework)\n\n29860 Move binarySearch to foundation. (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-43", "text": "29860 Move binarySearch to foundation. (cla: yes, framework)\n\n29861 Wrap Timeline calls in assert for material/about.dart (cla: yes)\n\n29883 Watch wildcard directories in addition to asset bundle (cla: yes, tool)\n\n29885 ensure packages file is updated when using build_runner (cla: yes, tool)\n\n29908 Update Twitter handle @flutterio -> @FlutterDev (cla: yes, team, team: gallery)\n\n29928 Limit the semantic nodes ID range to 2^16 (cla: yes, framework)\n\n29929 Remove tranparent paint hack from BackdropFilter (cla: yes, framework)\n\n29938 Pass FLUTTER_TOOL_ARGS to snapshot command. (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-44", "text": "29942 [fuchsia] Fix flutter_tool BUILD.gn deps (cla: yes, tool)\n\n29943 Remove unwanted gap between navigation bar and safe area\u2019s child (cla: yes, f: cupertino, framework)\n\n29946 Let CupertinoPageScaffold have tap status bar to scroll to top (cla: yes, f: cupertino)\n\n29980 Fix issue with account drawer header arrow rotating when setState is called (cla: yes, f: material design)\n\n29985 Revert \u201cLazy cache 4\u201d (cla: yes)\n\n29986 Lazy cache 5: The Empire Strikes Back (cla: yes, tool)\n\n29987 update CupertinoSwitch documentation (cla: yes, d: api docs, f: cupertino, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-45", "text": "29989 Avoid overwriting task result for non-leak checkers (a: tests, cla: yes, team, tool)\n\n29993 Adds the keyboard mapping for Linux (a: desktop, cla: yes, framework)\n\n29998 Fix edge cases of PointerEventConverter (cla: yes, framework, waiting for tree to go green)\n\n30019 Update to latest matcher (cla: yes, team)\n\n30032 Introduce \u2013report-timings flag for flutter build aot command. (cla: yes, tool)\n\n30040 Implement focus traversal for desktop platforms, shoehorn edition. (a: desktop, cla: yes, framework, severe: API break)\n\n30048 Document that Hero needs to be present on destination page\u2019s zero frame (cla: yes, d: api docs, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-46", "text": "30053 Make timeout durations configurable (cla: yes, tool)\n\n30055 Change -c to \u2013enable-asserts (cla: yes)\n\n30058 Draggable Scrollable sheet (cla: yes, framework)\n\n30059 Added link to Hero animation docs from Hero docs (cla: yes, d: api docs, f: material design, framework)\n\n30071 Move spinner _defaultSlowWarning message to a new line (cla: yes, tool)\n\n30075 Ensure that flutter run/drive/test/update_packages only downloads required artifacts (cla: yes, tool)\n\n30078 Add more test coverage to image handling (cla: yes, framework)\n\n30082 skip .dart_tool folders when running update-packages (cla: yes)\n\n30115 Forward missing pub commands (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-47", "text": "30115 Forward missing pub commands (cla: yes, tool)\n\n30123 Fix OutlineInputBorder crash (cla: yes, f: material design, framework)\n\n30129 Fix refresh control in the gallery demo, update comments (cla: yes, f: cupertino, framework)\n\n30139 Intercept errors thrown by synchronous Completers in image resolution. (cla: yes)\n\n30141 Fix a misuse of matchesGoldenFile() in the physical_model_test. (cla: yes)\n\n30145 Error message for setting shaderWarmUp too late (cla: yes)\n\n30153 Allow disabling experimental commands, devices on stable branch (cla: yes, tool)\n\n30160 Cupertino localization 1.9: add needed singular resource for cupertino_en.arb (cla: yes, f: cupertino, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-48", "text": "30194 Change order of studies in flutter_gallery (cla: yes)\n\n30195 V1.4.5 hotfixes again (cla: yes)\n\n30198 roll engine to 82765aa77db9621dfbc50801ee2709aa0a00e04d (cla: yes)\n\n30201 update sample code analyzer regexp & test case (cla: yes, d: api docs, team, tool)\n\n30204 disable jit snapshot (cla: yes)\n\n30205 Add missing test case and handle wildcard removal (cla: yes)\n\n30206 Made the showMenu() position parameter required (cla: yes)\n\n30212 Added assert to prevent complete ListTile trailing/leading horizontal expansion (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-49", "text": "30215 Check for invalid elevations (cla: yes, customer: dream (g3), customer: fuchsia, framework, severe: customer critical, \u25cb platform-fuchsia)\n\n30216 make sure flutter test asks for cache upgrades (cla: yes)\n\n30218 [fuchsia_tester] Plumb through the location of icudtl (cla: yes, tool)\n\n30219 Added helpful Material assert message (cla: yes, f: material design, framework)\n\n30222 Add coverage benchmark (cla: yes)\n\n30227 Simplify logic of TapGestureRecognizer (cla: yes, framework)\n\n30228 Make heroes fly on pushReplacement (cla: yes, f: routes, framework)\n\n30232 Revert \u201cEnsure that flutter run/drive/test/update_packages only downloads required artifacts\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-50", "text": "30235 Warn on uncomitted changes (cla: yes, tool)\n\n30254 Reland: Ensure that flutter run/drive/test/update_packages only downloads required artifacts (cla: yes, tool)\n\n30275 Implement compute for async function (#16265) (cla: yes, framework)\n\n30276 Random trivial fixes in the animation packages (a: animation, cla: yes, framework, waiting for tree to go green)\n\n30304 no need .toList() before .join() (cla: yes, framework)\n\n30305 shorter nullable list duplications (cla: yes, framework, waiting for tree to go green)\n\n30327 Add \u201cfeature request\u201d issue template (cla: yes, team)\n\n30339 Add buttons to gestures (a: desktop, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-51", "text": "30343 ExpansionPanelList and ExpansionPanelList.radio documentation (cla: yes, d: api docs, f: material design, framework)\n\n30346 Make sure _handleAppFrame is only registered once per frame (cla: yes, framework)\n\n30348 RaisedButton Sample Code Update for Diagrams (cla: yes, d: api docs, d: examples, framework)\n\n30353 Fix minor typo (cla: yes, f: material design, framework)\n\n30390 [Material] Update slider and slider theme with new sizes, shapes, and color mappings (cla: yes, f: material design, framework)\n\n30398 Embedding new raised button diagram. (cla: yes, d: api docs, d: examples, framework, waiting for tree to go green)\n\n30414 Remove pressure customization from some pointer events (cla: yes, framework, severe: API break)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-52", "text": "30415 Add 29 Widget of the Week videos (cla: yes, d: api docs, framework)\n\n30422 Commit a navigator.pop as soon as the back swipe is lifted (cla: yes, framework)\n\n30428 Update repair command for Arch Linux (cla: yes, tool)\n\n30451 Bump dartdocs to 0.28.3 (cla: yes, d: api docs, framework)\n\n30452 Moar Videos (cla: yes, d: api docs, framework)\n\n30453 Updating sample code for BottomNavigationBar class for diagram. (cla: yes, d: api docs, d: examples, framework, waiting for tree to go green)\n\n30455 Prevent vertical scroll in shrine by ensuring card size fits the screen (cla: yes, f: material design, framework, team, team: gallery, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-53", "text": "30456 make shellcheck (linter) changes to bin/flutter bash script (cla: yes, tool)\n\n30457 Touching the screen adds 0x01 to buttons (cla: yes, framework)\n\n30458 [fuchsia] Fix isolate filter (cla: yes, customer: fuchsia, tool)\n\n30460 Fix gallery API doc URL launcher (cla: yes, team, team: gallery)\n\n30461 Be more explicit when ValueNotifier notifies (cla: yes, d: api docs, framework, waiting for tree to go green)\n\n30463 Revert \u201cError message for setting shaderWarmUp too late (#30145)\u201d (cla: yes, framework, waiting for tree to go green)\n\n30468 Embedding diagram for BottomNavigationBar. (cla: yes, d: api docs, d: examples, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-54", "text": "30470 Fixed Table flex column layout error #30437 (cla: yes, framework)\n\n30475 Trackpad mode crash fix (cla: yes, f: material design, framework, \u233a\u202c platform-ios)\n\n30497 Add confirmDismiss example to flutter_gallery (cla: yes, f: material design, team: gallery)\n\n30513 Fix issue 21640: Assertion Error : \u2018_listenerAttached\u2019: is not true (cla: yes, framework)\n\n30521 Provide a default IconTheme in CupertinoTheme (cla: yes, f: cupertino, framework)\n\n30525 Fix cursor outside of input width (cla: yes, f: material design, framework)\n\n30527 Cupertino localization step 11: add more translation clarifications in the instructions (cla: yes, f: cupertino, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-55", "text": "30530 Let docker image install fastlane too for Linux (cla: yes)\n\n30531 Correct MaterialButton disabledColor (cla: yes)\n\n30535 Correctly synthesise event buttons (cla: yes, waiting for tree to go green)\n\n30537 Embedded images and added variations to ListTile sample code (cla: yes, d: api docs, f: material design, framework)\n\n30562 Replace flutter.io with flutter.dev (a: first hour, a: quality, cla: yes)\n\n30563 Fixed a typo in the Expanded API doc (cla: yes, d: api docs, framework)\n\n30570 Bump dartdocs to 0.28.3+1 (cla: yes)\n\n30572 [Material] Adaptive Slider constructor (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-56", "text": "30578 Mark ios-deploy version 2.0.0 as bad (cla: yes, tool)\n\n30579 PointerDownEvent and PointerMoveEvent default buttons to 1 (a: desktop, cla: yes, framework, severe: API break)\n\n30594 Update README.md (a: first hour, a: quality, cla: yes)\n\n30612 Added required parameters to FlexibleSpaceBarSettings (cla: yes, f: material design, framework)\n\n30626 Add sample for ValueListenable (cla: yes, d: api docs, framework)\n\n30640 Add const Border.uniformSide() (cla: yes, framework)\n\n30643 Add Form.onSaved (a: desktop, cla: yes, framework)\n\n30644 Make FormField._validate() return void (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-57", "text": "30645 Add docs to FormFieldValidator (cla: yes, framework)\n\n30648 Allow downloading of desktop embedding artifacts (a: desktop, cla: yes, tool)\n\n30667 Fix additional @mustCallSuper indirect overrides and mixins (cla: yes, framework)\n\n30746 Baseline Aligned Row (cla: yes, f: material design, framework)\n\n30747 Print warning if flutter drive is run in debug (a: tests, cla: yes, t: flutter driver)\n\n30754 [Material] Fix showDialog crasher caused by old contexts (cla: yes, f: material design, framework)\n\n30755 Register Gradle wrapper as universal artifact (cla: yes)\n\n30760 fix cast NPE in invokeListMethod and invokeMapMethod (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-58", "text": "30767 Mark cubic_bezier_perf__timeline_summary nonflaky (cla: yes)\n\n30792 Rename Border.uniform() -> Border.fromSide() (cla: yes, framework)\n\n30793 Revert \u201cAdd Form.onSaved\u201d (cla: yes, f: material design, framework)\n\n30796 Unbounded TextField width error (cla: yes, f: material design, framework)\n\n30800 Update ListTile sample snippets to use Material Scaffold Template (cla: yes, d: api docs, f: material design, framework)\n\n30805 Update ExpansionPanelList Samples with Scaffold Template (cla: yes, d: api docs, f: material design, framework)\n\n30809 Fix issue 23527: Exception: RenderViewport exceeded its maximum numb\u2026 (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-59", "text": "30811 Make coverage, like, really fast (cla: yes, tool)\n\n30814 Fix StatefulWidget and StatelessWidget Sample Documentation (cla: yes, d: api docs, framework)\n\n30815 Make CupertinoNavigationBarBackButton correctly return an assert error (cla: yes, f: cupertino)\n\n30818 New flag to flutter drive to skip installing fresh app on device (cla: yes, tool)\n\n30828 add golden tests for CupertinoDatePicker (cla: yes, f: cupertino, f: date/time picker, framework)\n\n30829 Keep hover annotation layers in sync with the mouse detector. (a: desktop, cla: yes, framework)\n\n30832 Bump Android build tools to 28.0.3 in Dockerfile (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-60", "text": "30837 Add semanticsLabel parameter to TextSpan (cla: yes)\n\n30857 Added support for authentication codes for the VM service. (a: tests, cla: yes, tool)\n\n30862 CupertinoDatePicker initialDateTime accounts for minuteInterval (cla: yes, f: cupertino, framework)\n\n30867 Add toggle for debugProfileWidgetBuilds (cla: yes, tool)\n\n30871 Update the upload key which seems to have trouble for some reason (a: tests, cla: yes, team)\n\n30873 Revert \u201cRemove pressure customization from some pointer events\u201d (cla: yes)\n\n30876 Simplify toImage future handling (cla: yes, framework)\n\n30880 Let sliver.dart _createErrorWidget work with other Widgets (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-61", "text": "30883 Fix iTunes Transporter quirk (cla: yes)\n\n30884 [Material] Update TabController to support dynamic Tabs (cla: yes, f: material design, framework)\n\n30886 Allow mouse hover to only respond to some mouse events but not all. (cla: yes)\n\n30887 Add more dialog doc cross-reference (cla: yes, d: api docs)\n\n30898 Check that ErrorWidget.builder is not modified after test (a: tests, cla: yes, framework, waiting for tree to go green)\n\n30919 Manual engine roll with disabled service authentication codes (cla: yes)\n\n30921 Use identical instead of \u2018==\u2019 in a constant expression. (cla: yes)\n\n30930 Revert \u201cManual engine roll with disabled service authentication codes\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-62", "text": "30932 2d transforms UX improvements (cla: yes, framework, team: gallery)\n\n30937 Backport fixes into v1.4.9 (cla: yes, team)\n\n30938 Update keycodes, fix a comment. (a: desktop, cla: yes, framework)\n\n30942 rectMoreOrLess equals, prep for 64bit rects (a: tests, cla: yes, f: material design, framework)\n\n30946 Add some more cupertino icons (cla: yes, f: cupertino, framework)\n\n30985 Add rrect contains microbenchmark (a: tests, cla: yes, severe: performance, waiting for tree to go green)\n\n30990 Allow profile widget builds in profile mode (cla: yes, severe: performance, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-63", "text": "30991 Use full height of the glyph for caret height on Android (a: fidelity, a: text input, a: typography, cla: yes, severe: API break)\n\n30995 revert last 2 engine rolls (cla: yes)\n\n30997 Fix the warning test by checking stderr (cla: yes)\n\n30998 Revert \u201crevert last 2 engine rolls\u201d (cla: yes)\n\n31000 Fix bugs in contrast guideline and improve heuristic (cla: yes)\n\n31005 [scenic] Remove dead view_manager ref (cla: yes, customer: fuchsia, team: gallery, \u25cb platform-fuchsia)\n\n31063 Download and handle product version of flutter patched sdk (cla: yes, tool)\n\n31064 Add sorting to flutter version command (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-64", "text": "31064 Add sorting to flutter version command (cla: yes, tool)\n\n31073 Fuchsia step 1: add SDK version file and artifact download (cla: yes, tool)\n\n31074 make flutterProject option of CoverageCollector optional (cla: yes, tool)\n\n31088 Text field scroll physics (cla: yes, f: cupertino, f: material design, framework)\n\n31092 Add null checks to coverage collection (cla: yes)\n\n31093 Make the matchesGoldenFile docs link to an explanation of how to create golden image files (cla: yes, framework)\n\n31097 Fix text field selection toolbar under Opacity (cla: yes, framework)\n\n31109 Clarify various CupertinoTabView docs (cla: yes, f: cupertino, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-65", "text": "31148 Bump dartdoc to 0.28.3+2 (cla: yes)\n\n31159 Revert \u201cUse full height of the glyph for caret height on Android\u201d (cla: yes, framework)\n\n31171 Allow disabling all fingerprint caches via environment variable (cla: yes, tool)\n\n31178 Add breadcrumb to docs (cla: yes)\n\n31205 Add desktop projects and build commands (experimental) (a: desktop, cla: yes, tool)\n\n31207 fix issue 12999: Make assets available during tests (cla: yes, framework, tool)\n\n31210 Use full height of the glyph for caret height on Android v2 (a: text input, cla: yes, framework)\n\n31216 Disable macOS integration tests (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-66", "text": "31216 Disable macOS integration tests (cla: yes)\n\n31218 Add run capability for macOS target (a: desktop, cla: yes, \u2318\u202c platform-mac)\n\n31228 Fix ExpansionPanelList Duplicate Global Keys Exception (cla: yes, f: material design, framework, severe: crash)\n\n31229 Add flutter run support for linux and windows (a: desktop, cla: yes, tool)\n\n31262 Add track-widget-creation flag to attach command (cla: yes)\n\n31267 remove the unused hintMessage and hintId fields from the reload results (cla: yes)\n\n31273 add daemon.log to the daemon spec (cla: yes)\n\n31275 Update SnackBar to allow for support of the new style from Material spec (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-67", "text": "31277 pass track widget creation flag through to build script (a: desktop, cla: yes, tool)\n\n31278 add \u2013force flag to precache (cla: yes)\n\n31279 Add flutter attach documentation (cla: yes)\n\n31282 Stop precaching the artifacts for dynamic mode. (cla: yes, tool)\n\n31283 Add desktop workflows to doctor (a: desktop, cla: yes, tool)\n\n31291 Add some docs to StatefulBuilder (cla: yes, framework)\n\n31294 Improve Radio Documentation with Example (cla: yes, d: api docs, f: material design, framework)\n\n31295 Improve ThemeData.accentColor connection to secondary color (cla: yes, d: api docs, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-68", "text": "31310 Updated flutter_driver to support auth codes (cla: yes)\n\n31315 Fixed failing tests caused by introduction of authentication codes (cla: yes)\n\n31316 Add InkWell docs on transitions and ink splash clipping (cla: yes, d: api docs, f: material design, framework)\n\n31321 Fixed flutter_attach_test not respecting authentication codes (cla: yes)\n\n31326 Add more shuffle cupertino icons (cla: yes, f: cupertino, framework)\n\n31329 Add Xcode build script for macOS target (a: desktop, cla: yes, tool, \u2318\u202c platform-mac)\n\n31332 iOS selection handles are invisible (cla: yes, framework, \u233a\u202c platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-69", "text": "31339 Revert \u201c[Material] Update slider and slider theme with new sizes, shapes, and color mappings\u201d (cla: yes)\n\n31342 check if project exists before regenerating platform specific tooling (cla: yes, tool)\n\n31359 Remove support for building dynamic patches on Android (cla: yes, tool)\n\n31395 Roll engine ca31a7c57bad..206cab6e7013 (11 commits) (cla: yes)\n\n31399 add ignorable track-widget-creation flag to build aot (cla: yes, tool)\n\n31400 add printError messages and tool exit to android device (cla: yes, tool)\n\n31404 throw toolExit instead of rethrowing on filesystem exceptions (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-70", "text": "31406 if there is no .ios or ios sub-project, don\u2019t attempt building for iOS (cla: yes, tool)\n\n31419 Add a note about events coming from the server (cla: yes, tool)\n\n31420 Add more breadcrumb docs to Transformation (cla: yes, framework)\n\n31421 Add Widget of the Week video to SizedBox (cla: yes, framework)\n\n31434 Add more context to flutter create sample (cla: yes)\n\n31446 Allow filtering devices to only those supported by current project (cla: yes, tool)\n\n31451 Set SYMROOT as absolute in Generated.xcconfig for macOS (cla: yes)\n\n31452 Remove engine tests (a: tests, cla: yes, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-71", "text": "31454 Improve docs to address flutter/flutter#31202 (cla: yes)\n\n31456 Relax the string matching for path in test (cla: yes)\n\n31461 Revert \u201cImplement focus traversal for desktop platforms, shoehorn edition. (#30040)\u201d (cla: yes)\n\n31463 Disable all Dart fingerprinters (cla: yes)\n\n31464 CupertinoPicker fidelity revision (a: fidelity, cla: yes, f: cupertino, f: date/time picker, framework)\n\n31486 fix precedence issue (cla: yes, team: gallery)\n\n31491 Allow adb stdout to contain the port number without failing (cla: yes, tool, \u25a3 platform-android)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-72", "text": "31493 Keycode generation doc fix (a: desktop, cla: yes, d: api docs, framework)\n\n31497 Revert \u201cFix 25807: implement move for sliver multibox widget (#29188)\u201d (cla: yes, framework)\n\n31502 Improve Tabs documentation (cla: yes, d: api docs, f: material design, framework)\n\n31505 add desktop artifacts to run/target_platform selectors (cla: yes)\n\n31515 Support local engine and asset sync for macOS (cla: yes, tool)\n\n31520 Don\u2019t add empty OpacityLayer to the engine (cla: yes, engine, framework)\n\n31526 replace no-op log reader with real implementation (cla: yes, tool)\n\n31538 Fix typo in docs (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-73", "text": "31561 Add support for Tooltip hover (cla: yes)\n\n31562 Allow all tests to run with \u2013update-goldens. (cla: yes)\n\n31564 [Material] Update slider and slider theme with new sizes, shapes, and color mappings (2nd attempt) (cla: yes)\n\n31566 TimePicker moves to minute mode after hour selection (cla: yes, f: material design, framework)\n\n31567 Remove need for build/name scripts on Linux desktop (a: desktop, cla: yes)\n\n31568 fix transform assert (cla: yes, framework)\n\n31569 Roll engine to 3e47b4bb39bb4993f03a278ea7b1c11ee6459b06 (cla: yes)\n\n31578 Add support for the Kazakh language (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-74", "text": "31578 Add support for the Kazakh language (cla: yes)\n\n31582 Issues/31511 (cla: yes)\n\n31584 Capture JSON RPC errors that presently get swallowed (cla: yes)\n\n31591 make sure we exit early if the Runner.xcodeproj file is missing (cla: yes, tool)\n\n31600 Re-enable const (cla: yes, framework, waiting for tree to go green)\n\n31614 [Re-Land] Implement focus traversal for desktop platforms. (cla: yes)\n\n31616 Make FlutterPlatform public so we can start testing/refactoring it (cla: yes)\n\n31619 Fix the documentation for UiKitView#creationParams (cla: yes, framework)\n\n31621 Add check that xcode project configuration is not missing (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-75", "text": "31622 refactor context to be implicit-downcast safe (cla: yes)\n\n31623 fix edge swiping and dropping back at starting point (cla: yes, f: cupertino, framework)\n\n31634 Improve canvas example in sample dart ui app (cla: yes, d: api docs, d: examples, framework)\n\n31638 Fix doc link (cla: yes)\n\n31642 Refactor the test compiler into a separate library (cla: yes)\n\n31687 Center iOS caret, remove constant offsets that do not scale (a: text input, cla: yes, framework, \u233a\u202c platform-ios)\n\n31692 Revert \u201cAdd support for Tooltip hover (#31561)\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-76", "text": "31693 Adds a note to Radio\u2019s/RadioListTile\u2019s onChange (cla: yes, d: api docs, f: material design, framework)\n\n31696 Attempt to reduce usage of runtimeType (cla: yes, framework)\n\n31736 update packages and unpin build (cla: yes, tool)\n\n31757 Make FlutterProject factories synchronous (cla: yes, tool)\n\n31759 Remove deprecated commands (cla: yes, tool)\n\n31761 Support clipBehavior changes in hot reload (cla: yes, framework)\n\n31762 Remove trailing whitespace from README template (cla: yes)\n\n31765 Initial sketch of tools testbed (cla: yes, tool)\n\n31771 Fix a simple typo (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-77", "text": "31771 Fix a simple typo (cla: yes)\n\n31795 Revert \u201cupdate packages and unpin build\u201d (cla: yes)\n\n31800 Revert \u201cFix text field selection toolbar under Opacity\u201d (cla: yes)\n\n31801 Revert \u201cAdd buttons to gestures\u201d (cla: yes)\n\n31802 Reland \u201cFix text field selection toolbar under Opacity (#31097)\u201d (cla: yes, framework)\n\n31804 only build asset when there is asset declared in pubspec (cla: yes, framework, tool)\n\n31807 Make const available for classes that override AssetBundle (cla: yes, tool)\n\n31812 Fix #31764: Show appropriate error message when fonts pubspec.yaml isn\u2019t iterable (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-78", "text": "31815 remove assert (cla: yes)\n\n31819 Redo: Add buttons to gestures (a: desktop, cla: yes, framework)\n\n31832 Allow DSS to be dragged when its children do not fill extent (cla: yes, f: scrolling, framework, waiting for tree to go green)\n\n31835 Cherry-pick ADB CrOS fix to beta (cla: yes, tool)\n\n31860 Fix prefer_const_constructors (cla: yes)\n\n31862 iOS selection handles are invisible (#31332) (cla: yes)\n\n31868 Handle notification errors (cla: yes, tool, waiting for tree to go green)\n\n31871 Pick up v1.5.4-hotfix-2 engine for flutter 1.5.4 hotfix branch (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-79", "text": "31874 add stderr to log processor for desktop (cla: yes)\n\n31876 Revert \u201cfix edge swiping and dropping back at starting point\u201d (cla: yes)\n\n31886 Revert \u201cHandle notification errors\u201d (cla: yes)\n\nPRs closed in this release of flutter/engine\n\nFrom Thu Feb 21 20:22:00 2019 -0800 to Wed May 1 16:56:00 2019 -0700\n\n7494 Add engine support for scrollwheel events (cla: yes)\n\n7776 Support ContextWrapper when instantiating a FlutterView. (cla: yes)\n\n7783 Refactor ios play input sound logic. (cla: yes)\n\n7803 [re-land] Use all font managers to discover fonts for strut. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-80", "text": "7828 Revert Versions API (cla: yes)\n\n7851 Improve path metrics tests and docs (cla: yes)\n\n7888 Reland #7777 with proper LICENSE (cla: yes)\n\n7896 Android Embedding PR 6: Introduce FlutterView structure with FlutterSurfaceView and FlutterTextureView. (cla: yes)\n\n7906 Do not add ghost runs for trailing whitespace if the text is ellipsized (cla: yes)\n\n7908 Link dart:* sources into engine for debugger source support (affects: dev experience, affects: engine, cla: yes)\n\n7911 Reland \u201cPerformanceOverlayLayer golden test (#7863)\u201d (cla: yes)\n\n7912 Android PR 7: Introduce structure of FlutterActivity and FlutterFragment (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-81", "text": "7913 Revert dart rolls (cla: yes)\n\n7914 Allow embedder to specify a vsync waiter. (cla: yes)\n\n7915 Embedder API for setting the persistent cache path (cla: yes)\n\n7916 Revert \u201cRevert \u201cRevert \u201cReland PerformanceOverlayLayer golden test (#\u2026 (cla: yes)\n\n7917 Allow embedders to add events to the timeline. (cla: yes)\n\n7919 fix Memory leak when using PlatformView [IOS] #24714 (cla: yes)\n\n7923 Move canvas clear after preroll (cla: yes)\n\n7925 Make the layout of dynamic patch bundle similar to APK. (cla: yes)\n\n7926 Remove unused FML file export.h (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-82", "text": "7926 Remove unused FML file export.h (cla: yes)\n\n7927 Dynamic patching support for native code libraries. (cla: yes)\n\n7928 New setting to decide whether we want the engine to load ICU mapping. (cla: yes)\n\n7929 Do not clear FlutterJNI state when a FlutterView is detached (cla: yes)\n\n7937 fix sendLocales on old android versions (cla: yes)\n\n7942 Correct FlutterSemanticsNode member name style (cla: yes)\n\n7946 Android Embedding PR 8: Add FlutterEngine attachment/detachment to FlutterView (cla: yes)\n\n7947 Android Embedding PR 9: Introduce an AndroidTouchProcessor to convert MotionEvents to Flutter touch data. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-83", "text": "7953 libtxt: remove a debug log message in ComputeStrut (cla: yes)\n\n7954 Fixed an Android keyboard entry bug that was introduced by the embedding refactor. (#28438) (cla: yes)\n\n7960 Android Embedding PR 10: Add system channels to FlutterEngine. (cla: yes)\n\n7964 Fix cursor jumping when typing some special characters. (cla: yes)\n\n7967 Add api 21 check to LocalizationChannel.java (cla: yes)\n\n7968 Switch flutter\u2019s dart sdk to full and add dartdevc libraries (cla: yes)\n\n7972 Android Embedding PR 11: Add FlutterEngine to FlutterFragment. (cla: yes)\n\n7973 Suppress deprecation warning for usage of Configuration.locale (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-84", "text": "7974 Android Embedding PR 12: Add lifecycle methods to FlutterActivity. (cla: yes)\n\n7975 [macos] Add hover support to FLEViewController (cla: yes)\n\n7978 Refactor web configuration/ Add dartdevc (cla: yes)\n\n7979 Android Embedding PR 13: Integrated text input, keyevent input, and some other channel comms in FlutterView. (cla: yes)\n\n7982 Fix deleting text when the last character is some special characters on IOS (cla: yes)\n\n7985 Add async events to pipeline flows. (cla: yes)\n\n7986 Check for a null pressure range for motion events (cla: yes)\n\n7988 Provide batching for semantics updates (cla: yes)\n\n7990 Improve performance of Locale.toString (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-85", "text": "7990 Improve performance of Locale.toString (cla: yes)\n\n7991 Select MPL instead of LGPL (cla: yes)\n\n7993 Fix two typos in embedder.h (cla: yes)\n\n7997 Fix spelling errors in dartdocs (cla: yes)\n\n7999 Buffer lifecycle in WindowData (cla: yes)\n\n8000 Android Embedding PR 14: Almost done with FlutterFragment. (cla: yes)\n\n8001 Fix incorrect transformation matrix (cla: yes)\n\n8005 A11y callback (cla: yes)\n\n8006 Guard against using Android API not defined in API level 16 & 17 (cla: yes)\n\n8007 Add overloads for lookup that lets you specify a bundle (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-86", "text": "8008 Expose decorationThickness to dart:ui (cla: yes)\n\n8010 Revert \u201cBuffer lifecycle in WindowData\u201d (cla: yes)\n\n8011 Build engine for iOS on presubmit (cla: yes)\n\n8023 Start of linting Android embedding (cla: yes)\n\n8024 [fuchsia] Fix snapshot BUILD.gn file for Fuchsia roll (cla: yes)\n\n8026 [platform_views] Fix duplicated touch event pass down to flutter view from platform view. (cla: yes)\n\n8029 Android Embedding PR15: Add Viewport Metrics to FlutterView (cla: yes)\n\n8030 Add missing kHasImplicitScrolling enum value (cla: yes)\n\n8032 Re-land \u201cBuffer lifecycle in WindowData\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-87", "text": "8033 Add missing values to semantics action enums (cla: yes)\n\n8034 Android Embedding PR 16: Add touch support to FlutterView. (cla: yes)\n\n8036 add lint script for Android with baseline (cla: yes)\n\n8041 [platform_views]remove an unnecessary extra statement. (cla: yes)\n\n8043 Minor cleanups to CONTRIBUTING.md (cla: yes)\n\n8044 Improve elevation bounds for physical shape layers (cla: yes)\n\n8045 Merge only gpu and platform threads for platform views, fix deadlock. (cla: yes)\n\n8046 Fix weak pointer use violations in shell and platform view. (cla: yes)\n\n8047 Add clang static analysis support to gn wrapper (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-88", "text": "8048 Guard against NewAPI failures (cla: yes)\n\n8049 Add read-only persistent cache (cla: yes)\n\n8050 Skip skp files in license check (cla: yes)\n\n8051 Used named conditionals for platform specific dependencies and suppress Android and Windows hooks on Mac. (cla: yes)\n\n8052 remove extra source files (cla: yes)\n\n8053 Remove redundant thread checker in FML. (cla: yes)\n\n8054 Correct URL for Cirrus CI build status badge (cla: yes)\n\n8055 Adds a platfromViewId to SemanticsNode (cla: yes)\n\n8056 Send scroll events from the macOS shell (cla: yes)\n\n8061 Android Embedding PR 17: Clarify AccessibilityBridge. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-89", "text": "8065 add signal to pointer kinds (cla: yes)\n\n8066 Revert \u201cadd signal to pointer kinds\u201d (cla: yes)\n\n8071 Only build a full Dart SDK when building for the host system (cla: yes)\n\n8072 Delay the vsync callback till the frame start time specified by embedder. (cla: yes)\n\n8073 Update a11y word forward/back enum names (cla: yes)\n\n8074 Add script to help generate PR messages (cla: yes, waiting for tree to go green)\n\n8077 Mark const extern (cla: yes)\n\n8078 only partial rule revert (cla: yes)\n\n8079 Fix text.dart height docs (cla: yes)\n\n8080 Only build full sdk on release to speed up bots (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-90", "text": "8084 Move android_sdk_downloader so I can more easily deprecate it (cla: yes)\n\n8085 Remove deprecated libraries from snapshot (cla: yes)\n\n8087 Drop android_sdk_downloader in favor of cipd (cla: yes)\n\n8089 Allow embedders to post tasks onto the render thread. (cla: yes)\n\n8090 Android linter prints to the console by default (cla: yes)\n\n8093 Clarify arguments to FlutterEngineOnVsync. (cla: yes)\n\n8094 Add support for trace counters with variable arguments and instrument the raster cache. (cla: yes)\n\n8095 Integrated AndroidTouchProcessor within the old FlutterView (cla: yes)\n\n8096 Log non-kSuccess returns from embedder API calls. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-91", "text": "8098 Do not cache gclient sync (cla: yes)\n\n8099 Use right stream for Java, on mac try to autoselect Java 1.8 (cla: yes)\n\n8102 Fix typo (cla: yes)\n\n8103 Guard initialization of touch exploration listener (cla: yes)\n\n8105 Support dartdevc, dart2js with shared source files, dartdevc sdk (cla: yes)\n\n8106 Fix the Windows build (cla: yes)\n\n8109 Android Embedding PR 19: Add accessibility to new FlutterView. (cla: yes)\n\n8114 Improve shadow doc in PhysicalShapeLayer (cla: yes)\n\n8115 Add Views V2 support for Fuchsia (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-92", "text": "8122 Revert \u201cAdd support for trace counters with variable arguments and instrument the raster cache.\u201d (cla: yes)\n\n8124 Use final state passed to dart before initialization as the initial lifecycleState. (cla: yes)\n\n8126 Bugfix #29203: NPE in getAccessibilityProvider in old FlutterView. (cla: yes)\n\n8139 Look up ICU symbols based on the path to libflutter.so as a fallback (cla: yes)\n\n8140 Reland PerformanceOverlayLayer golden test (cla: yes)\n\n8141 Fix TextStyle decode misalignment (cla: yes)\n\n8142 Typo \u201cfast an inline\u201d to \u201cfast and inline\u201d (cla: yes)\n\n8143 Fix indexing error in dart:ui TextStyle.toString (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-93", "text": "8145 Reland \u201cAdd support for trace counters with variable arguments and instrument the raster cache.\u201d (cla: yes)\n\n8147 Add \u201cfull-dart-debug\u201d that disabled optimizations in the Dart VM. (cla: yes)\n\n8148 Add dump-shader-skp switch to help ShaderWarmUp (cla: yes)\n\n8149 Encode scroll motion events in the Android touch processor (cla: yes)\n\n8150 Disable build_ios task due to lack of credits. (cla: yes)\n\n8151 [Skia] Rollback Skia to 29d5dec9a0783a033b921dc483fb98d565d684f6 (cla: yes)\n\n8153 Revert \u201cDisable build_ios task due to lack of credits.\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-94", "text": "8154 Suppress deprecation warning for use of Build.CPU_ABI (cla: yes)\n\n8155 Ensure that typed data is released within SendPlatformMessage scope. (cla: yes)\n\n8156 Add a11y support for embedded iOS platform view (cla: yes)\n\n8157 Anti-Aliasing for shape layers (cla: yes)\n\n8159 Initial import of GLFW Linux shell from FDE (cla: yes)\n\n8160 Add a build dependencies script for Linux desktop (cla: yes)\n\n8166 Do not pass short-lived buffers as labels to Dart_TimelineEvent (cla: yes)\n\n8168 Add an allocator specific check to ensure that strings passed to the timeline are not heap allocated. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-95", "text": "8170 Bugfix: Prevent crash when responding to a platform message after FlutterJNI detaches from native. (cla: yes)\n\n8171 Add docs for helpful commands to fix format (cla: yes)\n\n8172 Add frame and target time metadata to vsync events and connect platform vsync events using flows. (cla: yes)\n\n8174 [scenic][SCN-1054] Move back off of SetTranslationRH (cla: yes)\n\n8175 Keep overlays_gr_context_ in sync with the overlay surface (cla: yes)\n\n8180 Fix log level typo from ERROR to INFO (cla: yes)\n\n8181 Fix include of libzx. (cla: yes)\n\n8182 Ensure that Picture::RasterizeToImage destroys Dart persistent values on the UI thread (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-96", "text": "8183 Clip to clip_rect instead of paint bounds (cla: yes)\n\n8185 Simplify the fallback waiter and add traces for vsync scheduling overhead. (cla: yes)\n\n8196 Add \u2013no-full-dart-sdk option to GN (cla: yes)\n\n8202 [platform_view] iOSP platformView composition optimize. (cla: yes, platform-ios)\n\n8203 Export FlutterSemanticsUpdateNotification and improve docs (cla: yes)\n\n8204 Disable build_ios due to large queue times. (cla: yes)\n\n8206 Define the dart_platform_sdk GN variable only on host targets (cla: yes)\n\n8208 Plumb a reference of PlatformViewsController and AccessibilityBridge to each other (cla: yes)\n\n8210 Correct greater than or equal logic in offset base (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-97", "text": "8210 Correct greater than or equal logic in offset base (cla: yes)\n\n8214 libtxt: more accurate tracking of run positioning and width for justified text (cla: yes)\n\n8217 Allow exported __const on iOS (cla: yes)\n\n8218 [ios] Set contentsScale before we commit CATransaction (cla: yes)\n\n8219 Send macOS keyboard data to the engine (cla: yes)\n\n8221 Moved io.flutter.embedding.engine.android package to io.flutter.embedding.android (cla: yes)\n\n8227 Add the Linux desktop setup script to Dockerfile (cla: yes)\n\n8229 Have the AccessibilityBridge attach/detach itself to the (cla: yes)\n\n8230 Remove jsoncpp from desktop Linux shell setup (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-98", "text": "8230 Remove jsoncpp from desktop Linux shell setup (cla: yes)\n\n8231 Removed Activity reference from AccessibilityBridge by using a View for insets instead of the Activity (cla: yes)\n\n8233 Enable Linux shell build (cla: yes)\n\n8234 Use the GPU thread for Android surface on-screen context lifecycle operations (cla: yes)\n\n8237 Mirror Android platform views a11y tree in the Flutter a11y tree. (cla: yes)\n\n8241 fix video player dismiss when there is a iOS platform view (cla: yes)\n\n8246 Remove more forced crashes from FlutterJNI (cla: yes)\n\n8247 Fix incorrect vertices colors length check (cla: yes)\n\n8249 Allow specifying an alternate Mac host SDK. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-99", "text": "8249 Allow specifying an alternate Mac host SDK. (cla: yes)\n\n8250 Delegate a11y events and action to/from embedded Android platform views. (cla: yes)\n\n8251 Fixed service isolate not being initialized correctly due to bad name (cla: yes)\n\n8253 Add platformViewId to stub_ui (cla: yes)\n\n8254 Do not drop the DartExecutor\u2019s message handler when a FlutterNativeView is detached from the FlutterView (cla: yes)\n\n8256 check that public API of dart:ui conforms to web implementation (cla: yes)\n\n8265 Linking Higher & Lower Class Docs (affects: docs, cla: yes)\n\n8273 Allow embedders to specify their own task runner interfaces. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-100", "text": "8274 [ui] Add null check in FontWeight.lerp (Work in progress (WIP), cla: yes, prod: API break)\n\n8276 Make it easy to write embedder unit tests by creating a fixture and config builder. (cla: yes)\n\n8277 Roll buildroot to 9c7b023ff266ee58b00fe60326fa1db910a087f3 (cla: yes)\n\n8293 [vulkan] Add FUCHSIA external sem/mem extensions (cla: yes)\n\n8295 Fixing links between higher and lower classes. (affects: docs, cla: yes)\n\n8296 Migrate existing embedder unit tests to use the fixture. (cla: yes)\n\n8297 [fuchsia] Add missing trace macros (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-101", "text": "8299 Enable lambda like native callbacks in tests and add support for custom entrypoints. (cla: yes)\n\n8308 Map glfw into third_party, and roll buildroot (cla: yes)\n\n8309 Allow specification of std::functions as native entrypoints from Dart code. (cla: yes)\n\n8312 Revert \u201cAllow specification of std::functions as native entrypoints from Dart code.\u201d (cla: yes)\n\n8317 Android Embedding PR22: Polish - FlutterActivity Intent factories, FlutterFragment control of render modes, FlutterSurfaceView transparent until rendering is ready. (cla: yes)\n\n8318 Reduce z-fighting on Scenic (cla: yes)\n\n8319 Fix \u201cPointerEvent\u201d flow end event (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-102", "text": "8319 Fix \u201cPointerEvent\u201d flow end event (cla: yes)\n\n8325 [fuchsia] Disable FML_TRACE_COUNTER events to unblock roll (cla: yes)\n\n8327 Build GLFW from source for Linux shell (cla: yes)\n\n8329 Reland \u201cAllow specification of std::functions as native entrypoints from Dart code.\u201d (cla: yes)\n\n8330 Create a new resource loading EGL context for each PlatformView instance on Android (cla: yes)\n\n8331 Build Windows shell (cla: yes)\n\n8333 Allow delegation of a11y events from nodes that were not yet traversed (cla: yes)\n\n8334 Remove use of epoxy from Linux shell (cla: yes)\n\n8335 Add super call in FLEView reshape (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-103", "text": "8335 Add super call in FLEView reshape (cla: yes)\n\n8336 Fix Windows build. (cla: yes)\n\n8337 Cleanups to run_tests.sh script (cla: yes)\n\n8338 Remove the standalone a11y test runners and merge its tests into embedder_unittests. (cla: yes)\n\n8339 Fix typos (cla: yes)\n\n8343 Reset min log levels on each engine launch. (cla: yes)\n\n8345 Build precompiled sdk and analyzer summary for dartdevc (cla: yes)\n\n8346 Introduce unit tests and refactor web dart:ui into \u201cpackage\u201d (cla: yes)\n\n8353 Revert \u201cBuild precompiled sdk and analyzer summary for dartdevc\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-104", "text": "8354 Rename threshold to access_threshold (cla: yes)\n\n8355 Create ddc summary file and precompiled sdk (cla: yes)\n\n8358 Allow per-platform customization of the default Skia font manager (cla: yes)\n\n8359 update buildroot dep for PR #227 (cla: yes)\n\n8360 Remove old Fuchsia external mem,sem extensions (cla: yes)\n\n8362 Ensure OpacityLayer to have a single child (cla: yes)\n\n8368 libtxt: track the start and end x positions of glyph blobs for more accurate rendering of text decorations (cla: yes)\n\n8369 GN Format all files in the engine. (cla: yes)\n\n8371 Add a GN format presubmit. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-105", "text": "8371 Add a GN format presubmit. (cla: yes)\n\n8373 Move libdart selection into its own target in //flutter/runtime. (cla: yes)\n\n8374 [flutter_tester] Accept \u2013icu-data-file-path (cla: yes)\n\n8375 Allow running runtime_unittests in AOT mode. (cla: yes)\n\n8376 Check for hover motion events in AndroidTouchProcessor (cla: yes)\n\n8377 Handle null values in TextInputConfiguration.actionLabel JSON (cla: yes)\n\n8379 Allow native entrypoint registration for runtime unittests. (cla: yes)\n\n8380 Delay platform view removal to submitFrame. (cla: yes)\n\n8381 Remove unused DartVM::IsKernelMapping (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-106", "text": "8382 Add missing import to functional for Windows. (cla: yes)\n\n8387 Make the resource context primary on iOS (cla: yes)\n\n8393 Don\u2019t access a11y APIs with reflection starting Android P. (cla: yes)\n\n8397 Separate the data required to bootstrap the VM into its own class. (cla: yes)\n\n8400 Make sure FlutterViewController flushs all pending touches when no longer active (cla: yes)\n\n8402 Enable shutting down all root isolates in a VM. (cla: yes)\n\n8406 Revert \u201cSeparate the data required to bootstrap the VM into its own class.\u201d (cla: yes)\n\n8407 [fuchsia] Exclude glfw from the Fuchsia host build (cla: yes)\n\n8410 [txt] Add back FontCollection::SetDefaultFontManager (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-107", "text": "8411 Added new Android embedding packages to javadoc generation. (cla: yes)\n\n8412 Pass environment defines to compile flutter platform step. (cla: yes)\n\n8414 Separate the data required to bootstrap the VM into its own class. (cla: yes)\n\n8416 Add scroll wheel support to desktop GLFW shell (cla: yes)\n\n8417 Remove use of DART_CHECK_VALID. (cla: yes)\n\n8419 Support message loops whose tasks are executed concurrently. (cla: yes)\n\n8421 dart:ui Locale: add toLanguageTag() (cla: yes)\n\n8425 Roll buildroot (cla: yes)\n\n8427 Eliminate unused displayBounds parameter (cla: yes)\n\n8429 Make AccessibilityViewEmbedder final (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-108", "text": "8429 Make AccessibilityViewEmbedder final (cla: yes)\n\n8431 Revert \u201cEnable shutting down all root isolates in a VM.\u201d (cla: yes)\n\n8435 Add window title/icon support to GLFW shell (cla: yes)\n\n8439 update to use SkTileMode (cla: yes)\n\n8442 Build windows engine on GCE (cla: yes)\n\n8446 Add scripts that prepares our windows VM image (cla: yes)\n\n8448 Android Embedding PR24: Allow FlutterActivity to provide an engine, also adjust FlutterFragment timing to avoid Activity launch lag. (cla: yes)\n\n8456 More detailed comments for engine build windows VM (cla: yes)\n\n8457 Enable shutting down all root isolates in a VM. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-109", "text": "8460 Android Embedding PR25: Prevent black rectangle when launching FlutterActivity (cla: yes)\n\n8461 Log the correct function on error in the embedder. (cla: yes)\n\n8462 Document the leak_vm flag. (cla: yes)\n\n8465 Android Embedding PR26: Offer an async version of FlutterMain\u2019s ensure initialization complete. (cla: yes)\n\n8467 Initialize OpacityLayer\u2019s matrix to identity (cla: yes)\n\n8472 [Docs] Correcting link to contributing guide. (affects: docs, cla: yes, easy fix)\n\n8473 Roll dart back to 907c514c8937cf76e (cla: yes)\n\n8477 Add trace events for creating minikin fonts (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-110", "text": "8477 Add trace events for creating minikin fonts (cla: yes)\n\n8490 Remove unused variable (cla: yes)\n\n8496 [scenic] Remove unused mozart.internal (cla: yes)\n\n8497 Wire up support for Dart fixtures in shell_unittests. (cla: yes)\n\n8498 Move constant definitions out embedder.h (cla: yes)\n\n8499 Route FlutterEventTracer events to Fuchsia tracing for Fuchsia (cla: yes)\n\n8500 Get rid of the macro for accessing the current test name. (cla: yes)\n\n8503 [scenic][SCN-1054] remove dangling uses of SetTranslationRH (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-111", "text": "8504 Android Embedding PR27: Fix SurfaceView flicker in Fragment transactions (cla: yes)\n\n8511 switch to newer APIs for shaders and filters (cla: yes)\n\n8515 Add windows host_debug_unopt build test (cla: yes)\n\n8517 Rename the blink namespace to flutter. (cla: yes)\n\n8518 Remove the unused EnableBlink flag. (cla: yes)\n\n8520 Rename the shell namespace to flutter. (cla: yes)\n\n8523 Remove redundant specification of the\n\nflutter\n\nnamespace in the engine. (cla: yes)\n\n8524 Change Rect internal representation from Float32List to Float64List (cla: yes)\n\n8525 Merge flutter/synchronization contents into fml. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-112", "text": "8527 Added support for authentication codes for the VM service (cla: yes)\n\n8528 Redo a fix for cull rect calculation on TransformLayers with a perspective transform (cla: yes)\n\n8530 Tight Paragraph Width (cla: yes)\n\n8531 Add an option to build the GLFW shell on macOS (cla: yes)\n\n8534 Use code cache dir for engine cache (#14704). (cla: yes)\n\n8536 Android Embedding PR28: Report app is active to Flutter in FlutterFragment.onResume() instead of onPostResume() forwarded from Activity. (cla: yes)\n\n8537 Correct nullability for FlutterStandardReader (cla: yes)\n\n8538 Add null check in FLETextInputPlugin (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-113", "text": "8538 Add null check in FLETextInputPlugin (cla: yes)\n\n8540 Android Embedding PR29: Improve FlutterFragment construction API + engine config API. (cla: yes)\n\n8541 Eliminate unused write to local (cla: yes)\n\n8545 Revert \u201cChange Rect internal representation from Float32List to Float64List (#8524)\u201d (cla: yes)\n\n8546 [font_collection] Add missing semicolon (cla: yes)\n\n8548 Initialize OpacityLayer\u2019s matrix to identity (#8467) (cla: yes)\n\n8549 [fuchsia] Add flutter:: to scene_host.cc (cla: yes)\n\n8550 Export extern constants in embedder.h (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-114", "text": "8550 Export extern constants in embedder.h (cla: yes)\n\n8551 Android Embedding PR30: Make FlutterView focusable so that the keyboard can interact with it. (cla: yes)\n\n8555 Roll Dart 15b11b018364ce03\u2026a8f3a5dae6203d10 (cla: yes)\n\n8557 Update README.md (cla: yes)\n\n8562 Add missing include to text_input_model.h (cla: yes)\n\n8563 Remove unused import in FlutterActivityDelegate (cla: yes)\n\n8565 Make Rect and RRect use 64 bit doubles, and make them const-able (cla: yes)\n\n8581 Remove the flutter_aot GN argument. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-115", "text": "8583 Pipe Z bounds from ViewportMetrics to Flow (cla: yes)\n\n8585 Check that TransformLayer has a finite matrix (cla: yes)\n\n8591 Glitchiness with Tab Characters (cla: yes)\n\n8592 Variant type for C++ client wrapper (cla: yes)\n\n8593 Roll buildroot to ce7b5c786a12927c9e0b4543af267d48c52e0b3a (cla: yes)\n\n8594 Enable VM service authentication codes by default (cla: yes)\n\n8598 Implement StandardMethodCodec for C++ shells (cla: yes)\n\n8600 Add desktop shell unittests to test script (cla: yes)\n\n8605 Allow building without python2 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-116", "text": "8605 Allow building without python2 (cla: yes)\n\n8608 [fuchsia] Fix SceneUpdateContext for new PaintContext field (cla: yes)\n\n8611 Add FLEPluginRegistry for macOS (cla: yes)\n\n8612 Remove call to SkFont::setLinearMetrics (cla: yes)\n\n8615 Rename flow namespace to flutter (cla: yes)\n\n8616 Add a unit test for PhysicalShapeLayer (cla: yes)\n\n8617 Fixes a typo in comment (affects: docs, cla: yes)\n\n8618 Test saving compilation traces. (cla: yes)\n\n8621 Avoid manually shutting down engine managed isolates. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-117", "text": "8622 Assert that all VM launches in the process have the same opinion on whether the VM should be leaked in the process. (cla: yes)\n\n8623 Add an adjustment to the line width check in LineBreaker::addWordBreak (cla: yes)\n\n8625 Add support for authentication codes via MDNS on iOS (cla: yes)\n\n8626 Avoid leaking the VM in runtime_unittests and update failing tests. (cla: yes)\n\n8627 Revert \u201cAdd a unit test for PhysicalShapeLayer\u201d (cla: yes)\n\n8628 Avoid leaking the VM in the shell unittests and assert VM state in existing tests. (cla: yes)\n\n8633 Reland elevation test (cla: yes)\n\n8634 Merge runtime lifecycle unittests into the base test target. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-118", "text": "8635 Remove unnecessary DartIO::EntropySource wrapper (cla: yes)\n\n8637 Generate layer unique id for raster cache key (cla: yes)\n\n8638 Custom RTL handling for ghost runs, NotoNaskhArabic test font (cla: yes)\n\n8640 Remove DartSnapshotBuffer and dry up snapshot resolution logic. (cla: yes)\n\n8642 Remove unused Settings::ToString. (cla: yes)\n\n8643 Allow specifying the Mac SDK path as an environment variable to //flutter/tools/gn (cla: yes)\n\n8644 Revert \u201cRemove DartSnapshotBuffer and dry up snapshot resolution logic.\u201d (cla: yes)\n\n8645 Reland \u201cRemove DartSnapshotBuffer and dry up snapshot resolution logic\u201d. (cla: yes)\n\n8646 Disable auth codes for Observatory test (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-119", "text": "8646 Disable auth codes for Observatory test (cla: yes)\n\n8649 Roll buildroot to 380d0ed5c3399d5a2aaac4a66d98e3a3fda77c31 (cla: yes)\n\n8652 Add factory methods to FileMapping that make it easy to create common mappings. (cla: yes)\n\n8653 Cleanup references to FLX archives from the engine. (cla: yes)\n\n8656 Only allow mappings for ICU initialization. (cla: yes)\n\n8657 Change Vertices.indices to use a Uint16 list to more accurately reflect Skia\u2019s API (cla: yes)\n\n8658 Allow native bindings in secondary isolates. (cla: yes)\n\n8659 Replace ThreadLocal with ThreadLocalUniquePtr (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-120", "text": "8659 Replace ThreadLocal with ThreadLocalUniquePtr (cla: yes)\n\n8661 Put the testing lib in the flutter namespace. (cla: yes)\n\n8663 Remove support for downloading dynamic patches on Android (cla: yes)\n\n8664 Add framework test in engine presubmit checks (cla: yes)\n\n8681 Revert \u201cCustom RTL handling for ghost runs, NotoNaskhArabic test font\u201d (cla: yes)\n\n8682 Revert \u201cOnly allow mappings for ICU initialization.\u201d (cla: yes)\n\n8683 Custom RTL handling for ghost runs, NotoNaskhArabic test font (cla: yes)\n\n8688 fix toString (cla: yes)\n\n8689 Revert \u201cRemove unused Settings::ToString. (#8642)\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-121", "text": "8690 Revert Rect/RRect 64 bit (cla: yes)\n\n8692 Add tests from framework (cla: yes)\n\n8695 Reland const Rect/RRect (cla: yes)\n\n8698 Convert animated unpremul images to premul during decode (cla: yes)\n\n8700 Increase the memory usage estimate for EngineLayer (cla: yes)\n\n8704 Limit the size of VirtualDisplay we create in android (cla: yes)\n\n8706 Rename tightWidth to longestLine (cla: yes)\n\n8707 Document that OpacityLayer\u2019s children are nonempty (cla: yes)\n\n8710 Plumb arguments from Settings to Dart entrypoint (cla: yes)\n\n8712 [scenic] Purge references to Mozart (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-122", "text": "8716 Add Rect.fromCenter() constructor (cla: yes)\n\n8721 Fix header include guards for fml/thread_local.h (cla: yes)\n\n8723 Fix include paths in libtxt to prepare for upcoming Skia build change (cla: yes)\n\n8735 Fix reflective ctor invocation in FlutterFragment (cla: yes)\n\n8738 Revert \u201cIncrease the memory usage estimate for EngineLayer\u201d (cla: yes)\n\n8742 Log the sticky error during isolate shutdown (cla: yes)\n\n8747 Fix crash when cursor ends up at invalid position (cla: yes)\n\n8758 Check the matrix in pushTransform (cla: yes)\n\n8772 colormatrix is now 0\u20261 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-123", "text": "8780 VirtualDisplay size constraint - add a comment explaining the reason (cla: yes)\n\n8789 Roll to branched dart sdk with hotfix(dartbug.com/36772) for flutter 1.5.4 (cla: yes)\n\n8790 Roll to branched dart sdk with two more hotfixes for flutter 1.5.4. (cla: yes)\n\n8792 Re-create texture from pixel buffer onGrContextCreate (cla: yes)\n\n8793 Roll buildroot to pull in Fuchsia SDK related updates. (cla: yes)\n\n8796 Dart SDK roll for 2019-04-30 (cla: yes)\n\nPRs closed in this release of flutter/plugins", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-124", "text": "PRs closed in this release of flutter/plugins\n\nFrom Thu Feb 21 20:22:00 2019 -0800 to Wed May 1 16:56:00 2019 -0700\n\n721 [google_sign_in]Fix filename in google_sign_in docs, which leads to crash (bugfix, cla: yes, documentation)\n\n742 [image_picker]Fixed losing transparency of PNGs (bugfix, cla: yes, submit queue)\n\n790 [cloud_firestore]add sample to get specific document (cla: yes, documentation, flutterfire, submit queue)\n\n793 [video_player]Do not divide by zero (bugfix, cla: yes, submit queue)\n\n815 [google_maps_flutter] adds support for custom icon from a byte array (PNG) (cla: yes, feature, needs love)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-125", "text": "927 [firebase_admob]Fix typo in RewardedVideoAdd sample (bugfix, cla: yes, documentation, flutterfire, submit queue)\n\n963 Reduce Android compiler warnings, prevent NPE (cla: yes)\n\n985 [google_maps_flutter]add support for map tapping (cla: yes)\n\n991 [firebase_core]Fix firebase core registration and fix firestore document observer cleanup (cla: yes)\n\n1008 [firebase_analytics] Add \u2018loginMethod\u2019 parameter to logLogin() (cla: yes, feature, flutterfire, submit queue)\n\n1022 [camera] Add serial dispatch_queue for camera plugin to avoid blocking the UI (bugfix, cla: yes, submit queue)\n\n1023 [camera]Fix CameraPreview freezes during startVideoRecording on iOS (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-126", "text": "1049 [google_maps_flutter] Widget based polyline support for google maps. (cla: yes)\n\n1080 [firebase_crashlytics]Firebase Crashlytics plugin (cla: yes)\n\n1096 [firebase_database]Return error message from DatabaseError#toString() (cla: yes, submit queue)\n\n1123 [video_player] Correctly report buffering status on Android (bugfix, cla: yes, submit queue)\n\n1142 [firebase_dynamic_links] fix dynamic link crash when creating shortlink if warnings are null (bugfix, cla: yes, flutterfire, submit queue)\n\n1154 [video_player] Upgrade ExoPlayer dependency to 2.9.4 (cla: yes, feature, submit queue)\n\n1159 [firebase_auth] Enable passwordless sign in (cla: yes, feature, flutterfire, submit queue)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-127", "text": "1182 [firebase_dynamic_links] sometimes got error NSPOSIXErrorDomain Code=53 in ios (bugfix, cla: yes, flutterfire, submit queue)\n\n1192 Flutterfire apps no longer show a confusing log message about configuring default app (cla: yes)\n\n1201 [connectivity] Update README.md (cla: yes, documentation, submit queue)\n\n1208 [firebase_storage] Support for getReferenceFromUrl (cla: yes)\n\n1219 [firebase_auth] update example app and README (cla: yes, documentation, feature, flutterfire)\n\n1223 [firebase_ml_vision] Fix crash when scanning URL QR-code on iOS (bugfix, cla: yes, submit queue)\n\n1229 [google_maps_flutter] Marker APIs are now widget based (Android) (bugfix, cla: yes, feature)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-128", "text": "1236 [webview_flutter]Allow specifying a navigation delegate(Android and Dart). (cla: yes)\n\n1237 [share] Changed compileSdkVersion of share plugin to 28 (cla: yes, submit queue)\n\n1239 [google_maps_flutter] Marker APIs are now widget based (Dart Changes) (cla: yes, documentation)\n\n1240 [google_maps_flutter] Marker APIs are now widget based (iOS Changes) (cla: yes, feature)\n\n1241 [camera] 28180 fix exif data bug for first time camera use android (cla: yes, submit queue)\n\n1249 [in_app_purchase] payment queue dart ios (bugfix, cla: yes, feature)\n\n1250 [video_player] Cast the NSInteger to long and use %ld formatter (cla: yes, submit queue)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-129", "text": "1251 Update android_alarm_manager with instructions on setting WAKE_LOCK permissions (cla: yes, documentation)\n\n1252 [In_app_purchase]SKProduct related fixes (cla: yes)\n\n1253 Disable analyzer error (cla: yes)\n\n1255 Don\u2019t register the Maps and Camera plugin for background FlutterViews. (cla: yes)\n\n1256 Skip Gradle\u2019s static permission check for the Maps MyLocation feature. (cla: yes)\n\n1257 Suppress unchecked cast warning for the PlatformViewFactory creation \u2026 (cla: yes)\n\n1259 [in_app_purchase] Java API for querying purchases (cla: yes)\n\n1261 [camera] Fixes #28350 (bugfix, cla: yes, feature, submit queue)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-130", "text": "1265 [image_picker] fix error if pick image from yandex disk(dropbox) (bugfix, cla: yes)\n\n1266 [image_picker] update Uri Authority for GooglePhotos (bugfix, cla: yes, submit queue)\n\n1268 [image_picker] remove unnecessary camera permmision (bugfix, cla: yes)\n\n1269 [image_picker] set real extension instead always jpg (cla: yes, submit queue)\n\n1270 [firebase_ml_vision] Incorrect link for including the ML Model pods into the example project (cla: yes, documentation, submit queue)\n\n1271 [google_maps_flutter] Update the sample app in README.md (cla: yes)\n\n1274 [cloud_firestore,firebase_database,firebase_storage] handling error nil on getFlutterError (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-131", "text": "1275 [package_info] calling new method for BuildNumber in new android versions (bugfix, cla: yes, submit queue)\n\n1277 [firebase_performance] Fix incorrect setting of Trace & HttpMetric attributes (cla: yes, flutterfire)\n\n1278 [firebase_performance] remove deprecated trace counter API usage (cla: yes, flutterfire)\n\n1279 [firebase_core][firebase_database]Add nil check for some static methods to avoid unwanted behaviors (cla: yes)\n\n1281 [in_app_purchase] Fix CI formatting errors. (cla: yes)\n\n1284 [in_app_purchase] Minor bugfixes and code cleanup (cla: yes)\n\n1285 [shared_preferences] driver test using package:test on device (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-132", "text": "1286 [in_app_purchase] Adds Dart BillingClient APIs for loading purchases (cla: yes)\n\n1288 [image_picker] delete original file if scaled (cla: yes)\n\n1289 Add missing license headers (cla: yes)\n\n1291 Bugfix/account for nsnull (cla: yes)\n\n1292 [firebase_auth] Make providerId \u2018const String\u2019 for easier use in switch statements (bugfix, cla: yes, flutterfire, submit queue)\n\n1293 [google_maps_flutter] The FloatingActionButton requires an icon (cla: yes)\n\n1294 Fix icon issue on ios and manifest on android (cla: yes)\n\n1296 [image_picker] Update pub info for #742 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-133", "text": "1297 Update play-services-maps from 15.+ to 16.1.0 (cla: yes)\n\n1299 [in_app_purchase]restore purchases (cla: yes)\n\n1300 Add my name to firebase_performance and firebase_dynamic_links owners (cla: yes, submit queue)\n\n1302 [google_maps_flutter]ChangeNotifier is replaced with granular callbacks (cla: yes)\n\n1303 [in_app_purchase]retrieve receipt (cla: yes)\n\n1306 [cloud_firestore] Update firebase-firestore to 18.2.0 (cla: yes, submit queue)\n\n1309 [firebase_dynamic_links] Version bump for firebase_dynamic_links PR #1142 (bugfix, cla: yes, flutterfire, submit queue)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-134", "text": "1311 [firebase_analytics] Add resetAnalyticsData method (cla: yes)\n\n1314 trackCameraPosition is inferred from GoogleMap.onCameraMove (cla: yes)\n\n1315 [image_picker] remove unnecessary file path for video. (bugfix, cla: yes, needs love, submit queue)\n\n1316 [cloud_functions] Specify version for CocoaPod and handle null regions gracefully (cla: yes)\n\n1322 [in_app_purchase] refactoring and tests (cla: yes)\n\n1323 Allow specifying a navigation delegate (iOS implementation). (cla: yes)\n\n1324 Exclude longPress from semantics (cla: yes)\n\n1326 [image_picker] Update versioning for #1268 (cla: yes)\n\n1327 Change build link in contributors site to cirrus (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-135", "text": "1329 [firebase_messaging] Fix Changelog.md version for firebase_messaging (cla: yes, documentation, flutterfire)\n\n1331 [connectivity] Enable fetching current Wi-Fi network\u2019s BSSID (cla: yes, feature)\n\n1333 [firebase_auth] fixes Android linkWithCredential (cla: yes, flutterfire)\n\n1335 [webview_flutter] Add a page loaded callback (cla: yes, feature, submit queue)\n\n1337 [android_alarm_manager] Improve error message seen when an alarm fires and AlarmService.setPluginRegistrant has not been called. (bugfix, cla: yes)\n\n1338 Add Kaushik to maps code owners (cla: yes)\n\n1339 [cloud_firestore] ios check for nil snapshot in cloud_firestore error handling instead of checking for non-nil error (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-136", "text": "1341 Removed dependency on Firebase for android_alarm_manager example (cla: yes)\n\n1342 add driver test command to cirrus (cla: yes)\n\n1343 [firebase_auth] fix error code in doc of createUserWithEmailAndPassword() (cla: yes)\n\n1344 [shared_preferences] Update shared_preferences CHANGELOG for release (cla: yes)\n\n1345 [cloud_firestore] fix NoSuchMethodError regression and add test (cla: yes)\n\n1346 [cloud_functions] add a driver test (cla: yes)\n\n1348 [firebase_auth] Add a driver test (cla: yes)\n\n1350 [google_maps_flutter] add My location button enabled option (cla: yes)\n\n1352 [google_maps_flutter] Add method getVisibleRegion (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-137", "text": "1353 [firebase_messaging] Update example (cla: yes, submit queue)\n\n1357 Disable Android emulator testing for now to fix tests (cla: yes)\n\n1360 [webview_flutter] Create WebView client depending on version and hasDelegate (bugfix, cla: yes, webview)\n\n1361 [webview_flutter] Update changelog and bump versions. (cla: yes, submit queue)\n\n1364 [firebase_ml_vision] Update ImageDetector for iOS (bugfix, cla: yes, flutterfire)\n\n1367 [firebase_ml_vision] Android side of upgrade to new ImageLabeler (bugfix, cla: yes, flutterfire)\n\n1369 [webview_flutter] Refactor WebViewController to have a reference to the widget, to minimize necessary update calls. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-138", "text": "1372 [image_picker] fix \u201cCancel button not visible in gallery, if camera was accessed first\u201d (bugfix, cla: yes)\n\n1373 [shared_preferences] Add contains method (cla: yes, feature)\n\n1374 Update CONTRIBUTING.md with test info (cla: yes)\n\n1375 Add pull request template (cla: yes)\n\n1377 [firebase_admob] Update documentation to add iOS Admob ID & add iOS Admob ID in example project (cla: yes, documentation, flutterfire)\n\n1378 [firebase_crashlytics] Support compatibility with Swift plugins (cla: yes)\n\n1379 [firebase_crashlytics] Upgrade dependencies (cla: yes)\n\n1380 [in_app_purchase]load purchase (cla: yes, feature)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-139", "text": "1381 [in_app_purchase] Iap refactor (cla: yes)\n\n1384 Send success result for AlarmService.initialized method call (cla: yes)\n\n1385 [firebase_crashlytics]Remove white spaces to make git happy (cla: yes)\n\n1386 [google_maps_flutter] Add failing test verifying that only changed markers are updated (cla: yes)\n\n1387 [cloud_firestore] Add metadata field to DocumentSnapshot (cla: yes, feature, flutterfire)\n\n1388 [firebase_crashlytics] Add firebase_crashlytics for Readme. (cla: yes, documentation, flutterfire)\n\n1393 [camera] Fixes (#29925) (bugfix, cla: yes)\n\n1394 Add Crashlytics plugin to FlutterFire docs (cla: no, flutterfire, submit queue)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-140", "text": "1395 Add Crashlytics plugin to opensource list (cla: yes, flutterfire, submit queue)\n\n1398 [firebase_auth]Fix PhoneCodeAuthRetrievalTimeout callback never called (bugfix, cla: yes, flutterfire)\n\n1404 Bump version to 0.4.1+5 (cla: yes)\n\n1405 [firebase_messaging] Additional step for iOS (cla: yes, documentation, flutterfire)\n\n1406 [webview_flutter] Add initial e2e tests (cla: yes, feature, webview)\n\n1407 [firebase_crashlytics] Update README code example (cla: yes, documentation, flutterfire)\n\n1409 [google_maps] Add initial google_maps tests (cla: yes)\n\n1410 [android_alarm_manager] add type params for invokeMethod calls. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-141", "text": "1411 [android_intent] add type params for invokeMethod calls. (cla: yes, feature)\n\n1412 [Battery]add type params for invokeMethod calls. (cla: yes)\n\n1413 [Camera]add type params for invokeMethod calls. (cla: yes)\n\n1414 [Cloud_firestore]add type params for invokeMethod calls. (cla: yes)\n\n1416 [Connectivity]add type params for invokeMethod calls. (cla: yes, feature)\n\n1418 [firebase_crashlytics] Rely on firebase_core to set up Firebase Analytics dependency (bugfix, cla: yes, flutterfire)\n\n1420 [webview_flutter] Use a pumpWidget utility in e2e tests (cla: yes)\n\n1421 [in_app_purchase]make payment unified APIs (cla: yes, feature)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-142", "text": "1424 [google_maps_flutter] Add a key parameter to the GoogleMap widget (cla: yes)\n\n1427 [firebase_crashlytics] Do not break debug log formatting. (cla: yes, flutterfire)\n\n1428 [firebase_analytics] Added Navigator.pushReplacement screen tracking (bugfix, cla: yes, feature, flutterfire)\n\n1429 Make sure to post javascript channel messages from the platform thread. (cla: yes)\n\n1430 [google_maps] Maps zoom level tests (cla: yes)\n\n1434 [google_map] Test zoom gestures enabled (cla: yes)\n\n1435 [cloud_firestore] Remove usage of invokeMapMethod (cla: yes)\n\n1436 Fix formatting in main.dart of firebase_database, firebase_storage, google_sign_in, shared_preference (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-143", "text": "1437 [firebase_crashlytics] Fix to Initialize Fabric (cla: yes, submit queue)\n\n1438 [google_sign_in] Handle null check in example app (cla: yes)\n\n1439 [battery] Update example in README.md (cla: yes)\n\n1440 [image_picker] Check camera permissions and return error (cla: yes)\n\n1441 [google_maps] Update android gradle version (cla: yes)\n\n1442 [google_maps] Add tests for rotate tilt and zoom gestures (cla: yes)\n\n1443 [firebase_core] Use Gradle BoM with firebase_core (cla: yes, flutterfire)\n\n1444 [firebase_crashlytics] Added a simple integration test (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-144", "text": "1445 [Image_picker]Android: fix original image deleted after scaling. (cla: yes)\n\n1447 Update changelog and pubspec for onTap (cla: yes)\n\n1448 [in_app_purchase] Add references to the original object for PurchaseDetails and ProductDetails (cla: yes)\n\n1453 [cloud_firestore] Use Gradle BoM with cloud_firestore (cla: yes)\n\n1455 [connectivity]Added integration test. (cla: yes, submit queue)\n\n1458 [firebase_auth] AuthCredential for email and link (cla: yes)\n\n1462 Remove BoM to avoid Gradle issues (cla: yes)\n\n1464 [firebase_core] fix BoM-related build incompatibility regression (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-145", "text": "1465 Integration tests for cloud_firestore and firebase_database transactions (cla: yes, flutterfire)\n\n1466 [cloud_firestore]remove white spaces. (cla: yes)\n\n1467 [cloud_firestore]remove blank line. (cla: yes)\n\n1468 Migrate firebase messaging plugin away from token (cla: yes)\n\n1470 [video_player] Android: Added missing event.put(\u201cevent\u201d, \u201ccompleted\u201d); (bugfix, cla: yes)\n\n1471 [image_picker] Fix invalid path being returned from Google Photos (bugfix, cla: yes)\n\n1472 [Google_map]Enable iOS a11y by default. (cla: yes)\n\n1473 [package_info] Integration tests. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-146", "text": "1473 [package_info] Integration tests. (cla: yes)\n\n1474 [in_app_purchase]remove SKDownloadWrapper and related code. (cla: yes)\n\n1476 [cloud_firestore] support for pagination using startAtDocument, endAtDocument, etc. (cla: no, flutterfire)\n\n1477 [camera] Remove activity lifecycle (cla: yes, submit queue)\n\n1478 [google_maps_flutter] Add a bitmap descriptor that is aware of scale (cla: yes)\n\n1479 Adding links to the firebase_analytics example (cla: yes)\n\n1483 [Image_picker] ios minimum deployment target to 8.0. (cla: yes)\n\n1484 [video_player] Explicitly indicate that self should be retained (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-147", "text": "1485 Fix unused vars and rename (cla: yes)\n\n1486 [firebase_performance] Firebase Performance integration tests (cla: yes)\n\n1487 [firebase_auth] Migrate FlutterAuthPlugin from deprecated APIs (cla: yes, flutterfire)\n\n1488 [image_picker]version fix. (cla: yes)\n\n1489 BitmapDescriptor#fromBytes should be consistent across platforms (cla: yes)\n\n1490 [firebase_analytics] Fixes errors in firebase_analytics docs (cla: yes)\n\n1491 [cloud_firestore] Support for atomic FieldValue.increment (cla: yes, feature, flutterfire)\n\n1492 [firebase_analytics] Initial integration test (cla: yes, flutterfire)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-148", "text": "1493 [android_alarm_manager] Added comments and refactored android_alarm_manager plugin for clarity. (cla: yes)\n\n1495 [in_app_purchase ]add cyanglaz to code owner. (cla: yes)\n\n1496 Add myself to video_player CODEOWNERS (cla: yes)\n\n1501 [webview_flutter] Fixed documentation for usage example of JavaScript message (cla: yes)\n\n1502 [connectivity] Fixes lint error by using getApplicationContext() (cla: yes)\n\n1503 Update firebase_auth CocoaPod dependency (cla: yes)\n\n1504 [firebase_storage] Return error when failing to read file (bugfix, cla: yes, flutterfire)\n\n1505 [image_picker] Fix path of returned File objects when picking videos (bugfix, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-149", "text": "1506 [firebase_ml_vision] Start of ML Kit integration tests (cla: yes)\n\n1508 [firebase_auth] Increase iOS Firebase/Auth CocoaPods dependency to 5.19 (cla: yes)\n\n1509 [Image_picker] Android: fix a crash when the MainActivity is destroyed after selecting the image/video. (cla: yes)\n\n1511 [webview_flutter]bugfix:webview example should be statefulWidget (cla: yes)\n\n1512 [Image_picker] retrieve lost image. (cla: yes)\n\n1513 [firebase_storage] Initial integration testing (cla: yes)\n\n1514 [firebase_remote_config] Initial integration tests (cla: yes, flutterfire)\n\n1516 [webview_flutter] controller headers loadurl (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-150", "text": "1517 [in_app_purchase] Rename the unified API (cla: yes)\n\n1519 [image_picker] request camera permission if need (cla: yes)\n\n1520 [cloud_functions] update Dart API to replace call with getHttpsCallable (cla: yes, feature, flutterfire)\n\n1523 [firebase_performance] Deprecate incrementCounter in favor of incrementMetric (cla: yes)\n\n1527 Some additions to CODEOWNERS (cla: yes)\n\n1528 [webview_flutter] Remove un-used method params (cla: yes)\n\n1531 [image_picker] example app video load error fix. (bugfix, cla: yes)\n\n1532 [firebase_messaging] remove obsolete docs instruction (cla: yes, flutterfire)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-151", "text": "1533 [image_picker] version fix. (cla: yes)\n\n1534 [webview_flutter] Skip loadUrlWithHeaders test (cla: yes)\n\n1535 [webview_flutter] Test: wait for page to load before checking the content (cla: yes)\n\n1536 [in_app_purchase] Minor doc updates (cla: yes)\n\n1537 [in_app_purchase] Add auto-consume errors to PurchaseDetails (cla: yes)\n\n1539 [firebase_ml_vision] Update Firebase ML Vision documentation (cla: yes, documentation, flutterfire, submit queue)\n\n1540 [in_app_purchase] Only fetch owned purchases (cla: yes)\n\n1541 [image_picker] correct suffix on android. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "743ab3ee101c-152", "text": "1542 [video_player] Android: Fix ide warnings in video_player (cla: yes)\n\n1543 [cloud_firestore] Fix wrong FieldValue (cla: yes)\n\n1544 [image_picker]fix license format. (cla: yes)\n\n1545 [firebase_ml_vision] [share] Fix analyzer warnings from const Rect constructor. (cla: yes)\n\n1549 [google_maps_flutter] Support Color\u2019s alpha channel when converting to UIColor on iOS (cla: yes)\n\n1552 [video_player] Fix player initialization and other warnings (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.5.4/index.html"} {"id": "95e556d8c209-0", "text": "Change log for Flutter 1.7.8\n\nTools\n\nSDK\n\nRelease notes\n\n1.7.8 change log\n\nPRs closed in this release of flutter/flutter\n\nPRs closed in this release of flutter/engine\n\nPRs closed in this release of flutter/plugins\n\nPRs closed in this release of flutter/flutter\n\nFrom Wed May 1 16:56:00 2019 -0700 to Thu Jul 18 08:04:00 2019 -0700\n\n28808 updated tearDownAll function (cla: yes, t: flutter driver, team, tool, waiting for tree to go green)\n\n28834 Sliver animated list (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-1", "text": "29683 Show/hide toolbar and handles based on device kind (a: desktop, a: text input, cla: yes, framework, severe: API break)\n\n29809 Fix text selection toolbar appearing under obstructions (cla: yes, f: cupertino, f: material design, framework)\n\n29954 Cupertino localization step 9: add tests (cla: yes, f: cupertino, framework)\n\n30076 Implements FocusTraversalPolicy and DefaultFocusTraversal features. (a: desktop, cla: yes, framework)\n\n30224 Cupertino localization step 10: update the flutter_localizations README (cla: yes, f: cupertino, framework)\n\n30388 Add hintStyle in SearchDelegate (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-2", "text": "30406 Add binaryMessenger constructor argument to platform channels (cla: yes, framework, p: framework)\n\n30874 Redo \u201cRemove pressure customization from some pointer events\u201d (cla: yes, framework, severe: API break)\n\n30979 fix issue 30526: rounding error (cla: yes, framework, waiting for tree to go green)\n\n30983 Refactor core uses of FlutterError. (cla: yes, framework)\n\n30988 Tight Paragraph Width (cla: yes, framework)\n\n31018 [Material] selected/unselected label styles + icon themes on BottomNavigationBar (cla: yes, f: material design, framework)\n\n31025 added scrimColor property in Scaffold widget (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-3", "text": "31028 Adds support for generating projects that use AndroidX support libraries (cla: yes, tool, waiting for tree to go green)\n\n31039 Fix bundle id on iOS launch using flutter run (cla: yes, tool)\n\n31095 Add buttons customization to WidgetController and related testing classes (cla: yes, framework)\n\n31227 Adding CupertinoTabController (cla: yes, f: cupertino, framework, severe: API break)\n\n31308 Added font bold when isDefaultAction is true in CupertinoDialogAction (cla: yes, f: cupertino)\n\n31317 Add docs to AppBar (cla: yes, d: api docs, f: material design, framework)\n\n31318 Add BottomSheetTheme to enable theming color, elevation, shape of BottomSheet (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-4", "text": "31333 Clean up flutter_test/test/controller_test.dart (a: tests, cla: yes, framework)\n\n31438 Implements focus handling and hover for Material buttons. (cla: yes, f: material design, framework)\n\n31485 Prevent exception being thrown on hasScrolledBody (cla: yes, f: scrolling, framework)\n\n31514 Date picker layout exceptions (cla: yes, f: material design, framework)\n\n31574 Improve RadioListTile Callback Behavior Consistency (cla: yes, f: material design, framework, severe: API break)\n\n31581 Fix Exception on Nested TabBarView disposal (cla: yes, f: material design, framework, severe: crash)\n\n31631 Teach Linux to use local engine (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-5", "text": "31644 Cupertino localization step 12: push translation for all supported languages (a: internationalization, cla: yes, f: cupertino, f: material design, framework)\n\n31662 added shape property to SliverAppBar (cla: yes, f: material design, framework)\n\n31681 [Material] Create a themable Range Slider (continuous and discrete) (cla: yes, f: material design, framework)\n\n31699 Re-land: Add support for Tooltip hover (cla: yes, f: material design, framework)\n\n31701 Add more asserts to check matrix validity (cla: yes, framework)\n\n31763 Fix ScrollbarPainter thumbExtent calculation and add padding (cla: yes, d: api docs, f: cupertino, f: material design, f: scrolling, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-6", "text": "31798 Fix tab indentation (cla: yes, framework, tool, waiting for tree to go green)\n\n31822 remove unnecessary artificial delay in catalog example (cla: yes, d: examples, framework)\n\n31824 fix FlutterDriver timeout (cla: yes, framework, t: flutter driver)\n\n31825 Fix missing return statements on function literals (cla: yes, team, tool)\n\n31850 Make Gradle error message more specific (cla: yes, tool)\n\n31851 Add documentation to Navigator (cla: yes, framework)\n\n31852 Text selection handles are sometimes not interactive (cla: yes, f: cupertino, f: material design, framework)\n\n31861 Add Horizontal Padding to Constrained Chip Label Calculations (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-7", "text": "31873 Add basic desktop linux checks (cla: yes, tool)\n\n31885 Fix commit message UTF issue for deploy_gallery shard too (cla: yes, team)\n\n31889 Start abstracting platform logic builds behind a shared interface (cla: yes, tool)\n\n31890 apply fp hack to Flex (cla: yes, framework)\n\n31894 Introduce separate HitTestResults for Box and Sliver (cla: yes, framework)\n\n31895 Report CompileTime metric in flutter build aot \u2013report-timings. (cla: yes, tool)\n\n31902 Updated primaryColor docs to refer to colorScheme properties (cla: yes, d: api docs, f: material design, framework)\n\n31903 Extract TODO comment from Image.asset dardoc (cla: yes, d: api docs, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-8", "text": "31909 Change unfocus to unfocus the entire chain, not just the primary focus (cla: yes, framework)\n\n31910 [fuchsia] Add support for the \u2018device\u2019 command using the SDK (cla: yes)\n\n31912 Revert \u201cRedo: Add buttons to gestures\u201d (cla: yes)\n\n31923 Reland #31623 - fix edge swiping and dropping back at starting point (cla: yes)\n\n31925 Add commands to swap dart imports for local development (cla: yes)\n\n31926 Avoid NPE (cla: yes)\n\n31929 Sample Code & Animation for Flow Widget (cla: yes, d: api docs, d: examples, framework)\n\n31935 Redo#2: Add buttons to gestures (a: desktop, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-9", "text": "31936 make windows/mac consistent with linux (cla: yes)\n\n31938 Update scrimDrawerColor with proper const format (cla: yes, f: material design, framework)\n\n31944 Performance issue template (cla: yes, team)\n\n31947 Simplify drawer scrimColor defaults, update tests (cla: yes)\n\n31954 Fix MediaQueryData.toString() to generate readable output (cla: yes)\n\n31960 Fix bug handling cyclic diagnostics. (cla: yes)\n\n31967 cherry-pick: fix edge swiping and dropping back at starting point (#31623) (cla: yes)\n\n31978 Reland fix 25807 implement move for sliver multibox widget (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-10", "text": "31979 Revert \u201cTight Paragraph Width\u201d (cla: yes)\n\n31987 Text wrap width (a: typography, cla: yes, framework)\n\n31998 [flutter_tool] Pull the right Fuchsia SDK for the platform (cla: yes)\n\n32003 Revert \u201cStart abstracting platform logic builds behind a shared interface\u201d (cla: yes)\n\n32013 Cupertino Turkish Translation (a: internationalization, cla: yes, f: cupertino, framework)\n\n32025 Make Hover Listener respect transforms (cla: yes, framework, waiting for tree to go green)\n\n32041 Remove deprecated decodedCacheRatioCap (cla: yes, framework)\n\n32043 Rollback caret change for Android (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-11", "text": "32043 Rollback caret change for Android (cla: yes)\n\n32050 Test Material buttons against a11y contrast guidelines (cla: yes)\n\n32053 Increase TimePicker touch targets (cla: yes, f: material design, framework)\n\n32059 fix issue 14014 read only text field (a: text input, cla: yes, framework, severe: API break)\n\n32060 make hotfix use a plus instead of minus (cla: yes, tool)\n\n32066 update packages and unpin build (cla: yes)\n\n32070 rename foreground and background to light and dark (a: tests, cla: yes, framework)\n\n32071 [flutter_tool] In \u2018attach\u2019 use platform dill etc from the Fuchsia SDK (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-12", "text": "32072 don\u2019t NPE with empty pubspec (cla: yes, tool)\n\n32086 Fix CupertinoSliverRefreshControl onRefresh callback (cla: yes, f: cupertino, framework)\n\n32126 Bump multicast_dns version (cla: yes, tool)\n\n32135 Revert \u201cSliver animated list\u201d (cla: yes)\n\n32142 Fix RenderPointerListener so that callbacks aren\u2019t called at the wrong time. (cla: yes, framework)\n\n32147 Added state management docs/sample to SwitchListTile (cla: yes, d: api docs, f: material design, framework)\n\n32155 Revert \u201cadded shape property to SliverAppBar\u201d (cla: yes)\n\n32177 Tab Animation Sample Video (cla: yes, d: api docs, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-13", "text": "32192 Transform PointerEvents to the local coordinate system of the event receiver (cla: yes, framework)\n\n32256 fix issue 32212 Text field keyboard selection crashes (cla: yes)\n\n32266 Add reference to Runner-Bridging-Header.h to iOS profile config (cla: yes, t: xcode, waiting for tree to go green)\n\n32302 Add geometry getters to Flutter Driver (cla: yes)\n\n32328 Add breadcrumbs to TextOverflow (cla: yes, framework, waiting for tree to go green)\n\n32335 Teach flutter msbuild for Windows (cla: yes, tool)\n\n32340 make immutables const (cla: yes, framework)\n\n32345 Add master channel to performance issue template (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-14", "text": "32350 Fix nested listeners so that ancestor listeners can also receive enter/exit/move events. (cla: yes)\n\n32360 Allow flutter web to be compiled with flutter (cla: yes, framework, tool)\n\n32380 const everything in Driver (cla: yes, framework, t: flutter driver, waiting for tree to go green)\n\n32404 Comment out .vscode/ in gitignore for templates (cla: yes, tool)\n\n32406 Fix assignment in macos_build_flutter_assets.sh (cla: yes)\n\n32408 More const conversions (cla: yes, framework)\n\n32410 Add ancestor and descendant finders to Driver (cla: yes, framework, waiting for tree to go green)\n\n32425 Fix benchmark regression in layer.find(Offset) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-15", "text": "32434 Support for replacing the TabController, after disposing the old one (cla: yes, f: material design, framework)\n\n32437 Add assert that the root widget has been attached. (a: tests, cla: yes, framework)\n\n32444 Updated some links (cla: yes, framework, tool)\n\n32469 Let CupertinoNavigationBarBackButton take a custom onPressed (cla: yes, f: cupertino, framework)\n\n32470 Revert \u201cCupertino localization step 12: push translation for all supported languages\u201d (cla: yes)\n\n32487 Add a more meaningful message to the assertion on children (cla: yes, framework)\n\n32496 Revert \u201cAdd more asserts to check matrix validity\u201d (cla: yes)\n\n32499 Use precisionErrorTolerance (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-16", "text": "32499 Use precisionErrorTolerance (cla: yes)\n\n32503 Add more missing returns (cla: yes, team, tool)\n\n32511 Rendering errors with root causes in the widget layer should have a reference to the widget (cla: yes, customer: countless, customer: headline, framework)\n\n32513 Cupertino localization step 12 try 2: push translation for all supported languages (a: internationalization, cla: yes, f: cupertino)\n\n32515 Remove appbundle build steps that are required for APKs but not AABs (cla: yes)\n\n32519 [flutter_tool] Build a Fuchsia package (cla: yes)\n\n32520 Fixing accidental merge from working branch (cla: yes)\n\n32521 Reland matrix check (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-17", "text": "32521 Reland matrix check (cla: yes)\n\n32527 Added \u2018enabled\u2019 property to the PopupMenuButton (cla: yes, f: material design, framework)\n\n32528 Tapping a modal bottom sheet should not dismiss it by default (cla: yes, f: material design, framework)\n\n32530 Add Actions to AppBar Sample Doc (cla: yes, d: api docs, f: material design, framework)\n\n32535 Fix transforms for things with RenderPointerListeners (cla: yes)\n\n32538 Adjust macOS build flow (cla: yes)\n\n32620 Added ScrollController to TextField (cla: yes, f: cupertino, f: material design, f: scrolling, framework)\n\n32638 Fix apidocs in _WidgetsAppState.basicLocaleListResolution (cla: yes, d: api docs, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-18", "text": "32641 Updating dart.dev related links (cla: yes, d: api docs, framework)\n\n32654 Tabs code/doc cleanup (cla: yes, f: material design, framework)\n\n32656 Add diagnostics around needsCompositing (cla: yes)\n\n32686 enable lint prefer_null_aware_operators (cla: yes, framework)\n\n32702 Revert \u201cShow/hide toolbar and handles based on device kind\u201d (cla: yes)\n\n32703 Add Doc Samples For CheckboxListTile, RadioListTile and SwitchListTile (cla: yes, d: api docs, f: material design, framework)\n\n32704 Redo: Show/hide toolbar and handles based on device kind (cla: yes)\n\n32706 Change the way macOS app names are located (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-19", "text": "32710 Ignore some JSON RPC errors (cla: yes)\n\n32711 use null aware operators (cla: yes, framework)\n\n32717 Fix RenderPointerListener needsCompositing propagation from child widgets. (cla: yes)\n\n32724 Correct platform reference in UiKitViewController (cla: yes)\n\n32726 Material should not prevent ScrollNotifications from bubbling upwards (cla: yes, f: material design, f: scrolling, framework)\n\n32727 [Material] Remove inherit: false on default TextStyles in BottomNavigationBar (cla: yes)\n\n32730 Add reverseDuration to AnimationController (a: animation, cla: yes, framework)\n\n32773 Add a FocusNode for AndroidView widgets. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-20", "text": "32776 Text field focus and hover support. (cla: yes, f: material design, framework)\n\n32783 Streamline Windows build process (cla: yes)\n\n32787 Support 32 and 64 bit (cla: yes, dependency: dart, t: gradle, tool)\n\n32816 Add initial implementation of flutter assemble (cla: yes, tool)\n\n32817 Skip flaky date picker tests on Windows (cla: yes)\n\n32823 Add enableInteractiveSelection to CupertinoTextField (a: text input, cla: yes, f: cupertino, framework)\n\n32825 Remove debug logging in _handleSingleLongTapEnd (cla: yes)\n\n32826 Fix Focus.of to not find FocusScope nodes. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-21", "text": "32832 Visual selection is not adjusted when changing text selection with Ta\u2026 (cla: yes)\n\n32833 reduce retry attempts for flutter create \u2013list-samples (cla: yes)\n\n32834 Prepare for API addition to HttpClientResponse (cla: yes)\n\n32838 Handles hidden by keyboard (a: text input, cla: yes, f: material design, framework)\n\n32842 Allow \u201cfrom\u201d hero state to survive hero animation in a push transition (a: animation, cla: yes, f: scrolling, framework, severe: API break)\n\n32843 Added a missing dispose of an AnimationController that was leaking a ticker. (cla: yes, f: date/time picker, f: material design, framework)\n\n32849 [flutter_tool] Adds support for \u2018run\u2019 for Fuchsia devices (cla: yes, tool, \u25cb platform-fuchsia)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-22", "text": "32853 Add onBytesReceived callback to consolidateHttpClientResponseBytes() (a: images, cla: yes, framework)\n\n32857 Add debugNetworkImageHttpClientProvider (a: images, cla: yes, framework)\n\n32904 Use reverseDuration on Tooltip and InkWell (cla: yes, f: material design, framework)\n\n32909 Documentation fix for debugProfileBuildsEnabled (cla: yes, d: api docs, framework)\n\n32911 Material Long Press Text Handle Flash (cla: yes, f: material design, framework)\n\n32914 Make hover and focus not respond when buttons and fields are disabled. (cla: yes, f: material design, framework)\n\n32936 Add some sanity to the ImageStream listener API (a: images, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-23", "text": "32950 Material allows \u201cselect all\u201d when not collapsed (cla: yes, f: material design, \u25a3 platform-android)\n\n32974 Fix disabled CupertinoTextField style (a: text input, cla: yes, f: cupertino, framework)\n\n32982 Add widget of the week videos (cla: yes)\n\n33026 fix bad lint commented out (cla: yes)\n\n33041 Rename flutter packages to flutter pub (cla: yes, tool)\n\n33058 Add more missing returns (cla: yes, framework)\n\n33062 Turn off container focus highlight for filled text fields. (cla: yes)\n\n33068 Revert \u201cAdd assert that the root widget has been attached.\u201d (cla: yes)\n\n33073 SliverAppBar shape property (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-24", "text": "33078 don\u2019t send crash reports if on a user branch (cla: yes, tool)\n\n33080 Fixed several issues with confirmDismiss handling on the LeaveBehindItem demo. (cla: yes, f: material design, framework)\n\n33083 Update enabled color for outlined text fields. (cla: yes)\n\n33084 Re-apply \u201cAdd assert that the root widget has been attached\u201d (cla: yes)\n\n33090 [Material] Add support for hovered, pressed, and focused text color on Buttons. (cla: yes, f: material design, framework)\n\n33092 Add support for ImageStreamListener.onChunk() (cla: yes)\n\n33135 A minor bug fix and comment cleanups for focus (cla: yes)\n\n33140 flutter/tests support (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-25", "text": "33140 flutter/tests support (cla: yes, team)\n\n33146 [flutter_tool] Don\u2019t look for Fuchsia artifacts on Windows (cla: yes, tool)\n\n33148 ExpandIcon Custom Colors (cla: yes, f: material design, framework, severe: API break, severe: new feature)\n\n33152 ModalRoute resumes previous focus on didPopNext (cla: yes, framework, waiting for tree to go green)\n\n33157 Engine roll 75963dbb0ba6..135a140591f3 (cla: yes)\n\n33163 Clean up some flutter_tools tests and roll dependencies (cla: yes)\n\n33164 remove Layer.replaceWith due to no usage and no tests (cla: yes, framework, severe: API break)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-26", "text": "33191 Remove colon from Gradle task name since it\u2019s deprecated (cla: yes, t: gradle, tool, \u25a3 platform-android)\n\n33195 Slight clarification in the ImageCache docs (cla: yes, framework)\n\n33197 Wire up hot restart and incremental rebuilds for web (cla: yes, tool, \u2638 platform-web)\n\n33198 Build macOS via workspace, rather than project (cla: yes)\n\n33206 Revert \u201cClean up some flutter_tools tests and roll dependencies\u201d (cla: yes)\n\n33217 Fix ImageStreamListener\u2019s hashCode & operator== (cla: yes)\n\n33224 manual engine roll (cla: yes)\n\n33225 Reland \u201cClean up some flutter_tools tests and roll dependencies\u201d (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-27", "text": "33226 Explain hairline rendering in BorderSide.width docs (cla: yes, d: api docs, framework)\n\n33228 Make Paths absolute in settings.gradle (cla: yes, t: gradle, tool)\n\n33230 Framework support for font features in text styles (cla: yes, framework)\n\n33232 use the \u2013disable-server-feature-completion cli arg to the analysis server (cla: yes)\n\n33248 [ci] use Windows Container 2019 (cla: yes)\n\n33260 Pass an async callback to testWidgets. (cla: yes, framework)\n\n33263 [flutter_tool] Improve Fuchsia \u2018run\u2019 tests (cla: yes, tool)\n\n33264 Add local overrides to testbed and provide more defaults (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-28", "text": "33267 Add unpublish_package script. (cla: yes, team)\n\n33268 Add cast to prepare for package:file update (cla: yes)\n\n33269 Mark non-flaky test as such (cla: yes)\n\n33271 No longer necessary with ddc fix (cla: yes, tool)\n\n33272 Add mustRunAfter on mergeAssets task to force task ordering (cla: yes, engine, t: gradle, tool, waiting for tree to go green)\n\n33277 Implement macOS support in flutter doctor (cla: yes, tool)\n\n33279 Fix a problem in first focus determination. (cla: yes, framework)\n\n33281 Update TextStyle and StrutStyle height docs (a: typography, cla: yes, d: api docs, framework, severe: API break)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-29", "text": "33282 [flutter_tool] Use product runner in Fuchsia release build (cla: yes, tool)\n\n33283 Fix relative paths and snapshot logic in tool (cla: yes, tool)\n\n33284 make sure we build test targets too (cla: yes, tool)\n\n33285 disable flaky devfs test (cla: yes)\n\n33287 Add macosPrefix to the pubspec schema for plugins (cla: yes)\n\n33295 Add stateful_widget_animation snippet template (cla: yes)\n\n33297 Instrument add to app flows (a: existing-apps, cla: yes, tool)\n\n33298 Add actions and keyboard shortcut map support (a: desktop, cla: yes, framework)\n\n33322 Correct typos (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-30", "text": "33322 Correct typos (cla: yes)\n\n33323 Americanise spellings (cla: yes)\n\n33349 Compatibility pass on flutter/foundation tests for JavaScript compilation. (1) (a: tests, cla: yes, \u2638 platform-web)\n\n33350 Compatibility pass on flutter/scheduler tests for JavaScript compilation. (2) (a: tests, cla: yes, \u2638 platform-web)\n\n33352 Compatibility pass on flutter/painting tests for JavaScript compilation. (3) (a: tests, cla: yes, \u2638 platform-web)\n\n33354 Compatibility pass on flutter/services tests for JavaScript compilation. (4) (a: tests, cla: yes, \u2638 platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-31", "text": "33355 Compatibility pass on flutter/rendering tests for JavaScript compilation. (5) (a: tests, cla: yes, \u2638 platform-web)\n\n33359 Compatibility pass on flutter/physics tests for JavaScript compilation. (6) (a: tests, cla: yes, \u2638 platform-web)\n\n33360 Compatibility pass on flutter/semantics tests for JavaScript compilation. (7) (a: tests, cla: yes, \u2638 platform-web)\n\n33361 (trivial) Rename test file (a: tests, cla: yes, f: material design, framework)\n\n33363 Add clarification in Animation\u2019s listener API docs (cla: yes)\n\n33369 Add loading support to Image (cla: yes, framework)\n\n33370 Update FadeInImage to use new Image APIs (cla: yes, framework, severe: API break)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-32", "text": "33374 Devfs cleanup and testing (cla: yes, tool)\n\n33377 Compatibility pass on flutter/widgets tests for JavaScript compilation. (8) (a: tests, cla: yes, \u2638 platform-web)\n\n33378 Compatibility pass on flutter/material tests for JavaScript compilation. (9) (a: tests, cla: yes, \u2638 platform-web)\n\n33403 Add blank newline after Dartdoc bulleted list. (cla: yes)\n\n33406 Add web safe indirection to Platform.isPlatform getters (a: tests, cla: yes, framework)\n\n33431 Expose service client and app isolate in driver (cla: yes, framework, t: flutter driver)\n\n33442 fix GridView documentation (cla: yes, d: api docs, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-33", "text": "33443 Wrap Windows build invocation in a batch script (a: desktop, cla: yes, tool, \u2756 platform-windows)\n\n33444 Revert \u201cFramework support for font features in text styles\u201d (cla: yes)\n\n33448 Use vswhere to find Visual Studio (cla: yes, tool)\n\n33449 Revert \u201cInstrument add to app flows\u201d (cla: yes)\n\n33450 Do not return null from IosProject.isSwift (a: existing-apps, cla: yes, tool)\n\n33454 ensure unpack declares required artifacts (a: desktop, cla: yes, tool)\n\n33458 Add to app measurement (cla: yes, tool)\n\n33459 make sure version check includes hotfixes (a: tests, cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-34", "text": "33461 Various code cleanup improvements (cla: yes, framework, waiting for tree to go green)\n\n33462 Fix text scaling of strut style (cla: yes, framework)\n\n33463 Pin previous build_daemon (cla: yes)\n\n33466 [flutter_tool] Misc. fixes for Fuchsia (cla: yes, tool)\n\n33467 fixed 33347 fill the gap during performLayout in SliverGrid and Slive\u2026 (cla: yes, framework)\n\n33468 Fix a missing_return analyzer error in a code example (cla: yes)\n\n33472 add daemon command to enumerate supported platforms (cla: yes, tool)\n\n33473 fix 23723 rounding error (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-35", "text": "33474 Fixed for DropdownButton crashing when a style was used that didn\u2019t include a fontSize (cla: yes, f: material design, framework)\n\n33475 Move declaration of semantic handlers from detectors to recognizers (cla: yes, framework)\n\n33477 Fix onExit calling when the mouse is removed. (cla: yes, framework)\n\n33488 use toFixedAsString and DoubleProperty in diagnosticProperties (cla: yes, framework)\n\n33489 Remove empty file (cla: yes, framework)\n\n33525 Add capability to flutter test \u2013platform=chrome (cla: yes, tool)\n\n33526 Update Fuchsia SDK (cla: yes, tool)\n\n33528 Build the solution on Windows (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-36", "text": "33528 Build the solution on Windows (cla: yes)\n\n33529 Revert \u201cWire up hot restart and incremental rebuilds for web\u201d (cla: yes)\n\n33531 Fixed broken link in debugProfileBuildsEnabled documentation (cla: yes, framework)\n\n33533 Reland - Wire up hot restart and incremental rebuilds for web (cla: yes, tool)\n\n33535 Custom height parameters for DataTable header and data rows (cla: yes, f: material design, framework, severe: new feature)\n\n33539 Fix/update several HTML links (cla: yes, team)\n\n33540 Pass local engine variables to Windows build (cla: yes, tool)\n\n33549 Mark flutter_gallery__back_button_memory as flaky (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-37", "text": "33554 Remove obsolete TODOs (cla: yes, team)\n\n33595 Add DiagnosticableMixin (cla: yes)\n\n33596 Un-mark uncaught_image_error_linux as flaky (cla: yes)\n\n33602 Remove assert from Image._handleImageFrame() (cla: yes)\n\n33608 Restructure macOS project files (cla: yes, tool)\n\n33611 Use Dart\u2019s new direct ELF generator to package AOT blobs as shared libraries in Android APKs (cla: yes, tool)\n\n33620 Document that offsets are returned in logical pixels (cla: yes, d: api docs, framework)\n\n33624 CupertinoTabScaffold crash fix (cla: yes, f: cupertino)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-38", "text": "33627 SliverFillRemaining flag for different use cases (cla: yes, f: scrolling, framework)\n\n33628 DataTable Custom Horizontal Padding (cla: yes, f: material design, framework, severe: new feature)\n\n33629 Add real-er restart for web using webkit inspection protocol (cla: yes, tool, \u2638 platform-web)\n\n33632 Update the keycodes from source (cla: yes, framework)\n\n33634 Let there be scroll bars (a: fidelity, cla: yes, f: cupertino, f: material design, f: scrolling, framework, team: gallery)\n\n33636 Implement plugin tooling support for macOS (a: desktop, cla: yes, tool, \u2318\u202c platform-mac)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-39", "text": "33653 Include advice about dispose in TextEditingController api (cla: yes, d: api docs, f: cupertino, f: material design, framework)\n\n33662 Prep for engine roll (cla: yes, engine, framework)\n\n33663 Use conditional imports for flutter foundation libraries (cla: yes, framework)\n\n33665 [Trivial] Move dropdownValue into State in DropdownButton sample docs (cla: yes, d: api docs, f: material design, framework)\n\n33666 Change screenshot observatory port flag to a URI that can include the authentication code (cla: yes)\n\n33673 Revert \u201cDevfs cleanup and testing\u201d (cla: yes)\n\n33674 Add documentation to ImplicitlyAnimatedWidgetState (cla: yes, framework)\n\n33676 Removing old golden checkout for integration test (a: tests, cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-40", "text": "33677 Roll pub dependencies (cla: yes, team)\n\n33684 Disable CocoaPods input and output paths in Xcode build phase and adopt new Xcode build system (cla: yes, t: xcode, tool, \u233a\u202c platform-ios)\n\n33688 Part 1: Skia Gold Testing (a: tests, cla: yes, framework)\n\n33695 Add pseudo-key synonyms for keys like shift, meta, alt, and control. (a: desktop, cla: yes, framework)\n\n33696 Generate ELF shared libraries and allow multi-abi libs in APKs and App bundles (cla: yes, t: gradle, tool, \u25a3 platform-android)\n\n33697 Roll engine a32df2c92800..153416e554ef (2 commits) (#33680) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-41", "text": "33698 fix devicelab manfiest (cla: yes)\n\n33703 Revert \u201cAdd real-er restart for web using webkit inspection protocol \u2026 (cla: yes)\n\n33704 Default optional bool param to false (cla: yes)\n\n33729 Update consolidateHttpClientResponseBytes() to use compressionState (a: images, cla: yes, framework)\n\n33739 fixed cupertinoTextField placeholder textAlign (cla: yes, f: cupertino, framework)\n\n33772 Remove ios_add2app Pods directory and add to gitignore (cla: yes)\n\n33776 Revert \u201cAdd web safe indirection to Platform.isPlatform getters\u201d (cla: yes)\n\n33780 Add web safe indirection to Platform.isPlatform getters (2) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-42", "text": "33781 wire in fuchsiaApp (cla: yes)\n\n33782 [flutter_tool] Log an Android X related failure to analytics (cla: yes)\n\n33786 Add a real-er web restart, doctor, workflow (a: tests, cla: yes, t: flutter driver, team)\n\n33787 Add chrome stable to dockerfile and web shard (cla: yes, team)\n\n33790 Revert \u201cUpdate consolidateHttpClientResponseBytes() to use compressionState\u201d (cla: yes)\n\n33792 Remove references to HttpClientResponseCompressionState (cla: yes)\n\n33794 Text inline widgets, TextSpan rework (a: text input, a: typography, cla: yes, framework, severe: API break, severe: new feature)\n\n33800 Revert \u201cAdd capability to flutter test \u2013platform=chrome\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-43", "text": "33802 Double double tap toggles instead of error (a: text input, cla: yes, f: material design, framework)\n\n33805 Fixing duplicate golden test names (a: tests, cla: yes, framework)\n\n33808 fix ExpansionPanelList merge the header semantics when it is not nece\u2026 (a: accessibility, cla: yes, f: material design, framework)\n\n33814 Added a benchmark for ImageCache (a: images, cla: yes, framework)\n\n33815 Revert \u201cModalRoute resumes previous focus on didPopNext\u201d (cla: yes)\n\n33825 Revert \u201cUse conditional imports for flutter foundation libraries\u201d (cla: yes)\n\n33828 Reland https://github.com/flutter/flutter/pull/33663 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-44", "text": "33842 Don\u2019t print warning message when running benchmarks test. (a: tests, cla: yes, framework)\n\n33846 [flutter_tool] Fix \u2018q\u2019 for Fuchsia profile/debug mode (cla: yes, tool)\n\n33851 Revert \u201cMove declaration of semantic handlers from detectors to recognizers\u201d (cla: yes)\n\n33852 Disable CocoaPods input and output paths in Xcode build phase and adopt new Xcode build system (cla: yes, tool)\n\n33859 Reland support flutter test on platform chrome (cla: yes, tool)\n\n33861 Unmark flutter_gallery__back_button_memory as flaky (cla: yes, team)\n\n33865 Correct version name for BottomNavigationBar golden test (a: tests, cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-45", "text": "33867 Remove environment variable guards for command line desktop and web (cla: yes, tool)\n\n33868 Game controller button support (a: desktop, cla: yes, framework)\n\n33872 Add \u2018doctor\u2019 support for Windows (cla: yes, tool)\n\n33874 Prevent windows web doctor from launching chrome (cla: yes, tool)\n\n33876 Reland \u201cFramework support for font features in text styles\u201d (cla: yes, framework)\n\n33880 Splitting golden file versioning out as an argument of matchesGoldenFile (a: tests, cla: yes, framework, waiting for tree to go green)\n\n33882 Revert \u201cDisable CocoaPods input and output paths in Xcode build phase and adopt new Xcode build system\u201d (cla: yes)\n\n33883 Updated localizations (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-46", "text": "33883 Updated localizations (cla: yes)\n\n33886 Add currentSystemFrameTimeStamp to SchedulerBinding (cla: yes, framework)\n\n33892 add benchmarks to track web size (cla: yes, tool)\n\n33901 Respond to AndroidView focus events. (cla: yes, framework)\n\n33917 \u2018the the\u2019 doc fix (cla: yes, d: api docs, framework)\n\n33923 [flutter_tool] Track APK sha calculation time (cla: yes, tool)\n\n33924 Added \u2013dart-flags option to flutter run (cla: yes, tool)\n\n33928 Revert \u201cText inline widgets, TextSpan rework\u201d (cla: yes)\n\n33932 More removing of timeouts. (a: tests, cla: yes, team, team: flakes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-47", "text": "33936 New parameter for RawGestureDetector to customize semantics mapping (cla: yes, f: gestures, framework)\n\n33946 Reland \u201cText inline widgets, TextSpan rework\u201d (a: text input, a: typography, cla: yes, framework, severe: API break, severe: new feature)\n\n33949 Fix a bug in Shortcuts with synonyms, and add tests. (cla: yes)\n\n33951 Whitelist adb.exe heap corruption exit code. (cla: yes, tool)\n\n33955 Add localFocalPoint to ScaleDetector (cla: yes, framework, waiting for tree to go green)\n\n33956 Codegen an entrypoint for flutter web applications (cla: yes, tool, \u2638 platform-web)\n\n33980 Increase daemon protocol version for getSupportedPlatforms (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-48", "text": "33982 Revert engine back to afb9d510c3bb0f1b97980434b41200a2d3491697 (cla: yes)\n\n33987 Add use_frameworks to macOS Podfile template (cla: yes)\n\n33989 Manually roll the engine to land the timing API (cla: yes)\n\n33990 Add device category for daemon (cla: yes, tool)\n\n33996 Remove unused/dead code from WidgetInspector (cla: yes, framework)\n\n33997 Make plugins Swift-first on macOS (cla: yes)\n\n33999 Updating MediaQuery with viewPadding (cla: yes, framework)\n\n34002 Revert \u201cText inline widgets, TextSpan rework (#33946)\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-49", "text": "34004 Remove print (cla: yes)\n\n34006 Re-add deprecated method for plugin migration compatibility. (cla: yes)\n\n34012 Extract DiagnosticsNode serializer from WidgetInspector (a: tests, cla: yes, customer: espresso, framework)\n\n34017 Skip web test on crazy import (a: tests, cla: yes)\n\n34018 Add flutter create for the web (cla: yes, tool, \u2638 platform-web)\n\n34022 Revert \u201cRe-add deprecated method for plugin migration compatibility.\u201d (cla: yes)\n\n34032 Enable web foundation tests (a: tests, cla: yes, team)\n\n34049 [flutter_tool] Send build timing to analytics (cla: yes)\n\n34050 limit open files on macOS when copying assets (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-50", "text": "34051 Reland \u201cText inline widgets, TextSpan rework (#30069)\u201d with improved backwards compatibility (a: text input, a: typography, cla: yes, severe: API break, severe: new feature)\n\n34054 Make it easier to pass local engine flags when running devicelab tests (a: tests, cla: yes, team)\n\n34055 Toggle toolbar exception fix (a: text input, cla: yes, f: material design)\n\n34056 fix devicelab test for chrome reload worklow (cla: yes)\n\n34057 Add endIndent property to Divider and VerticalDivider (cla: yes, f: material design, framework)\n\n34061 Revert \u201cPrevent exception being thrown on hasScrolledBody\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-51", "text": "34062 Roll engine to 086b5a48d6acdb64dd7b2a4cbf9dd620c54812b9 (cla: yes)\n\n34063 Fix web size test for new world (cla: yes)\n\n34066 Adds the androidX flag to a modules pubspec.yaml template so it is se\u2026 (cla: yes, tool)\n\n34068 fix empty selection arrow when double clicked on empty read only text\u2026 (a: text input, cla: yes, framework)\n\n34073 Dartdoc Generation README Improvements (cla: yes, d: api docs, framework)\n\n34074 add analytics fields for attached device os version & run mode (cla: yes, tool)\n\n34079 don\u2019t warn on CHROME_EXECUTABLE missing if we\u2019ve already located it. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-52", "text": "34081 Report async callback errors that currently go unreported. (cla: yes, tool)\n\n34084 make running on web spooky (cla: yes, tool)\n\n34085 Revert \u201cRoll engine to 086b5a48d6acdb64dd7b2a4cbf9dd620c54812b9\u201d (cla: yes)\n\n34086 Add recognizer compatibility API (cla: yes)\n\n34088 Revert \u201cRoll engine 0602dbb27547..06dbe28e33e5 (13 commits)\u201d (cla: yes)\n\n34090 More verification on flutter build web, add tests and cleanup (cla: yes, tool)\n\n34092 Revert \u201cAdded \u2013dart-flags option to flutter run\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-53", "text": "34094 Roll engine 0602dbb27547..ddd36e8338ab (17 commits) (cla: yes)\n\n34095 Cupertino text edit tooltip, reworked (a: text input, cla: yes, f: cupertino, severe: API break)\n\n34099 Roll engine to e8ee6acf8de3613fdd9f431fff5c4c37b65c3335 (cla: yes)\n\n34112 Separate web and io implementations of network image (cla: yes, framework, team, tool, \u2638 platform-web)\n\n34114 roll engine to c5b55e9a6783ca811dd7b401332e9db8d4d54076 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-54", "text": "34121 Revert \u201cGenerate ELF shared libraries and allow multi-abi libs in APKs and App bundles\u201d (cla: yes)\n\n34123 Generate ELF shared libraries and allow multi-abi libs in APKs and App bundles (cla: yes, t: gradle, tool)\n\n34137 Added tool sample for PageController (cla: yes, d: api docs, framework)\n\n34159 Use product define for flutter web and remove extra asset server (cla: yes, tool, \u2638 platform-web)\n\n34162 Update the Fuchsia SDK (cla: yes, tool, \u25cb platform-fuchsia)\n\n34163 update CupertinoDialogAction docs (cla: yes, d: api docs, f: cupertino)\n\n34166 Revert \u201cMore verification on flutter build web, add tests and cleanup\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-55", "text": "34167 Disable CocoaPods input and output paths in Xcode build phase and adopt new Xcode build system (cla: yes)\n\n34173 Reland: More verification on flutter build web, add tests and cleanup (cla: yes)\n\n34175 Don\u2019t show scrollbar if there isn\u2019t enough content (cla: yes, f: scrolling, framework)\n\n34178 [Material] Fix slider track shape to rounded (cla: yes)\n\n34179 Consider all non-interactive terminals to be bots (cla: yes)\n\n34181 Reland \u201cAdded \u2013dart-flags option to flutter run (#33924)\u201d (cla: yes, tool)\n\n34189 Instrument usage of include_flutter.groovy and xcode_backend.sh (a: existing-apps, cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-56", "text": "34199 make sure this test doesn\u2019t run for real (a: tests, cla: yes, team, team: flakes)\n\n34202 Remove _debugWillReattachChildren assertions from _TableElement (cla: yes, customer: payouts, framework)\n\n34243 update the Flutter.Frame event to use new engine APIs (cla: yes, framework)\n\n34250 Strip debug symbols from ELF library snapshots (cla: yes)\n\n34255 [flutter_tool] Don\u2019t truncate verbose logs from _flutter.listViews (cla: yes, tool)\n\n34276 [flutter_tool,fuchsia] Prefetch tiles when starting an app (cla: yes, engine, tool, \u25cb platform-fuchsia)\n\n34282 Split gradle_plugin_test.dart (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-57", "text": "34285 fix Applying decoration for a table row widget will cause render exce\u2026 (cla: yes, framework)\n\n34288 Report commands that resulted in success or failure (cla: yes, tool)\n\n34291 Check whether FLUTTER_ROOT and FLUTTER_ROOT/bin are writable. (cla: yes, tool)\n\n34293 Change Xcode developmentRegion to \u2018en\u2019 and CFBundleDevelopmentRegion to DEVELOPMENT_LANGUAGE (cla: yes, t: xcode, tool)\n\n34295 Prepare for Uint8List SDK breaking changes (cla: yes, dependency: dart, tool)\n\n34298 Preserving SafeArea : Part 2 (cla: yes, customer: solaris, framework, severe: customer critical, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-58", "text": "34301 Make it possible to override the FLUTTER_TEST env variable (a: tests, cla: yes, customer: mulligan (g3), team, tool)\n\n34341 Re-apply compressionState changes. (cla: yes)\n\n34352 Revert \u201cupdate the Flutter.Frame event to use new engine APIs\u201d (cla: yes)\n\n34353 Refactor Gradle plugin (cla: yes, t: gradle, tool)\n\n34355 Text field vertical align (cla: yes, f: material design, framework)\n\n34356 Add widget of the week videos (cla: yes, d: api docs)\n\n34365 redux of a change to use new engine APIs for Flutter.Frame events (cla: yes, framework)\n\n34368 Fix semantics_tester (a: accessibility, a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-59", "text": "34369 Remove unused flag --target-platform from flutter run (cla: yes, tool)\n\n34374 Update flakiness of tests (cla: yes)\n\n34376 Add missing pieces for \u2018driver\u2019 support on macOS (cla: yes, tool)\n\n34388 Change API doc link to api.dart.dev (cla: yes, d: api docs, framework)\n\n34417 Include raw value in Diagnostics json for basic types (a: tests, cla: yes, framework)\n\n34419 Disable flaky tests (cla: yes)\n\n34424 SizedBox documentation minor update (cla: yes, d: api docs, framework)\n\n34430 skip bottom_sheet (cla: yes)\n\n34434 Semantics fixes (a: accessibility, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-60", "text": "34436 Allow web tests to fail (cla: yes)\n\n34440 Add Driver command to get diagnostics tree (a: tests, cla: yes, customer: espresso, framework, waiting for tree to go green)\n\n34447 [flutter_tool,fuchsia] Update the install flow for packaging migration. (cla: yes, tool)\n\n34456 Allow flaky tests to pass or fail and mark web tests as flaky (cla: yes)\n\n34457 Dont depend on web sdk unless running tests on chrome (cla: yes)\n\n34460 Add back ability to override the local engine in Gradle (cla: yes, engine, severe: crash, t: gradle, tool)\n\n34464 Skip flaky test on Windows (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-61", "text": "34464 Skip flaky test on Windows (cla: yes)\n\n34474 Release diagnostics (a: size, cla: yes, customer: google, framework, waiting for tree to go green)\n\n34501 [Material] Fix TextDirection and selected thumb for RangeSliderThumbShape and RangeSliderValueIndicatorShape (cla: yes, f: material design, framework, severe: API break)\n\n34508 add route information to Flutter.Navigation events (cla: yes, framework)\n\n34512 Make sure fab semantics end up on top (cla: yes, framework)\n\n34514 Revert \u201credux of a change to use new engine APIs for Flutter.Frame events\u201d (cla: yes)\n\n34515 OutlineInputBorder adjusts for borderRadius that is too large (a: text input, cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-62", "text": "34516 [flutter_tool] Fill in Fuchsia version string (cla: yes, tool)\n\n34517 pass .packages path to snapshot invocation (cla: yes, tool)\n\n34519 fix page scroll position rounding error (cla: yes, framework, severe: customer critical)\n\n34521 redux of a change to use new engine APIs for Flutter.Frame events (cla: yes)\n\n34526 retry on HttpException during cache download (cla: yes, tool)\n\n34527 Don\u2019t crash on invalid .packages file (cla: yes, tool)\n\n34529 Remove compilation trace and dynamic support code (cla: yes, tool)\n\n34530 Reland \u201credux of a change to use new engine APIs for Flutter.Frame events\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-63", "text": "34535 Handles parsing APK manifests with additional namespaces or attributes (cla: yes)\n\n34555 Added customizable padding for the segmented controll (cla: yes)\n\n34573 Ensures flutter jar is added to all build types on plugin projects (cla: yes, t: gradle, tool, waiting for tree to go green)\n\n34584 fix a typo (cla: yes, tool)\n\n34587 Do not copy paths, rects, and rrects when layer offset is zero (cla: yes, framework)\n\n34589 Remove most of the target logic for build web, cleanup rules (cla: yes, tool)\n\n34592 Config lib dependencies for flavors (cla: yes, t: gradle, waiting for tree to go green)\n\n34597 [Material] Update slider gallery demo, including range slider (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-64", "text": "34600 Remove @protected annotation on ImageProvider.obtainKey (cla: yes)\n\n34606 Remove portions of the Gradle script related to dynamic patching (cla: yes, tool, waiting for tree to go green)\n\n34616 Kill compiler process when test does not exit cleanly (a: tests, cla: yes, tool)\n\n34618 Temporarily allow failures on the docs shard (cla: yes)\n\n34624 Break down flutter doctor validations and results (cla: yes, t: flutter doctor, tool)\n\n34654 Disable the docs shard to get the build green (cla: yes)\n\n34655 Revert \u201cConfig lib dependencies for flavors\u201d (cla: yes, waiting for tree to go green)\n\n34660 Add \u2013target support for Windows and Linux (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-65", "text": "34664 Adjust defaults in docs to match new defaults in code. (cla: yes, framework)\n\n34665 Selection handles position is off (a: text input, cla: yes, framework, severe: API break)\n\n34668 Re-land config lib dependencies for flavors (cla: yes, t: gradle)\n\n34669 Bundle ios dependencies (cla: yes, tool)\n\n34674 Revert \u201cRoll engine 20d3861ac8e1..05c034e5bb0a (10 commits)\u201d (cla: yes)\n\n34679 Fix-up code sample for TweenSequence (cla: yes, d: api docs, framework)\n\n34681 Re-enable docs with new container (cla: yes)\n\n34683 add read only semantics flag (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-66", "text": "34683 add read only semantics flag (cla: yes, framework)\n\n34684 Add more structure to errors. (cla: yes, framework)\n\n34685 Close platform when tests are complete (dispose compiler and delete font files) (a: tests, cla: yes, tool, waiting for tree to go green)\n\n34686 unpin build daemon and roll dependencies (cla: yes, tool)\n\n34712 Fix FocusTraversalPolicy makes focus lost (a: desktop, cla: yes, framework)\n\n34721 Add category/platformType to emulators (cla: yes)\n\n34723 CupertinoTextField vertical alignment (cla: yes, f: cupertino, framework)\n\n34725 Fix NPE in flutter tools (cla: yes, tool)\n\n34736 Remove flags related to dynamic patching (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-67", "text": "34738 Update Xcode projects to recommended Xcode 10 project settings (cla: yes, t: xcode, team, waiting for tree to go green)\n\n34739 Disable widgets and material web tests (cla: yes, team)\n\n34750 Revert \u201cCheck whether FLUTTER_ROOT and FLUTTER_ROOT/bin are writable.\u201d (cla: yes)\n\n34753 Revert \u201cAdd basic desktop linux checks\u201d (cla: yes)\n\n34754 Move hacky flag to common (cla: yes)\n\n34755 Add linux doctor implementation (cla: yes, t: flutter doctor, tool)\n\n34757 Backup docs to GCS (cla: yes)\n\n34758 Added some Widgets of the Week Videos to documentation (cla: yes, d: api docs, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-68", "text": "34761 Revert \u201cBackup docs to GCS\u201d (cla: yes)\n\n34785 Tweak the display name of emulators (cla: yes, tool)\n\n34794 Add emulatorID field to devices in daemon (cla: yes, tool)\n\n34802 Prefer ephemeral devices from command line run (cla: yes, tool)\n\n34812 Shard framework tests (cla: yes, team)\n\n34818 Make docs do less work/be less flaky (cla: yes, team)\n\n34823 Introduce image loading performance test. (a: tests, cla: yes, framework)\n\n34831 Fix source-links (cla: yes)\n\n34856 set device name to Chrome (cla: yes, tool)\n\n34857 More shards (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-69", "text": "34857 More shards (cla: yes, team)\n\n34859 Fix Vertical Alignment Regression (a: text input, cla: yes, f: material design, framework)\n\n34863 Prepare for HttpClientResponse Uint8List SDK change (a: tests, cla: yes, framework)\n\n34869 [Material] Properly call onChangeStart and onChangeEnd in Range Slider (cla: yes, f: material design, framework)\n\n34870 Add test case for Flutter Issue #27677 as a benchmark. (cla: yes, engine, framework, severe: performance)\n\n34872 [Material] Support for hovered, focused, and pressed border color on OutlineButtons (cla: yes, f: material design, framework)\n\n34877 More shards (a: tests, cla: yes, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-70", "text": "34884 Revert \u201cset device name to Chrome\u201d (cla: yes)\n\n34885 Reland: rename web device (cla: yes, tool)\n\n34895 Remove flutter_tools support for old AOT snapshotting (cla: yes)\n\n34896 Allow multi-root web builds (cla: yes, tool)\n\n34906 Fix unused [applicationIcon] property on [showLicensePage] (cla: yes, f: material design, framework)\n\n34907 Fixed LicensePage to close page before loaded the License causes an error (cla: yes, f: material design, framework, severe: crash)\n\n34919 Remove duplicate error parts (cla: yes, framework, waiting for tree to go green)\n\n34932 Added onChanged property to TextFormField (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-71", "text": "34964 CupertinoTextField.onTap (cla: yes, f: cupertino)\n\n35017 sync lint list (cla: yes)\n\n35046 Add generated Icon diagram to api docs (cla: yes, d: api docs, d: examples, framework)\n\n35055 enable lint avoid_bool_literals_in_conditional_expressions (cla: yes)\n\n35056 enable lint use_full_hex_values_for_flutter_colors (cla: yes)\n\n35059 prepare for lint update of prefer_final_fields (cla: yes)\n\n35063 add documentation for conic path not supported (a: platform-views, cla: yes, d: api docs, framework, plugin)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-72", "text": "35066 Manual engine roll, Update goldens, improved wavy text decoration 0f9e297ad..185087a65f (a: typography, cla: yes, engine)\n\n35074 Attempt to enable tool coverage redux (a: tests, cla: yes, tool)\n\n35075 Allow for customizing SnackBar\u2019s content TextStyle in its theme (cla: yes, f: material design, framework)\n\n35084 Move findTargetDevices to DeviceManager (cla: yes, tool)\n\n35092 Add FlutterProjectFactory so that it can be overridden internally. (cla: yes, tool)\n\n35110 Always test semantics (a: accessibility, a: tests, cla: yes, framework, severe: API break)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-73", "text": "35129 [Material] Wrap Flutter Gallery\u2019s Expansion Panel Slider in padded Container to make room for Value Indicator. (cla: yes, f: material design, framework, severe: regression)\n\n35130 pass new users for release_smoke_tests (a: tests, cla: yes, team)\n\n35132 Reduce allocations by reusing a matrix for transient transforms in _transformRect (cla: yes)\n\n35136 Update Dark Theme disabledColor to White38 (cla: yes, f: material design, framework, severe: API break)\n\n35143 More HttpClientResponse Uint8List fixes (cla: yes)\n\n35149 More HttpClientResponse implements Stream fixes (cla: yes)\n\n35150 Change didUpdateConfig to didUpdateWidget (cla: yes, d: api docs, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-74", "text": "35157 Remove skip clause on tools coverage (cla: yes, team)\n\n35160 Move usage flutter create tests into memory filesystem. (a: tests, cla: yes, tool)\n\n35164 Update reassemble doc (cla: yes, customer: product, d: api docs, framework, severe: customer critical)\n\n35186 Make tool coverage collection resilient to sentinel coverage data (cla: yes, tool)\n\n35188 ensure test isolate is paused before collecting coverage (cla: yes, tool)\n\n35189 enable lints prefer_spread_collections and prefer_inlined_adds (cla: yes)\n\n35192 don\u2019t block any presubmit on coverage (cla: yes, tool)\n\n35197 [flutter_tool] Update Fuchsia SDK (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-75", "text": "35206 Force-upgrade package deps (cla: yes)\n\n35207 refactor out selection handlers (a: text input, cla: yes, customer: amplify, customer: fuchsia, framework)\n\n35211 child param doc update in Ink and Ink.image (cla: yes, d: api docs, f: material design, framework)\n\n35219 Text selection menu show/hide cases (a: text input, cla: yes, f: material design, framework)\n\n35221 Twiggle bit to exclude dev and beta from desktop and web (cla: yes, tool)\n\n35223 Navigator pushAndRemoveUntil Fix (a: animation, cla: yes, customer: mulligan (g3), f: routes, framework, severe: crash, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-76", "text": "35225 add sample code for AnimatedContainer (a: animation, cla: yes, d: api docs, d: examples, framework)\n\n35231 Fix coverage collection (cla: yes, tool)\n\n35232 New benchmark: Gesture semantics (cla: yes, waiting for tree to go green)\n\n35233 Attempt skipping coverage shard if tools did not change (cla: yes)\n\n35237 Revert \u201cManual engine roll, Update goldens, improved wavy text decoration 0f9e297ad..185087a65f\u201d (cla: yes)\n\n35242 Reland \u201cManual engine roll, Update goldens, improved wavy text decoration 0f9e297ad..185087a65f\u201d\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-77", "text": "35245 More preparation for HttpClientResponse implements Uint8List (cla: yes)\n\n35246 attempt to not skip coverage on post commit (cla: yes)\n\n35263 remove unnecessary ..toList() (cla: yes)\n\n35276 Revert \u201c[Material] Support for hovered, focused, and pressed border color on OutlineButtons\u201d (cla: yes)\n\n35278 Re-land \u201c[Material] Support for hovered, focused, and pressed border color on OutlineButtons\u201d (cla: yes)\n\n35280 benchmarkWidgets.semanticsEnabled default false. (cla: yes)\n\n35282 Add Container fallback to Ink build method (cla: yes, f: material design, framework)\n\n35288 Apply coverage skip math correctly (cla: yes)\n\n35290 tests for about page (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-78", "text": "35290 tests for about page (cla: yes)\n\n35303 fix default artifacts to exclude ios and android (cla: yes, tool)\n\n35307 Clean up host_app_ephemeral Profile build settings (a: existing-apps, cla: yes, t: xcode, tool, \u233a\u202c platform-ios)\n\n35335 Using custom exception class for network loading error (a: images, cla: yes, framework)\n\n35367 Add type to StreamChannel in generated test code. (cla: yes, tool)\n\n35392 Add timer checking and Fake http client to testbed (cla: yes, tool)\n\n35393 more ui-as-code (cla: yes, team)\n\n35406 Refactor signal and command line handler from resident runner (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-79", "text": "35407 Manual engine roll (cla: yes, engine, team)\n\n35408 Remove print (cla: yes)\n\n35423 v1.7.8 hotfixes (cla: yes)\n\n35424 Introduce image_list performance benchmark that runs on jit(debug) build. (a: images, a: tests, cla: yes, framework)\n\n35464 Manual roll of engine 45b66b7\u2026ffba2f6 (cla: yes, team)\n\n35465 Mark update-packages as non-experimental (cla: yes, tool)\n\n35467 Mark update-packages as non-experimental (cla: yes, tool)\n\n35468 Add colorFilterLayer/Widget (a: accessibility, cla: yes, customer: octopod, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-80", "text": "35477 Update macrobenchmarks README and app name (a: tests, cla: yes, team)\n\n35480 Update the help message on precache command for less confusion (cla: yes, tool)\n\n35481 add APK build time benchmarks (cla: yes, tool)\n\n35482 Use the new service protocol message names (cla: yes)\n\n35487 Fix RenderFittedBox when child.size.isEmpty (a: accessibility, cla: yes, framework)\n\n35491 Include tags in SemanticsNode debug properties (cla: yes, framework)\n\n35492 Re-apply \u2018Add currentSystemFrameTimeStamp to SchedulerBinding\u2019 (cla: yes, framework)\n\n35493 Do not use ideographic baseline for RenderPargraph baseline (a: typography, cla: yes, engine, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-81", "text": "35495 mark windows and macos chrome dev mode as flaky (cla: yes, team)\n\n35496 [Material] Text scale and wide label fixes for Slider and Range Slider value indicator shape (cla: yes, f: material design)\n\n35499 Added MaterialApp.themeMode to control which theme is used. (cla: yes, f: material design, framework)\n\n35548 Various doc fixes (cla: yes, framework)\n\n35556 ios (iPhone6) and iPhone XS tiles_scroll_perf tests (cla: yes, severe: performance, team, \u233a\u202c platform-ios)\n\n35560 Support for elevation based dark theme overlay color in the Material widget (cla: yes, f: material design, framework)\n\n35573 update packages (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-82", "text": "35573 update packages (cla: yes, team)\n\n35574 Fix semantics for floating pinned sliver app bar (a: accessibility, cla: yes, f: scrolling, framework, waiting for tree to go green)\n\n35646 Prepare for Socket implements Stream (cla: yes)\n\n35657 Remove paused check for tooling tests (cla: yes, tool)\n\n35681 Disable incremental compiler in dartdevc (cla: yes, tool)\n\n35684 Fix typo in main.dart templates (cla: yes, d: api docs, framework)\n\n35708 disable a test case in xcode_backend.sh (cla: yes, tool)\n\n35709 Remove web, fuchsia, and unsupported devices from all (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-83", "text": "35725 Update annotated region findAll implementation to use Iterables directly. (cla: yes, framework)\n\n35731 Keep LLDB connection to iOS device alive while running from CLI. (cla: yes, tool)\n\n35743 Simple Doc Fixes (cla: yes, d: api docs, framework)\n\n35745 enable lint prefer_if_null_operators (cla: yes, team)\n\n35749 add iOS build benchmarks (cla: yes, team, tool)\n\n35756 Remove @objc inference build setting (cla: yes, t: xcode, tool)\n\n35762 Refactor keymapping for resident_runner (cla: yes)\n\n35763 UIApplicationLaunchOptionsKey -> UIApplication.LaunchOptionsKey (cla: yes, t: xcode, tool, \u233a\u202c platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-84", "text": "35765 Use public _registerService RPC in flutter_tools (cla: yes, tool)\n\n35767 set targets of zero percent for tools codecoverage (cla: yes, tool)\n\n35775 Add platform_interaction_test_swift to devicelab (a: tests, cla: yes, framework, p: framework, plugin, \u233a\u202c platform-ios)\n\n35777 Fixed logLevel filter bug so that filter now works as expected (cla: yes, team)\n\n35778 Build all example projects in CI build smoke test (a: tests, cla: yes, team)\n\n35780 Remove CoocaPods support from layers example app (a: tests, cla: yes, d: examples, team)\n\n35785 Remove reverseDuration from implicitly animated widgets, since it\u2019s ignored. (a: animation, cla: yes, framework, severe: API break)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-85", "text": "35792 disable web tests (cla: yes)\n\n35814 Roll engine e695a516f..75387dbc1 (8 commits) (cla: yes, team)\n\n35825 Fixed build of example code to use new binary messenger API. (cla: yes, team)\n\n35828 Cleanup widgets/sliver_persistent_header.dart with resolution of dart-lang/sdk#31543 (cla: yes, framework)\n\n35833 Disable CocoaPods input and output paths in Xcode build phase for ephemeral add-to-app project (a: existing-apps, cla: yes, tool, \u233a\u202c platform-ios)\n\n35839 use pub run for create test and remove [INFO] logs (cla: yes, tool)\n\n35846 move reload and restart handling into terminal (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-86", "text": "35878 Add flag to use root navigator for showModalBottomSheet (cla: yes, f: material design, framework)\n\n35892 Doc fixes (cla: yes, d: api docs, d: examples, framework)\n\n35906 Add anchors to samples (cla: yes, team)\n\n35913 Change focus example to be more canonical (and correct) (cla: yes, framework)\n\n35926 Add example showing how to move from one field to the next. (cla: yes, d: api docs, d: examples, framework)\n\n35932 Upgraded framework packages with \u2018flutter update-packages \u2013force-upgrade\u2019. (cla: yes, framework)\n\n35942 Use test instead of test_api package in platform_channel_swift example tests (a: tests, cla: yes, d: examples, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-87", "text": "35971 [ImgBot] Optimize images (cla: yes, team)\n\n35979 Optimizes gesture recognizer fixes #35658 (cla: yes, f: gestures, framework)\n\n35991 Enable widget load assets in its own package in test (a: tests, cla: yes, tool)\n\n35996 Revert \u201cKeep LLDB connection to iOS device alive while running from CLI.\u201d (cla: yes)\n\n35999 Deflake ImageProvider.evict test (a: images, a: tests, cla: yes, team: flakes)\n\n36006 fix linesplitter (cla: yes, team)\n\n36017 Move reporting files to reporting/ (cla: yes, tool)\n\n36026 add the transformPoint and transformRect benchmarks (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-88", "text": "36071 Revert \u201cBundle ios dependencies\u201d (cla: yes, team, tool)\n\n36082 Add better handling of JSON-RPC exception (cla: yes, tool)\n\n36084 handle google3 version of pb (cla: yes, tool)\n\n36089 Fix flaky peer connection (a: tests, cla: yes, framework)\n\n36090 don\u2019t require diffs to have a percentage coverage greater (cla: yes, team)\n\n36093 Reland bundle ios deps (cla: yes, team, tool)\n\n36094 Revert \u201cPart 1: Skia Gold Testing\u201d (cla: yes, f: cupertino, f: material design, framework, team)\n\n36096 Revert \u201cMerge branches \u2018master\u2019 and \u2018master\u2019 of github.com:flutter/fl\u2026 (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-89", "text": "36097 Fix nested scroll view can rebuild without layout (cla: yes, f: scrolling, framework, severe: crash)\n\n36098 Be clearer about errors in customer testing script (cla: yes, team)\n\n36102 Move buildable module test to a module test (cla: yes, team)\n\n36105 [flutter_tool] Catch a yaml parse failure during project creation (cla: yes, team, tool)\n\n36108 Move tools tests into a general.shard directory in preparation to changing how we shard tools tests (cla: yes, tool)\n\n36122 Make sure add-to-app build bundle from outer xcodebuild/gradlew sends analytics (cla: yes, team, tool)\n\n36123 Attempt to re-enable integration_tests-macos (a: tests, cla: yes, team, team: flakes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-90", "text": "36135 add a kIsWeb constant to foundation (cla: yes, framework)\n\n36138 Implement feature flag system for flutter tools (cla: yes, tool)\n\n36174 [cupertino_icons] Add glyph refs for brightness #16102 (cla: yes, f: cupertino, framework)\n\n36194 Keep LLDB connection to iOS device alive while running from CLI. (cla: yes, tool)\n\n36197 Fix windows, exclude widgets from others (cla: yes, team)\n\n36199 Don\u2019t try to flutterExit if isolate is still paused (cla: yes, tool)\n\n36200 Refactoring the Android_views tests app to prepare for adding the iOS platform view tests (a: platform-views, a: tests, cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-91", "text": "36202 Add clarifying docs on MaterialButton.colorBrightness (cla: yes, d: api docs, f: material design, framework)\n\n36208 [flutter_tool] Allow analytics without a terminal attached (cla: yes, tool)\n\n36213 Use DeviceManager instead of device to determine if device supports project. (cla: yes, tool)\n\n36243 Allow semantics labels to be shorter or longer than raw text (a: accessibility, cla: yes, customer: money (g3), framework, waiting for tree to go green)\n\n36289 FakeHttpClientResponse improvements (cla: yes, tool)\n\n36293 Revert \u201cKeep LLDB connection to iOS device alive while running from CLI. \u201c (cla: yes, tool)\n\n36302 Issues/30526 gc (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-92", "text": "36303 Add sync star benchmark cases (a: accessibility, cla: yes, team)\n\n36317 Disable flaky tests on Windows (cla: yes, f: material design, framework)\n\n36319 Revert \u201cFix semantics for floating pinned sliver app bar\u201d (cla: yes, framework)\n\n36327 Fix invocations of ideviceinstaller not passing DYLD_LIBRARY_PATH (cla: yes, tool)\n\n36331 Minor fixes to precache help text (attempt #2) (cla: yes, tool)\n\n36384 rename the test app android_views to platform_views (cla: yes, team)\n\n36394 Add missing protobuf dependency (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-93", "text": "36394 Add missing protobuf dependency (cla: yes, tool)\n\n36413 Revert \u201cRoll engine f3482700474a..1af19ae67dd1 (4 commits)\u201d (cla: yes, engine)\n\nPRs closed in this release of flutter/engine\n\nFrom Wed May 1 16:56:00 2019 -0700 to Thu Jul 18 08:04:00 2019 -0700\n\n7847 Extracted PlatformViewsChannel from PlatformViewsController. (cla: yes)\n\n8207 Text inline widget LibTxt/dart:ui implementation (cla: yes)\n\n8596 Expose API to decode images to specified dimensions (cla: yes)\n\n8685 Platform_views gesture: let flutter view controller be the media to pass the touches. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-94", "text": "8731 Fix the iOS accessibility tree structure of platform views. (cla: yes)\n\n8794 Download the Fuchsia SDK and toolchain in a gclient hook. (cla: yes)\n\n8800 Reformat dart dependencies in DEPS. (cla: yes)\n\n8804 Roll buildroot to pick up updated tools/dart/create_updated_flutter_deps.py (cla: yes)\n\n8806 Provide access to GLFW window in plugins (cla: yes)\n\n8808 Allow FlutterEngine to be used on back-to-back screens (#31264). (cla: yes)\n\n8810 Add flutter settings channel and window brightness to macOS shell (cla: yes)\n\n8817 Fix api conformance check (cla: yes)\n\n8820 remove legacy build deps (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-95", "text": "8820 remove legacy build deps (cla: yes)\n\n8821 Remove asserts and add BuildConfig (cla: yes)\n\n8823 Add font features (such as tabular numbers) as an option in text styles (cla: yes)\n\n8824 Guard Android logs (cla: yes)\n\n8825 Remove static leaks (cla: yes)\n\n8826 New Plugin API PR1: Introduces PluginRegistry and FlutterPlugin, adds support for plugin registration to FlutterEngine. (cla: yes)\n\n8830 Cause crash in FlutterJNI if invoked on non-main thread in debug mode (#31263). (cla: yes)\n\n8833 Default the animated frame cache to 0 when unset (cla: yes)\n\n8837 Only cache required frames (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-96", "text": "8837 Only cache required frames (cla: yes)\n\n8841 Update buildroot, libjpeg-turbo and googletest to pull in Fuchsia SDK patches. (cla: yes)\n\n8843 Dynamically add certain AppDelegate methods. (cla: yes)\n\n8844 remove unnecessary usage of runtimeType in dart:ui (cla: yes)\n\n8846 Add asserts to semantics.dart (cla: yes)\n\n8848 Preserve safe area (cla: yes)\n\n8849 new lints (cla: yes)\n\n8851 fix assert (cla: yes)\n\n8859 Get prebuilt Dart via CIPD (cla: yes)\n\n8864 Add resize functions to GLFW shell (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-97", "text": "8864 Add resize functions to GLFW shell (cla: yes)\n\n8867 Prevent redundant layouts when floor(width) is the same (cla: yes)\n\n8869 Wire up Fuchsia SDK related updated for shell dependencies. (cla: yes)\n\n8870 Roll buildroot to pull in Fuchsia SDK flag updates. (cla: yes)\n\n8871 Copy //runtime/dart/utils from Topaz into the engine. (cla: yes)\n\n8873 Synthesize buttons for embedders (cla: yes)\n\n8881 Log instead of throwing (cla: yes)\n\n8884 Copy //dart-pkg/zircon\n\nfuchsia from Topaz into the engine. (cla: yes)\n\n8886 Copy the Flutter Runner from //topaz into the engine. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-98", "text": "8888 Remove absolute path in new Fuchsia SDK based runner target dependency. (cla: yes)\n\n8889 Roll buildroot to bb316a9e. (cla: yes)\n\n8891 Add web sdk implementation. (cla: yes)\n\n8894 Prevent iOS from autofilling password into wrong text box (cla: yes)\n\n8895 Provide a resource context in the GLFW shell (cla: yes)\n\n8896 Remove more asserts and fix a11y check (cla: yes)\n\n8910 Fix TimePoint on Windows (cla: yes)\n\n8912 Make sure Window.dpr still has a setter (cla: yes)\n\n8913 Standardize TimePoint implementaion on std::chrono (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-99", "text": "8920 Replace Skia font macros with enums. (cla: yes)\n\n8923 [fuchsia] Guard out-of-tree Fuchsia targets to fix in-tree build (cla: yes)\n\n8927 libtxt: add a BoxHeightStyle option based on the height of the strut (cla: yes)\n\n8928 Update skew Docs (cla: yes)\n\n8930 Fix iOS crash when in background for 3 minutes (cla: yes)\n\n8936 Wire up the Skia Metal backend on iOS. (cla: yes)\n\n8937 Add a minimal set of symbols to the dynamic symbol table for Linux executables (cla: yes)\n\n8939 Move the Fuchsia Flutter Runner to //flutter/shell/platform/fuchsia/flutter (cla: yes)\n\n8940 Roll Tonic (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-100", "text": "8940 Roll Tonic (cla: yes)\n\n8943 New Plugin API PR2: Introduces ActivityAware, ActivityControlSurface, and ActivityPluginBinding. (cla: yes)\n\n8947 Add @UiThread to MethodChannel and related classes/calls (#32642). (cla: yes)\n\n8949 Copy the Dart Runner from //topaz into the engine. (cla: yes)\n\n8950 Roll tonic and update #includes (cla: yes)\n\n8952 Rename frame_time and engine_time (cla: yes)\n\n8954 Avoid disabling sources assignment filters are these have been removed. (cla: yes)\n\n8956 Use Android text selection shifting API to delete (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-101", "text": "8956 Use Android text selection shifting API to delete (cla: yes)\n\n8962 New Plugin API PR3: Introduces Service, BroadcastReceiver, and ContentProvider awareness, control surfaces, and plugin bindings. (cla: yes)\n\n8975 Replace arraysize macro with fml::size function (cla: yes)\n\n8977 Add support for the Fontconfig-based Skia font manager (cla: yes)\n\n8979 Add mode to load AOT snapshots as a native lib (cla: yes)\n\n8983 Add onReportTimings and FrameRasterizedCallback API (cla: yes)\n\n8985 Add matrix4 param to Linear gradients (cla: yes)\n\n8986 remove [new from docs (cla: yes)\n\n8987 add observatoryUrl property to FlutterEngine (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-102", "text": "8987 add observatoryUrl property to FlutterEngine (cla: yes)\n\n8990 Minor fixes/adjustments to the GLFW shell (cla: yes)\n\n8991 Enable hover by default for desktop shells (cla: yes)\n\n8996 Roll Buildroot (cla: yes)\n\n8998 [fuchsia] Update zx_clock_get callers (cla: yes)\n\n8999 Do nothing if the params didn\u2019t change when compositing platform views. (cla: yes)\n\n9003 Rename Fuchsia Dart and Flutter runners (cla: yes)\n\n9019 Macos systemnavigator pop (cla: yes)\n\n9020 Remove m prefix from fields in the Android PlatformViews code (cla: yes)\n\n9022 Fix horizontal scroll direction for macOS (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-103", "text": "9022 Fix horizontal scroll direction for macOS (cla: yes)\n\n9023 Forward custom IDE flags to GN. (cla: yes)\n\n9025 Correct the return type of addRetained (cla: yes)\n\n9026 Initialize next_pointer_flow_id_ to 0 (cla: yes)\n\n9033 Avoid unnecessary copying of vectors in AccessibilityBridge (cla: yes)\n\n9034 Expose pointer type and buttons in embedder.h (cla: yes)\n\n9036 Fix dartdevc build (cla: yes)\n\n9039 Update FlutterDevCompilerTarget for the new superclass constructor in the Dart SDK (cla: yes)\n\n9041 TextStyle.height property as a multiple of font size instead of multiple of ascent+descent+leading. (affects: text input, cla: yes, prod: API break)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-104", "text": "9045 remove over-optimistic assert (cla: yes)\n\n9049 New Plugin API PR4: Adds Lifecycle support to the new plugin system. (cla: yes)\n\n9054 Add mouse button support to the macOS shell (cla: yes)\n\n9058 libtxt: have GetRectsForRange(strut) fall back to tight bounds if layout isn\u2019t forcing use of the strut (cla: yes)\n\n9060 Add missing top level to stub_ui (cla: yes)\n\n9061 [scene_host] Cleanup scene_host closures (cla: yes)\n\n9062 Add a podspec for FlutterMacOS.framework (cla: yes)\n\n9072 Roll third_party/dart/tools/sdks to 2.3.0 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-105", "text": "9073 Fix unchecked operation warnings in FlutterMain (cla: yes)\n\n9074 Rename macOS FLEPlugin* to FlutterPlugin* (cla: yes)\n\n9075 IOS Platform view transform/clipping (cla: yes)\n\n9077 Update macOS podspec version requirement (cla: yes)\n\n9078 Fix internal break since listing contents can return null (cla: yes)\n\n9081 Correct typos, adopt US spellings (cla: yes)\n\n9083 New Plugin API PR5: Integrates plugin lifecycle control with FlutterFragment. (cla: yes)\n\n9085 Jacobs - Use track-widget-creation transformer included in the sdk (cla: yes)\n\n9086 Delete BSDiff sources (cla: yes)\n\n9087 Removed outdated deprecation comments (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-106", "text": "9087 Removed outdated deprecation comments (cla: yes)\n\n9088 Apply minor cleanups to Android embedding (cla: yes)\n\n9089 Wire up custom event loop interop for the GLFW embedder. (cla: yes)\n\n9097 Better help message. (cla: yes)\n\n9106 Add checks to constructors and add missing constructor members (cla: yes)\n\n9107 Fix unopt variants of profile and release builds. (cla: yes)\n\n9108 Removing unused imports (cla: yes)\n\n9110 Change the virtual display size restriction to warning (cla: yes)\n\n9112 Fix type mismatches in C++ standard codec (cla: yes)\n\n9113 Allow specifying both Dart and non-Dart fixtures in engine unit-tests. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-107", "text": "9114 Remove outdated TODOs (cla: yes)\n\n9115 Added support for transparent FlutterActivitys (#32740). (cla: yes)\n\n9120 Add plugin shim to facilitate old plugins in new embedding (#33478). (cla: yes)\n\n9122 Implemented Log proxy that only logs in BuildConfig.DEBUG (#25391). (cla: yes)\n\n9129 Roll buildroot to pick up fixed create_updated_flutter.deps.py (cla: yes)\n\n9132 Reduce pipeline depth when GPU and Platform are same thread (cla: yes)\n\n9134 Revert \u201cUse track-widget-creation transformer included in the sdk. (#9085)\u201d (cla: yes)\n\n9143 Add missing ifndef guard for count_down_latch.h (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-108", "text": "9145 Suppress an unchecked cast warning in ShimPluginRegistry (cla: yes)\n\n9146 Roll web sdk (cla: yes)\n\n9148 Allow for whitelisted flags to be passed to the Dart VM (cla: yes)\n\n9149 Always run the resource extractor in FlutterMain (cla: yes)\n\n9156 Eliminate deprecated super_goes_last lint (cla: yes)\n\n9157 Remove references to Fuchsia\u2019s ContextWriter (cla: yes)\n\n9158 Copy the macOS podspec during builds (cla: yes)\n\n9172 Use shared library when libapp.so is found (cla: yes, platform-android)\n\n9176 Make flow layers\u2019 attributes immutable (cla: yes)\n\n9180 Revert change by mistake: extract resources (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-109", "text": "9180 Revert change by mistake: extract resources (cla: yes)\n\n9185 Fix platform views channel regression (cla: yes)\n\n9186 Add the key event source, vendorId, and productId from Android (cla: yes)\n\n9187 Compile the physical_shape_layer_unittests.cc TU. (cla: yes)\n\n9189 Allow the task queues to be swapped in MessageLoops (cla: yes)\n\n9190 [engine] Fix builds targeting Android from a Windows host gen_snapshot (cla: yes)\n\n9192 Fix rare crash on HuaWei device when use AndroidView. (cla: yes)\n\n9193 Switch PlatformViewsController from Activity ref to Application ref. (cla: yes)\n\n9198 Skip golden tests on non-Linux OSes (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-110", "text": "9199 Align fuchsia and non-fuchsia tracing (cla: yes)\n\n9201 Roll dart and update libraries files (cla: yes)\n\n9203 Keyboard support for embedded Android views. (cla: yes)\n\n9204 Add platform_fuchsia.cc for default font on fuchsia (cla: yes)\n\n9206 Android Embedding Refactor PR31: Integrate platform views with the new embedding and the plugin shim. (cla: yes)\n\n9211 Revert \u201cSwitch PlatformViewsController from Activity ref to Application ref.\u201d (cla: yes)\n\n9215 Update Engine::ReportTimings to use the new FML_TRACE macros (cla: yes)\n\n9216 Copy TimingsCallback declaration into the stub_ui package (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-111", "text": "9218 Add web integration test to build_and_test_host (cla: yes)\n\n9222 move webOnlyScheduleFrameCallback off of window (cla: yes)\n\n9233 Remove unnecessary whitelisted flags for \u2013dart-flags (cla: yes)\n\n9234 Fix instantiateImageCodec api diff with web (stub) (cla: yes)\n\n9237 Document AccessibilityBridge.java (cla: yes)\n\n9238 Removed VIRTUAL_KEYBOARD check in TextInputPlugin (cla: yes)\n\n9239 Revert \u201cKeyboard support for embedded Android views.\u201d (cla: yes)\n\n9242 Add stub implementation that doesn\u2019t throw (cla: yes)\n\n9243 Mark semantics functions const (cla: yes)\n\n9244 Correct typo (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-112", "text": "9244 Correct typo (cla: yes)\n\n9246 Throw on unhandled license type (cla: yes)\n\n9248 Catch errors during production of kernel dill (cla: yes)\n\n9255 Reorganize darwin for shared ios/macOS (cla: yes)\n\n9257 Reland \u201cKeyboard support for embedded Android views. (#9203) (cla: yes)\n\n9260 Load AOT compiled Dart assets only from ELF libraries (cla: yes)\n\n9262 Set identity instead of crash in opt build (cla: yes)\n\n9264 Wire up SwiftShader based OpenGL ES unit-tests on hosts. (cla: yes)\n\n9266 Whitelist to \u2014enable_mirrors flag to fix regression in existing embedder. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-113", "text": "9270 Unbreak internal rolls (cla: yes)\n\n9278 Fix crash on minimize with GLFW shell (cla: yes)\n\n9280 Add refresh callback to GLFW shell (cla: yes)\n\n9281 Introduce read only text field semantics (cla: yes)\n\n9282 [iOS] [a11y] Don\u2019t allow scroll views to grab a11y focus (cla: yes)\n\n9283 Fix TextInputPlugin NPE caused by PlatformViewsController ref in new embedding (#34283). (cla: yes)\n\n9285 Expose a hasRenderedFirstFrame() method in FlutterView (#34275). (cla: yes)\n\n9287 Report timings faster (100ms) in profile/debug (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-114", "text": "9288 Fixed memory leaks within FlutterFragment and FlutterView (#34268, #34269, #34270). (cla: yes)\n\n9289 [fuchsia] Fix alignment of Fuchsia/non-Fuchsia tracing (cla: yes)\n\n9290 Refactor Delayed Tasks to their own file (cla: yes)\n\n9292 Set Dart version to git hash 3166bbf24b0c929eef33fd5d0f69e0f36a9009f3 (Dart 2.3.3-dev) (cla: yes)\n\n9296 Revert tracing changes (cla: yes)\n\n9297 [scene_host] Expose Opacity and remove ExportNode (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-115", "text": "9301 Refactor: move Task Queue to its own class (cla: yes)\n\n9302 Handle Fuchsia SDK in license tool + roll SDK (cla: yes)\n\n9303 Added class docstrings for classes inside of shell/common. (cla: yes)\n\n9304 Decorate UIApplicationDelegate wrappers with matching UIKit deprecation (affects: dev experience, cla: yes, platform-ios)\n\n9306 When running in AOT modes create a flutter_assets directory that can be used as the bundle path (cla: yes)\n\n9313 [macos] Adds clipboard string read/write support to macOS (cla: yes)\n\n9314 Avoid using std::unary_function. (cla: yes)\n\n9315 Only build embedder unit tests for host builds (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-116", "text": "9315 Only build embedder unit tests for host builds (cla: yes)\n\n9316 MessageLoopTaskQueue schedules Wakes (cla: yes)\n\n9318 Update the Dart version to 1d8b81283c1dee38f1dd87b71b16aa1648b01155 (Dart 2.4.0 Stable version) (cla: yes)\n\n9319 Roll buildroot to 75660ad5 and complete the C++ 17 transition. (cla: yes)\n\n9320 Build the GLFW shell on Linux host builds but not target builds (cla: yes)\n\n9321 Fix a11y in embedded Android views post O (accessibility, cla: yes)\n\n9322 Check for invalid indexes when performing InputAdpator backspace. (affects: text input, cla: yes, crash)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-117", "text": "9324 Send the isolate service ID from the engine to the embedder (cla: yes)\n\n9326 Fix rawTypes errors in Android embedding classes (cla: yes)\n\n9329 Fixed memory leak by way of accidental retain on implicit self (cla: yes)\n\n9330 Build txt_benchmarks, make benches compile again (cla: yes)\n\n9331 Handle one-way platform messages in the embedder library (cla: yes)\n\n9334 Fix the name of the channel parameter in PlatformMessage constructors (cla: yes)\n\n9335 Message loop task heaps are shared (cla: yes)\n\n9336 Roll buildroot to d1bbc14 to pick up fixes for armv7 iOS targets. (cla: yes)\n\n9337 Use the DartServiceIsolate status callback to publish the observatory URI to the Android embedder (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-118", "text": "9338 Replace lock_guard with scoped_lock and use class template argument deduction. (cla: yes)\n\n9343 Avoid a full screen overlay within virtual displays (cla: yes)\n\n9346 Removed an unused class definition for iOS code. (cla: yes)\n\n9347 Surrogate binary messenger (cla: yes)\n\n9350 Update component manifests for ambient replace-as-executable (cla: yes)\n\n9351 Android Embedding Refactor PR32: Clean up logs in new embedding. (cla: yes)\n\n9354 Android Embedding Refactor PR33: Clean up FlutterJNI. (cla: yes)\n\n9356 Add APIs for querying FlutterView for a FlutterEngine and listening for attachment/detachment (#29114). (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-119", "text": "9360 Simplify loading of app bundles on Android (cla: yes)\n\n9361 [glfw] Implement clipboard support from GLFW api (cla: yes)\n\n9362 Fix test name typo (cla: yes)\n\n9365 [glfw] Implement SystemNavigator.pop (cla: yes)\n\n9366 Request FlutterView focus when setting a platform view text client (cla: yes)\n\n9368 Do not remove the DartServiceIsolate status callback during FlutterMain destruction (cla: yes)\n\n9374 Roll Dart to version 7340a569caac6431d8698dc3788579b57ffcf0c6 (cla: yes)\n\n9375 Revert \u201cSurrogate binary messenger (#9347)\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-120", "text": "9376 libtxt: remove obsolete font_manager_available defines (cla: yes)\n\n9377 A fix for the platform view dismiss crash related to gl (cla: yes)\n\n9378 Wire intent args for observatory port (cla: yes)\n\n9383 Update Metal backend to account for Skia updates. (cla: yes)\n\n9384 Android Embedding Refactor PR34: Fill in missing nullability annotations (cla: yes)\n\n9385 Add Dart SDK > 2.3.0 constraint to license script (cla: yes)\n\n9388 Added unit tests for the ios code. (cla: yes)\n\n9391 Android Embedding Refactor PR35: Ensure all JNI methods are in FlutterJNI. (cla: yes)\n\n9394 Remove build flags for dynamic patching (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-121", "text": "9394 Remove build flags for dynamic patching (cla: yes)\n\n9398 Made the license check ignore the .vscode directory. (cla: yes)\n\n9402 Clamp when overflowing z bounds (cla: yes)\n\n9403 Remove variants of ParagraphBuilder::AddText that are not used within the engine (cla: yes)\n\n9406 Update harfbuzz to 2.5.2 (affects: text input, cla: yes)\n\n9419 Has a binary messenger (cla: yes, prod: API break)\n\n9423 Don\u2019t hang to a platform view\u2019s input connection after it\u2019s disposed (cla: yes)\n\n9424 Send timings of the first frame without batching (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-122", "text": "9425 Resolves embedding log chattyness by disabling verbose, debug, and info logs by default (#34876). (cla: yes)\n\n9426 delegate checkInputConnectionProxy to the relevant platform view (cla: yes)\n\n9428 Update README.md for consistency with framework (cla: yes)\n\n9429 Revert \u201cUpdate harfbuzz to 2.5.2\u201d (cla: yes)\n\n9430 Use goma-aware Fuchsia clang toolchain (cla: yes)\n\n9431 Generate weak pointers only in the platform thread (cla: yes)\n\n9432 Ios unit tests choose engine (cla: yes)\n\n9433 Reland Update harfbuzz to 2.5.2 (#9406) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-123", "text": "9436 Add the functionality to merge and unmerge MessageLoopTaskQueues (cla: yes)\n\n9437 Revert \u201cReland Update harfbuzz to 2.5.2 (#9406)\u201d (cla: yes)\n\n9439 Eliminate unused import in FlutterView (cla: yes)\n\n9446 Revert \u201cRoll fuchsia/sdk/core/mac-amd64 from Cx51F\u2026 to e8sS_\u2026\u201d (cla: yes)\n\n9449 Revert \u201cRoll fuchsia/sdk/core/linux-amd64 from udf6w\u2026 to jQ8aw\u2026\u201d (cla: yes)\n\n9450 Revert \u201cRoll fuchsia/sdk/core/mac-amd64 from Cx51F\u2026 to w-3t4\u2026\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-124", "text": "9452 Convert RRect.scaleRadii to public method (affects: framework, cla: yes)\n\n9456 Made sure that the run_tests script returns the right error code. (cla: yes)\n\n9458 Test cleanup geometry_test.dart (affects: tests, cla: yes)\n\n9459 Remove unused/unimplemented shell constructor (cla: yes)\n\n9460 Fixed logLevel filter bug so that filter now works as expected. (cla: yes)\n\n9461 Adds API for retaining intermediate engine layers (cla: yes)\n\n9462 Reland Update harfbuzz to 2.5.2 (cla: yes)\n\n9463 Removed unused imports in new embedding. (cla: yes)\n\n9464 Added shebangs to ios unit test scripts. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-125", "text": "9466 Re-enable the Wuffs GIF decoder (cla: yes)\n\n9467 ios-unit-tests: Forgot a usage of a variable in our script. (cla: yes)\n\n9468 Manually draw remainder curve for wavy decorations (cla: yes)\n\n9469 ios-unit-tests: Fixed ocmock system header search paths. (cla: yes)\n\n9471 ios-unit-tests: Started using rsync instead of cp -R to copy frameworks. (cla: yes)\n\n9476 fix NPE when a touch event is sent to an unknown Android platform view (cla: yes)\n\n9478 iOS PlatformView clip path (cla: yes)\n\n9480 Revert \u201cIOS Platform view transform/clipping (#9075)\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-126", "text": "9482 Re-enable embedder_unittests. (cla: yes)\n\n9483 Reland \u201cIOS Platform view transform/clipping (#9075)\u201d and fix the breakage. (cla: yes)\n\n9485 Add \u2013observatory-host switch (cla: yes)\n\n9486 Rework image & texture management to use concurrent message queues. (cla: yes)\n\n9489 Handle ambiguous directionality of final trailing whitespace in mixed bidi text (cla: yes)\n\n9490 fix a bug where the platform view\u2019s transform is not reset before set frame (cla: yes)\n\n9491 Purge caches on low memory on iOS (cla: yes)\n\n9493 Run benchmarks on try jobs. (cla: yes)\n\n9495 fix build breakage on PlatformViews.mm (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-127", "text": "9495 fix build breakage on PlatformViews.mm (cla: yes)\n\n9501 [android] External textures must be rescaled to fill the canvas (cla: yes)\n\n9503 Improve caching limits for Skia (cla: yes)\n\n9506 Synchronize main thread and gpu thread for first render frame (cla: yes)\n\n9507 Revert Skia version to d8f79a27b06b5bce7a27f89ce2d43d39f8c058dc (cla: yes)\n\n9508 Support image filter on paint (cla: yes)\n\n9509 Roll Fuchsia SDK to latest (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-128", "text": "9509 Roll Fuchsia SDK to latest (cla: yes)\n\n9518 Bump dart_resource_rev to f8e37558a1c4f54550aa463b88a6a831e3e33cd6 (cla: yes)\n\n9532 fix FlutterOverlayView doesn\u2019t remove from superview in some cases (cla: yes)\n\n9546 [all] add fuchsia.{net.NameLookup,posix.socket.Provider} (cla: yes)\n\n9556 Minimal integration with the Skia text shaper module (cla: yes)\n\n9561 libtxt: fix reference counting of SkFontStyleSets held by font asset providers (cla: yes)\n\n9562 Switched preprocessor logic for exporting symbols for testing. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-129", "text": "9581 Revert \u201cAvoid a full screen overlay within virtual displays\u201d (cla: yes)\n\n9585 Fix a race in the embedder accessibility unit test (cla: yes)\n\n9589 Fixes a plugin overwrite bug in the plugin shim system. (cla: yes)\n\n9590 Apply patches that have landed in topaz since we ported the runners to the engine repo (cla: yes)\n\n9591 Document various classes in //flutter/shell/common. (cla: yes)\n\n9593 [trace clients] Remove fuchsia.tracelink.Registry (cla: yes)\n\n9608 Disable failing Mutators tests (cla: yes)\n\n9613 Fix uninitialized variables and put tests in flutter namespace. (cla: yes)\n\n9632 Added Doxyfile. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-130", "text": "9632 Added Doxyfile. (cla: yes)\n\n9633 Cherry-pick fix for flutter/flutter#35291 (cla: yes)\n\n9634 Roll Dart to 67ab3be10d35d994641da167cc806f20a7ffa679 (cla: yes)\n\n9636 Added shebangs to ios unit test scripts. (#9464) (cla: yes)\n\n9637 Revert \u201cRoll Dart to 67ab3be10d35d994641da167cc806f20a7ffa679 (#9634)\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-131", "text": "9638 Reland: Roll Dart to 67ab3be10d35d994641da167cc806f20a7ffa679 (cla: yes)\n\n9640 make EmbeddedViewParams a unique ptr (cla: yes)\n\n9641 Let pushColorFilter accept all types of ColorFilters (cla: yes)\n\n9642 Fix warning about settings unavailable GN arg build_glfw_shell (cla: yes)\n\n9649 Roll buildroot to c5a493b25. (cla: yes)\n\n9651 Move the mutators stack handling to preroll (cla: yes)\n\n9652 Pipeline allows continuations that can produce to front (cla: yes)\n\n9653 External view embedder can tell if embedded views have mutated (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-132", "text": "9654 Begin separating macOS engine from view controller (cla: yes)\n\n9655 Allow embedders to add callbacks for responses to platform messages from the framework. (cla: yes)\n\n9660 ExternalViewEmbedder can CancelFrame after pre-roll (cla: yes)\n\n9661 Raster now returns an enum rather than boolean (cla: yes)\n\n9663 Mutators Stack refactoring (cla: yes)\n\n9667 iOS platform view opacity (cla: yes)\n\n9668 Refactor ColorFilter to have a native wrapper (cla: yes)\n\n9669 Improve window documentation (cla: yes)\n\n9672 Add FLEDartProject for macOS embedding (cla: yes)\n\n9685 fix Picture.toImage return type check and api conform test. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-133", "text": "9698 Ensure that platform messages without response handles can be dispatched. (cla: yes)\n\n9707 Revert \u201cRevert \u201cUse track-widget-creation transformer included in the\u2026 (cla: yes)\n\n9713 Explain why OpacityLayer has an offset field (cla: yes)\n\n9717 Fixed logLevel filter bug so that filter now works as expected. (#9460) (cla: yes)\n\n9721 Add comments to differentiate two cache paths (cla: yes)\n\n9725 Make the license script compatible with recently changed Dart I/O stream APIs (cla: yes)\n\n9727 Add hooks for InputConnection lock and unlocking (cla: yes)\n\n9730 Fix Fuchsia build. (cla: yes)\n\n9734 Fix backspace crash on Chinese devices (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-134", "text": "9734 Fix backspace crash on Chinese devices (cla: yes)\n\n9736 Build Fuchsia as part of CI presumit (cla: yes)\n\n9737 Use libc++ variant of string view and remove the FML variant. (cla: yes)\n\n9740 Revert \u201cImprove caching limits for Skia\u201d (cla: yes)\n\n9741 Make FLEViewController\u2019s view an internal detail (cla: yes)\n\n9745 Fix windows test by not attempting to open a directory as a file. (cla: yes)\n\n9746 Make all shell unit tests use the OpenGL rasterizer. (cla: yes)\n\n9750 FLEViewController/Engine API changes (cla: yes)\n\n9758 Include SkParagraph headers only when the enable-skshaper flag is on (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-135", "text": "9762 Fall back to a fully qualified path to libapp.so if the library can not be loaded by name (cla: yes)\n\n9767 Un-deprecated FlutterViewController\u2019s binaryMessenger. (cla: yes)\n\n9769 Document //flutter/shell/common/engine. (cla: yes)\n\n9772 fix objcdoc generation (cla: yes)\n\n9781 SendPlatformMessage allow null message value (cla: yes)\n\n9789 fix ColorFilter.matrix constness (cla: yes)\n\n9791 Roll Wuffs and buildroot (cla: yes)\n\n9792 Update flutter_web to latest (cla: yes)\n\n9793 Fix typo in PlaceholderAlignment docs (cla: yes)\n\n9797 Remove breaking asserts (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-136", "text": "9797 Remove breaking asserts (cla: yes)\n\n9799 Update buildroot to c4df4a7b to pull in MSVC 2017 Update 9 on Windows. (cla: yes)\n\n9808 Document FontFeature class (cla: yes)\n\n9809 Document //flutter/shell/common/rasterizer (cla: yes)\n\n9813 Made Picture::toImage happen on the IO thread with no need for an onscreen surface. (cla: yes)\n\n9816 Only release the image data in the unit-test once Skia has accepted ownership of it. (cla: yes)\n\n9818 Convert run_tests to python, allow running on Mac/Windows and allow filters for tests. (cla: yes)\n\n9823 Roll buildroot to support bitcode enabled builds for iOS (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-137", "text": "9825 In a single frame codec, release the encoded image buffer after giving it to the decoder (cla: yes)\n\n9828 Make the virtual display\u2019s window translucent (cla: yes)\n\n9847 Started adding the engine hash to frameworks\u2019 Info.plist. (cla: yes)\n\n9849 Preserve the alpha for VD content by setting a transparent background. (cla: yes)\n\n9850 Add multi-line flag to semantics (cla: yes)\n\n9852 Selectively enable tests that work on Windows and file issues for ones that don\u2019t. (cla: yes)\n\n9855 Fix missing assignment to _allowHeadlessExecution (cla: yes)\n\n9856 Disable Fuchsia Debug & Release presubmits and only attempt the Profile unopt variant. (cla: yes)\n\n9857 Fix fuchsia license detection (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-138", "text": "9857 Fix fuchsia license detection (cla: yes)\n\n9859 Fix justify for RTL paragraphs. (cla: yes, waiting for tree to go green)\n\n9866 Update buildroot to pick up Fuchsia artifact roller. (cla: yes)\n\n9867 Fixed error in generated xml Info.plist. (cla: yes)\n\n9873 Add clang version to Info.plist (cla: yes)\n\n9875 Simplify buildtools (cla: yes)\n\n9890 Log dlopen errors only in debug mode (cla: yes)\n\n9898 v1.7.8 hotfixes (cla: yes)\n\n9903 Revert to using fml::StringView instead of std::string_view (cla: yes)\n\n9905 Respect EXIF information while decompressing images. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-139", "text": "PRs closed in this release of flutter/plugins\n\nFrom Wed May 1 16:56:00 2019 -0700 to Thu Jul 18 08:04:00 2019 -0700\n\n826 [google_maps_flutter] enable/disable indoor view (cla: yes, feature, needs love)\n\n837 [camera] Add the ability to disable audio for video recording and image streaming (cla: yes, feature, marketplace)\n\n844 [google_sign_in] Added NonNull annotations, reduce Guava usage (bugfix, cla: yes, submit queue)\n\n1067 [quick_actions]make QuickActions testable (cla: yes)\n\n1075 [firebase_analytics]Refactor unit test to use setMockMethodCallHandler (cla: yes, flutterfire)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-140", "text": "1078 [firebase_remote_config)Remove unused property \u201cchannel\u201d (cla: yes, submit queue)\n\n1119 [android_alarm_manager] add support for specifying startAt time for AlarmManager.periodic() (cla: yes)\n\n1158 [firebase_auth] Add updatePhoneNumber function (WIP, cla: no, feature, flutterfire)\n\n1198 [shared_preferences] Added reload method (cla: yes, feature)\n\n1276 [shared_preferences] copying list for prevent mutate from outside (bugfix, cla: yes)\n\n1308 [shared_preferences] release active instance for create new singleton with new mock values (cla: yes)\n\n1313 [ci] Switch to macOS VM with Flutter pre-installed (WIP, bugfix, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-141", "text": "1318 [Firebase messaging] iOS direct data messages (bugfix, cla: yes, flutterfire)\n\n1355 [firebase_storage] Fix putFile method\u2019s Content-Type auto-detection for iOS (bugfix, cla: yes, flutterfire)\n\n1401 [webview_flutter] add debuggingEnabled property (cla: yes, feature, webview)\n\n1515 [firebase_admob] Fix firebase_admob crash when used with android alarm manager (bugfix, cla: yes, flutterfire, submit queue)\n\n1550 [google_maps_flutter] Adds support for circle overlays to the Google Maps plugin (cla: yes)\n\n1551 [google_maps_flutter] Adds support for polygon overlays to the Google Maps plugin (cla: yes)\n\n1553 [google_maps_flutter] Avoid calling null callbacks (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-142", "text": "1554 [video_player] Prevent Div/0 during network playback initialization. (cla: yes)\n\n1555 [in_app_purchase] Minor doc updates (cla: yes)\n\n1557 [firebase_performance] Testing of firebase performance rewrite PRs (cla: yes, flutterfire)\n\n1558 [google_maps_flutter] Android: update myLocationButton preference on map load (cla: yes)\n\n1559 add cyanglaz to codeowner of video_player (cla: yes)\n\n1560 [in_app_purchase] Remove extraneous download logic (cla: yes)\n\n1561 [in_app_purchase] Update README. Increment version. (cla: yes)\n\n1564 [firebase_crashlytics] Migrate FlutterErrorDetails (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-143", "text": "1565 [path_provider] Release as 1.0 and add integration tests (cla: yes)\n\n1566 [path_provider] add getApplicationSupportDirectory (cla: yes)\n\n1568 [firebase_auth] Removed automatic signing in behaviour when signing in with phone auth. (cla: yes)\n\n1569 [firebase_dynamic_links] support clicking on link while app is running. (cla: yes, flutterfire)\n\n1571 Updates to dynamic links plugin to remove deprecated API usage and update Android dependencies. (cla: yes)\n\n1572 Update Flutterfire Android dependencies. (cla: yes)\n\n1573 Remove flaky timeout test (cla: yes)\n\n1575 [google_maps_flutter] Adds long press / long click support to GoogleMap (cla: yes)\n\n1576 Update firebase_core dependency (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-144", "text": "1576 Update firebase_core dependency (cla: yes)\n\n1577 [in_app_purchase] Add consumable demo (cla: yes)\n\n1578 [firebase_auth] Update to latest CocoaPod (cla: yes)\n\n1579 [firebase_messaging] more graceful handling of failed token read on startup (cla: yes)\n\n1580 [cloud_firestore] Update CocoaPod versions dependency (cla: yes)\n\n1581 Fix break in firebase_analytics CocoaPod (cla: yes)\n\n1582 [firebase_core] set user agent (cla: yes, flutterfire)\n\n1583 [image_picker] Add return statement into the image_picker example (cla: yes)\n\n1584 Migrated linkWithCredential function to FirebaseUser object instead of FirebaseAuth (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-145", "text": "1585 Return image picker method call results on the platform thread (cla: yes)\n\n1586 [image_picker] iOS: save image to the correct type based on its original type and copy over exif data from the original image (cla: yes)\n\n1587 [in_app_purchase] Updated error handling in queryPastPurchases and queryProductDetails (cla: yes)\n\n1588 [in_app_purchase] Guard against dupe onBillingSetupFinished calls (cla: yes)\n\n1589 [in_app_purchase] Fix issue with empty purchase updates (cla: yes)\n\n1590 [in_app_purchase] Propagate launchBillingFlow failures (cla: yes)\n\n1592 [android_intent] Add the component name to the intent. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-146", "text": "1593 remove iOS dependency on Firebase/Database and Firebase/Auth (cla: yes)\n\n1597 [firebase_auth] Updated linking error code documentation (cla: yes, flutterfire)\n\n1598 [camera] Enable camera plugin to compile with earlier android apis with custom AndroidManifest settings (cla: yes)\n\n1600 [shared_preferences] Asynchronous commit() callback (cla: yes)\n\n1601 Adjust user agent name (cla: yes)\n\n1602 [webview_flutter] Fix wrong main thread checking condition. (cla: yes)\n\n1603 Fix to check_hard_coded_version script (cla: yes)\n\n1604 [firebase_performance] Update integration tests & version bump (cla: yes, flutterfire)\n\n1605 [video_player] Fixed example and add texts (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-147", "text": "1607 [cloud_functions] Update iOS dependencies to latest to match Android (cla: yes)\n\n1609 [firebase_auth] Fix onMethodCall missing for updatePhoneNumberCredential (cla: yes, flutterfire)\n\n1610 [camera] Fix bug preventing video recording with audio (cla: yes)\n\n1612 [video_player] avoid deprecated seekToTime API (cla: yes)\n\n1615 [firebase_ml_vision] release CVPixelBuffer to prevent memory leak (cla: yes)\n\n1617 [image_picker] ios: copy all meta data from the original image. (bugfix, cla: yes)\n\n1618 Allow changing the webview\u2019s platform specific implementation (cla: yes)\n\n1619 [cloud_firestore] Group collection query on cloud firestore (cla: yes, flutterfire)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-148", "text": "1620 [cloud_functions] Update README and dart docs, remove unused parameters. (cla: yes, flutterfire)\n\n1621 Change LocalAuth to use Biometric API (cla: yes)\n\n1622 Add missing import for UIKit (cla: yes)\n\n1623 [cloud_firestore] add support for cacheSizeBytes (cla: yes, flutterfire)\n\n1624 [webview_flutter] platform_interface: Use Dart objects for creationParams and webSettings. (cla: yes)\n\n1625 [image_picker] Rename iOS class according to the official Objective-C naming convention. (cla: yes)\n\n1630 [firebase_ml_vision] Add close method for detectors (cla: yes, flutterfire)\n\n1633 [cloud_firestore] Fixed parent() methods (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-149", "text": "1634 Add in_app_purchase for readme and replace pub.dartlang.org to pub.dev. (cla: yes)\n\n1637 [in_app_purchase] Expanded description (cla: yes)\n\n1638 [image_picker] ios: support GIF animation and the scaling (cla: yes)\n\n1639 [cloud_functions]:Replace call with getHttpsCallable under Usage section in readme (cla: yes)\n\n1640 [google_maps_flutter] Update and comment out the \u2018set marker icon\u2019 sample. (cla: yes)\n\n1641 [android_alarm_manager] Move method channel usage to the platform main thread (cla: yes)\n\n1642 [firebase_ml_vision] Update sample to use new ImageStreamListener API (cla: yes)\n\n1643 suppress deprecation warning for BinaryMessages (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-150", "text": "1643 suppress deprecation warning for BinaryMessages (cla: yes)\n\n1644 [cloud_firestore] Add user agent submission to Firestore plugin (cla: yes)\n\n1645 [webview_flutter] Move the method channel behind the platform interface (cla: yes)\n\n1647 [cloud_firestore] Added source support (cla: yes, flutterfire)\n\n1648 [connectivity]Adding missing type params. (cla: yes)\n\n1649 [Device_info] Replace invokeMethod with invokeMapMethod and some refactoring around this change. (cla: yes)\n\n1650 [cloud_firestore]bump up flutter version to 1.5 and use invokeMapMethod instead of invokeMethod (cla: yes, flutterfire)\n\n1651 [firebase_admob]add missing type params for invokeMethod and bump min flutter version to 1.5.0\u2026 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-151", "text": "1652 [firebase_analytics]bump min flutter version to 1.5.0 and add type params to invokeMethod\u2026 (cla: yes, flutterfire)\n\n1653 [shared_preferences] Updated Gradle tooling to match Android Studio 3.4. (cla: yes)\n\n1654 [path_provider] Cast NSInteger to long (cla: yes)\n\n1655 [firebase_auth] add type parameters for invokeMethod and bump min flutter version to 1.5.0 (cla: yes)\n\n1656 Fixes merge conflict in shared_preferences release of 0.5.2+2 (cla: yes)\n\n1657 [firebase_core] replace invokeMethod with invokeMapMethod, add type parameters to invokeMethod calls, bump min Flutter version to 1.5.0 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-152", "text": "1658 [firebase_ml_vision] Fix crash when passing contact info from barcode (cla: yes)\n\n1659 [local_auth] Fixed crash on API<28 while invoking authenticateWithBiometrics (cla: yes)\n\n1662 [in_app_purchase]fix missing return statement analyzer warning (cla: yes)\n\n1663 Move clearCookies behind the platform abstraction (cla: yes)\n\n1664 Fix firebase_auth analyze issues (cla: yes)\n\n1665 Fix firebase_crashlytics analyze errors (cla: yes)\n\n1666 [firebase_auth] Fix iOS updatePhoneNumberCredential crash (cla: yes)\n\n1667 [firebase_crashlytics]add missing type parameters and pump min flutter version to 1.5.0 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-153", "text": "1668 [firebase_database]Add missing template type parameter to calls. Bump minimum Flutter v\u2026 (cla: yes)\n\n1669 [firebase_dynamic_links]Add missing template type parameter to calls. Bump minimum Flutter v\u2026 (cla: yes)\n\n1670 [firebase_messaging]Add missing template type parameter to invokeMethod calls. Bump minimum Flutter version to 1.5.0. Replace invokeMethod with invokeMapMethod wherever necessary. (cla: yes)\n\n1671 [firebase_ml_vision] Add missing template type parameter to invokeMethod calls. Bump minimum Flutter version to 1.5.0. Replace invokeMethod with invokeMapMethod wherever necessary. (cla: yes)\n\n1672 [local_auth] The thread for executor needs to be UI thread. (cla: yes)\n\n1674 [google_maps_flutter] Adds support for add padding to the map (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-154", "text": "1676 [local_auth] Use post instead of postDelayed (cla: yes)\n\n1677 [firebase_dynamic_links] Fix Android crashing when a headless plugin register this plugin. (bugfix, cla: yes, flutterfire)\n\n1678 [firebase_remote_config] Add missing template type parameter to invokeMethod calls. Bump minimum Flutter version to 1.5.0. Replace invokeMethod with invokeMapMethod wherever necessary. (cla: yes)\n\n1679 [firebase_storage]Add missing template type parameter to invokeMethod calls. Bump minimum Flutter version to 1.5.0. Replace invokeMethod with invokeMapMethod wherever necessary. (cla: yes)\n\n1680 [google_map_flutter] Add missing template type parameter to invokeMethod calls. Bump minimum Flutter version to 1.5.0. Replace invokeMethod with invokeMapMethod wherever necessary. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-155", "text": "1681 [google_sign_in] Add missing template type parameter to invokeMethod calls. Bump minimum Flutter version to 1.5.0. Replace invokeMethod with invokeMapMethod wherever necessary. (cla: yes)\n\n1682 [firebase_auth] Document support email requirement in README (cla: yes)\n\n1683 [image_picker]Add missing template type parameter to invokeMethod calls. Bump minimum Flutter version to 1.5.0. Replace invokeMethod with invokeMapMethod wherever necessary. (cla: yes)\n\n1684 [in_app_purchase]Add missing template type parameter to invokeMethod calls. Bump minimum Flutter version to 1.5.0. Replace invokeMethod with invokeMapMethod wherever necessary. (cla: yes)\n\n1685 [connectivity] android: Respect case TYPE_MOBILE_HIPRI (cla: yes)\n\n1688 [google_map_flutter] correct version (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-156", "text": "1688 [google_map_flutter] correct version (cla: yes)\n\n1689 [local_auth]Add missing template type parameter to invokeMethod calls. Bump minimum Flutter versi (cla: yes)\n\n1690 [location_background] Add missing template type parameter to invokeMethod calls. Bump minimum Flutter version to 1.5.0. Replace invokeMethod with invokeMapMethod wherever necessary. (cla: yes)\n\n1691 [In_app_purchase] Correct version. (cla: yes)\n\n1692 [Package_info] Add missing template type parameter to invokeMethod calls. Bump minimum Flutter version to 1.5.0. Replace invokeMethod with invokeMapMethod wherever necessary. (cla: yes)\n\n1693 [quick_ actions] Add missing template type parameter to invokeMethod calls. Bump minimum Flutter version to 1.5.0. Replace invokeMethod with invokeMapMethod wherever necessary. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-157", "text": "1694 [shared_preferences]Add missing template type parameter to invokeMethod calls. Bump minimum Flutter version to 1.5.0. Replace invokeMethod with invokeMapMethod wherever necessary. (cla: yes)\n\n1695 [url_launcher] Add missing template type parameter to invokeMethod calls. Bump minimum Flutter version to 1.5.0. Replace invokeMethod with invokeMapMethod wherever necessary. (cla: yes)\n\n1696 [video_player] Add missing template type parameter to invokeMethod calls. Bump minimum Flutter version to 1.5.0. Replace invokeMethod with invokeMapMethod wherever necessary. (cla: yes)\n\n1697 [google_maps_flutter] Add support for styling google maps (cla: yes)\n\n1698 [webview_flutter]Add missing template type parameter to invokeMethod calls. Bump minimum Flutter version to 1.5.0. Replace invokeMethod with invokeMapMethod wherever necessary. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-158", "text": "1699 [In_app_purchase] rename PurchaseError to IAPError and rename PurchaseSource to IAPSource (cla: yes)\n\n1700 [android_alarm_manager] Wait in onHandleWork until the Dart callback returns a result (cla: yes)\n\n1701 [cloud_firestore] Invoke on ui thread only (cla: yes, flutterfire)\n\n1703 [package_info]Update README.md to reflect iOS issue. (cla: yes)\n\n1705 Revert \u201c1690\u201d (cla: yes)\n\n1707 Ensure that CocoaPods on Cirrus is always the latest version. (cla: yes)\n\n1711 Initial plugins test app (cla: yes)\n\n1712 [firebase_ml_vision] Separate integration tests (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-159", "text": "1713 [firebase_ml_vision] Prepare example app to include Live Camera Preview demo and Material Barcode Scanner demo (cla: yes)\n\n1714 [quick_actions] Update README.md (cla: yes)\n\n1720 [cloud_firestore] Fix document pagination (cla: yes)\n\n1722 [cloud_firestore] Added support for combining document pagination methods (cla: yes)\n\n1724 Add a note about mockito to contribution guide (cla: yes)\n\n1725 [all_plugins] Build all_plugins app on cirrus script (cla: yes)\n\n1728 [firebase_messaging]: add additional documentation for the data in notifications (cla: no, flutterfire, submit queue)\n\n1729 Fix build failures due to CocoaPods version (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-160", "text": "1731 Update plugin Dart code to conform to current Dart formatter (cla: yes)\n\n1733 [firebase_core] Automate version retrieval (cla: yes)\n\n1734 [google_maps_flutter] ios build fix (cla: yes)\n\n1735 Remove hard coded version check (cla: yes)\n\n1737 [google_maps_flutter] Allow BitmapDescriptor scaling override (cla: yes)\n\n1738 Update API link (cla: yes)\n\n1739 [firebase_crashlytics] Fix parsing stacktrace (cla: yes)\n\n1742 [firebase_core] roll back to 0.4.0+3 (cla: yes)\n\n1744 [image_picker] return error in the event that permissions are not granted (cla: yes, submit queue)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-161", "text": "1747 [cloud_functions] Remove unused header reference (cla: yes)\n\n1748 Auto retrieve version to report user agent (cla: yes)\n\n1749 re-add deleted files (cla: yes)\n\n1750 [firebase_crashlytics][ios] setUserIdentifier incorrectly calls setUserEmail (cla: yes)\n\n1751 [in_app_purchase] Fixed code example error & README links (cla: yes, documentation, submit queue)\n\n1753 [share] Add subject as optional parameter (cla: yes)\n\n1756 [firebase_messaging] fix crash when func deleteInstanceID return result in incorrect thread (cla: no, flutterfire)\n\n1758 [firebase_ml_vision] Move firebase_ml_vision examples to this repo (cla: yes, flutterfire)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-162", "text": "1759 [firebase_crashlyitcs] On Android, use actual the Dart exception name instead of \u201cDart error.\u201d (cla: yes)\n\n1760 Auto report ff (cla: yes, flutterfire)\n\n1761 [Connectivity][Android] Updated check network info logic (cla: yes, submit queue)\n\n1763 [firebase_performance] Fix bug that prevented plugin to work with hot restart (bugfix, cla: yes, flutterfire)\n\n1764 [none] Update README.md (cla: yes)\n\n1765 [firebase_auth] Leave UserInfo for phone provider in providerData (cla: yes, flutterfire)\n\n1766 [firebase_messaging] Update README for build.gradle configuration (cla: yes)\n\n1768 [script] Don\u2019t run incremental build when there are no changes in packages (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-163", "text": "1769 Update README to reflect the requirement to use fragment activity (cla: yes)\n\n1772 Set device density to polylines (cla: yes)\n\n1775 [in_app_purchase]fix the type casting issue (cla: yes)\n\n1776 [all_plugins] Compile all plugins together (cla: yes)\n\n1778 Enable version checker to be run on cirrus (cla: yes)\n\n1779 Add a PR triage policy to the contributing guide. (cla: yes)\n\n1780 [cloud_firestore] Transactions improvements (cla: yes)\n\n1781 [cloud_firestore] Support for map fields in document pagination (cla: yes)\n\n1782 [url_launcher]: add option to enable DOM storage in android webview (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-164", "text": "1785 [in_app_purchase]fix the regression introduced in 0.2.0+1 (cla: yes)\n\n1786 Disable version-check until we fix the patch version (cla: yes)\n\n1787 re-enable version check (cla: yes)\n\n1795 [image_picker] Don\u2019t use modules (cla: yes)\n\n1797 [android_intent] [battery] [shared_preferences] Fix Gradle version (cla: yes)\n\n1798 [in_app_purchase] Readme updates (cla: yes, documentation, submit queue)\n\n1799 [firebase_crashlytics] make sure the keys are actually added to the returned map (cla: yes)\n\n1800 [quick_actions] Implementing sharedpreferences approach for killed apps (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-165", "text": "1801 [google_maps_flutter] Fix incorrect polygon argument name in google maps controller (cla: yes)\n\n1804 [image_picker] Removed cursor to prevent crash (cla: yes)\n\n1805 [firebase_auth] Fix typo in some comments. (cla: yes, submit queue)\n\n1806 [video_player] fixed markdown which causes pub.dev not show actu\u2026 (cla: no, submit queue)\n\n1808 [google_maps_flutter] Add map toolbar support (cla: yes)\n\n1811 [path_provider] Update to use getExternalFilesDir (cla: yes)\n\n1812 [firebase_database] Move firebase_database transaction calls to UI thread on Android (cla: yes)\n\n1815 [firebase_crashlytics] Update README with advice on testing installation (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-166", "text": "1816 [firebase_messaging] add integration tests (cla: yes)\n\n1817 [image_picker]use class instead of struct for GIFInfo on iOS (cla: yes)\n\n1818 [firebase_messaging] Change signature of subscribe/unsubscribe (cla: yes)\n\n1819 [in_app_purchase] iOS: Support unsupported UserInfo value types on NSError. (cla: yes, submit queue)\n\n1822 [Connectivity] Fixes issue \u201cconnectivity using deprecated api\u201d (cla: yes, submit queue)\n\n1823 [image_picker] Update README example (cla: yes)\n\n1826 [firebase_auth] Register for iOS notifications to support phone auth (cla: yes)\n\n1827 [in_app_purchase] fix version (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-167", "text": "1828 Revert \u201c[google_sign_in] Added NonNull annotations, reduce Guava usage (#844) (cla: yes)\n\n1830 [firebase_remote_config] fix config value source parsing (cla: yes)\n\n1831 [firebase_crashlytics] Handle case where function isn\u2019t in class for stack (cla: yes)\n\n1832 [camera] Dart Interface for camera refactor (cla: yes)\n\n1833 [in_app_purchase] add missing hashCode implementation (cla: yes)\n\n1834 [firebase_storage] Fix Content-Type auto-detection for Android (cla: yes)\n\n1835 [firebase_dynamic_links] Allow FDL plugin to be registered without an activity (cla: yes)\n\n1839 [firebase_auth] CHANGELOG entry and update pubspec.yaml for release (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-168", "text": "1840 [local_auth] Fix usage syntax on README (cla: yes)\n\n1844 [image_picker] Fix image_picker Hanging After Attempting to Open Unavailable Camera on iOS Simulator (bugfix, cla: yes)\n\n1845 [webview_flutter] Basic fix for input pre N (cla: yes)\n\n1846 [firebase_auth] [google_sign_in] Update consent screen docs (cla: yes)\n\n1848 [url_launcher] add support for android headers (cla: yes)\n\n1849 [android alarm manager] Fix crash below API 19 (cla: yes)\n\n1850 [firebase_analytics] add missing named events tracking (cla: yes)\n\n1852 [webview_flutter] Support Flutter TextInputs (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-169", "text": "1853 [webview_flutter] Fix input bug on route changes (cla: yes)\n\n1854 [webview_flutter] Fix typo (cla: yes)\n\n1855 Update CODEWNERS for google_maps_flutter and webview_flutter (cla: yes)\n\n1856 [quick_actions] Fixes Android action forwarding (cla: yes)\n\n1857 [webview_flutter] Don\u2019t log unknown setting key for debuggingEnabled \u2026 (cla: yes)\n\n1858 Update CHANGELOG and pubspec.yaml for release (cla: yes)\n\n1862 [image_picker] Fix a crash when user takes a photo using devices under iOS 11. (cla: yes)\n\n1863 [webview_flutter] fix typo in comment (cla: yes)\n\n1865 [ci] Use the same upgrade script on Mac (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "95e556d8c209-170", "text": "1869 [firebase_auth] Fix getIdToken refresh param on iOS (cla: yes)\n\n1870 Cirrus should report errors on failures of incremental_build.sh (cla: yes)\n\n1872 [connectivity] Fix the typo in the suppresswarnings qualifier (cla: yes)\n\n1873 Add some more CODEOWNERS (cla: yes)\n\n1874 [firebase_performance] Fix invokeMethod formatting that caused a bug with Dart code obfuscation (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.7.8/index.html"} {"id": "a5e9f3d746fa-0", "text": "Change log for Flutter 1.9.1\n\nTools\n\nSDK\n\nRelease notes\n\n1.9.1 change log\n\nPRs closed in this release of flutter/flutter\n\nPRs closed in this release of flutter/engine\n\nPRs closed in this release of flutter/flutter\n\nFrom Fri Jun 21 22:31:55 2019 -0400 to Sun Aug 18 12:22:00 2019 -0700\n\n28090 Ensure that cache dirs and files have appropriate permissions (cla: yes, tool)\n\n29489 Made a few grammatical changes (cla: yes, team)\n\n32511 Rendering errors with root causes in the widget layer should have a reference to the widget (cla: yes, customer: countless, customer: headline, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-1", "text": "32770 Dismiss modal with any button press (a: desktop, cla: yes, framework)\n\n32816 Add initial implementation of flutter assemble (cla: yes, tool)\n\n33140 flutter/tests support (cla: yes, team)\n\n33281 Update TextStyle and StrutStyle height docs (a: typography, cla: yes, d: api docs, framework, severe: API break)\n\n33688 Part 1: Skia Gold Testing (a: tests, cla: yes, framework)\n\n33936 New parameter for RawGestureDetector to customize semantics mapping (cla: yes, f: gestures, framework)\n\n34019 Selectable Text (a: text input, cla: yes, customer: amplify, customer: fuchsia, framework, severe: API break)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-2", "text": "34202 Remove _debugWillReattachChildren assertions from _TableElement (cla: yes, customer: payouts, framework)\n\n34252 Integrate dwds into flutter tool for web support (cla: yes, tool, \u2638 platform-web)\n\n34298 Preserving SafeArea : Part 2 (cla: yes, customer: solaris, framework, severe: customer critical, waiting for tree to go green)\n\n34301 Make it possible to override the FLUTTER_TEST env variable (a: tests, cla: yes, customer: mulligan (g3), team, tool)\n\n34515 OutlineInputBorder adjusts for borderRadius that is too large (a: text input, cla: yes, f: material design, framework)\n\n34516 [flutter_tool] Fill in Fuchsia version string (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-3", "text": "34573 Ensures flutter jar is added to all build types on plugin projects (cla: yes, t: gradle, tool, waiting for tree to go green)\n\n34597 [Material] Update slider gallery demo, including range slider (cla: yes, f: material design, framework)\n\n34599 [Material] ToggleButtons (cla: yes, f: material design, framework, severe: new feature)\n\n34624 Break down flutter doctor validations and results (cla: yes, t: flutter doctor, tool)\n\n34626 AsyncSnapshot.data to throw if error or no data (cla: yes, framework)\n\n34660 Add \u2013target support for Windows and Linux (cla: yes, tool)\n\n34665 Selection handles position is off (a: text input, cla: yes, framework, severe: API break)\n\n34669 Bundle ios dependencies (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-4", "text": "34669 Bundle ios dependencies (cla: yes, tool)\n\n34676 Enable selection by default for password text field and expose api to\u2026 (a: text input, cla: yes, f: cupertino, f: material design, framework)\n\n34712 Fix FocusTraversalPolicy makes focus lost (a: desktop, cla: yes, framework)\n\n34723 CupertinoTextField vertical alignment (cla: yes, f: cupertino, framework)\n\n34752 [linux] Receives the unmodified characters obtained from GLFW (a: desktop, cla: yes, framework)\n\n34785 Tweak the display name of emulators (cla: yes, tool)\n\n34794 Add emulatorID field to devices in daemon (cla: yes, tool)\n\n34823 Introduce image loading performance test. (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-5", "text": "34869 [Material] Properly call onChangeStart and onChangeEnd in Range Slider (cla: yes, f: material design, framework)\n\n34870 Add test case for Flutter Issue #27677 as a benchmark. (cla: yes, engine, framework, severe: performance)\n\n34872 [Material] Support for hovered, focused, and pressed border color on OutlineButtons (cla: yes, f: material design, framework)\n\n34877 More shards (a: tests, cla: yes, team, waiting for tree to go green)\n\n34885 Reland: rename web device (cla: yes, tool)\n\n34895 Remove flutter_tools support for old AOT snapshotting (cla: yes)\n\n34896 Allow multi-root web builds (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-6", "text": "34906 Fix unused [applicationIcon] property on [showLicensePage] (cla: yes, f: material design, framework)\n\n34907 Fixed LicensePage to close page before loaded the License causes an error (cla: yes, f: material design, framework, severe: crash)\n\n34919 Remove duplicate error parts (cla: yes, framework, waiting for tree to go green)\n\n34932 Added onChanged property to TextFormField (cla: yes, f: material design, framework)\n\n34964 CupertinoTextField.onTap (cla: yes, f: cupertino)\n\n35017 sync lint list (cla: yes)\n\n35046 Add generated Icon diagram to api docs (cla: yes, d: api docs, d: examples, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-7", "text": "35055 enable lint avoid_bool_literals_in_conditional_expressions (cla: yes)\n\n35056 enable lint use_full_hex_values_for_flutter_colors (cla: yes)\n\n35059 prepare for lint update of prefer_final_fields (cla: yes)\n\n35063 add documentation for conic path not supported (a: platform-views, cla: yes, d: api docs, framework, plugin)\n\n35066 Manual engine roll, Update goldens, improved wavy text decoration 0f9e297ad..185087a65f (a: typography, cla: yes, engine)\n\n35074 Attempt to enable tool coverage redux (a: tests, cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-8", "text": "35075 Allow for customizing SnackBar\u2019s content TextStyle in its theme (cla: yes, f: material design, framework)\n\n35084 Move findTargetDevices to DeviceManager (cla: yes, tool)\n\n35092 Add FlutterProjectFactory so that it can be overridden internally. (cla: yes, tool)\n\n35110 Always test semantics (a: accessibility, a: tests, cla: yes, framework, severe: API break)\n\n35129 [Material] Wrap Flutter Gallery\u2019s Expansion Panel Slider in padded Container to make room for Value Indicator. (cla: yes, f: material design, framework, severe: regression)\n\n35130 pass new users for release_smoke_tests (a: tests, cla: yes, team)\n\n35132 Reduce allocations by reusing a matrix for transient transforms in _transformRect (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-9", "text": "35136 Update Dark Theme disabledColor to White38 (cla: yes, f: material design, framework, severe: API break)\n\n35143 More HttpClientResponse Uint8List fixes (cla: yes)\n\n35149 More HttpClientResponse implements Stream fixes (cla: yes)\n\n35150 Change didUpdateConfig to didUpdateWidget (cla: yes, d: api docs, framework)\n\n35157 Remove skip clause on tools coverage (cla: yes, team)\n\n35160 Move usage flutter create tests into memory filesystem. (a: tests, cla: yes, tool)\n\n35164 Update reassemble doc (cla: yes, customer: product, d: api docs, framework, severe: customer critical)\n\n35186 Make tool coverage collection resilient to sentinel coverage data (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-10", "text": "35188 ensure test isolate is paused before collecting coverage (cla: yes, tool)\n\n35189 enable lints prefer_spread_collections and prefer_inlined_adds (cla: yes)\n\n35192 don\u2019t block any presubmit on coverage (cla: yes, tool)\n\n35197 [flutter_tool] Update Fuchsia SDK (cla: yes, tool)\n\n35206 Force-upgrade package deps (cla: yes)\n\n35207 refactor out selection handlers (a: text input, cla: yes, customer: amplify, customer: fuchsia, framework)\n\n35211 child param doc update in Ink and Ink.image (cla: yes, d: api docs, f: material design, framework)\n\n35217 Add flutter build aar (a: build, cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-11", "text": "35219 Text selection menu show/hide cases (a: text input, cla: yes, f: material design, framework)\n\n35221 Twiggle bit to exclude dev and beta from desktop and web (cla: yes, tool)\n\n35223 Navigator pushAndRemoveUntil Fix (cla: yes, customer: mulligan (g3), f: routes, framework, severe: crash, waiting for tree to go green)\n\n35225 add sample code for AnimatedContainer (a: animation, cla: yes, d: api docs, d: examples, framework)\n\n35231 Fix coverage collection (cla: yes, tool)\n\n35232 New benchmark: Gesture semantics (cla: yes, waiting for tree to go green)\n\n35233 Attempt skipping coverage shard if tools did not change (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-12", "text": "35237 Revert \u201cManual engine roll, Update goldens, improved wavy text decoration 0f9e297ad..185087a65f\u201d (cla: yes)\n\n35242 Reland \u201cManual engine roll, Update goldens, improved wavy text decoration 0f9e297ad..185087a65f\u201d\u201d (cla: yes)\n\n35245 More preparation for HttpClientResponse implements Uint8List (cla: yes)\n\n35246 attempt to not skip coverage on post commit (cla: yes)\n\n35263 remove unnecessary ..toList() (cla: yes)\n\n35276 Revert \u201c[Material] Support for hovered, focused, and pressed border color on OutlineButtons\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-13", "text": "35278 Re-land \u201c[Material] Support for hovered, focused, and pressed border color on OutlineButtons\u201d (cla: yes)\n\n35280 benchmarkWidgets.semanticsEnabled default false. (cla: yes)\n\n35282 Add Container fallback to Ink build method (cla: yes, f: material design, framework)\n\n35288 Apply coverage skip math correctly (cla: yes)\n\n35290 tests for about page (cla: yes)\n\n35297 Fix the first frame logic in tracing and driver (cla: yes, engine, framework, severe: performance, team)\n\n35303 fix default artifacts to exclude ios and android (cla: yes, tool)\n\n35307 Clean up host_app_ephemeral Profile build settings (a: existing-apps, cla: yes, t: xcode, tool, \u233a\u202c platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-14", "text": "35335 Using custom exception class for network loading error (a: images, cla: yes, framework)\n\n35367 Add type to StreamChannel in generated test code. (cla: yes, tool)\n\n35392 Add timer checking and Fake http client to testbed (cla: yes, tool)\n\n35393 more ui-as-code (cla: yes, team)\n\n35406 Refactor signal and command line handler from resident runner (cla: yes, team, tool)\n\n35407 Manual engine roll (cla: yes, engine, team)\n\n35408 Remove print (cla: yes)\n\n35423 v1.7.8 hotfixes (cla: yes)\n\n35424 Introduce image_list performance benchmark that runs on jit(debug) build. (a: images, a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-15", "text": "35464 Manual roll of engine 45b66b7\u2026ffba2f6 (cla: yes, team)\n\n35465 Mark update-packages as non-experimental (cla: yes, tool)\n\n35467 Mark update-packages as non-experimental (cla: yes, tool)\n\n35468 Add colorFilterLayer/Widget (a: accessibility, cla: yes, customer: octopod, framework, waiting for tree to go green)\n\n35477 Update macrobenchmarks README and app name (a: tests, cla: yes, team)\n\n35480 Update the help message on precache command for less confusion (cla: yes, tool)\n\n35481 add APK build time benchmarks (cla: yes, tool)\n\n35482 Use the new service protocol message names (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-16", "text": "35482 Use the new service protocol message names (cla: yes)\n\n35487 Fix RenderFittedBox when child.size.isEmpty (a: accessibility, cla: yes, framework)\n\n35491 Include tags in SemanticsNode debug properties (cla: yes, framework)\n\n35492 Re-apply \u2018Add currentSystemFrameTimeStamp to SchedulerBinding\u2019 (cla: yes, framework)\n\n35493 Do not use ideographic baseline for RenderPargraph baseline (a: typography, cla: yes, engine, framework)\n\n35495 mark windows and macos chrome dev mode as flaky (cla: yes, team)\n\n35496 [Material] Text scale and wide label fixes for Slider and Range Slider value indicator shape (cla: yes, f: material design)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-17", "text": "35499 Added MaterialApp.themeMode to control which theme is used. (cla: yes, f: material design, framework)\n\n35548 Various doc fixes (cla: yes, framework)\n\n35556 ios (iPhone6) and iPhone XS tiles_scroll_perf tests (cla: yes, severe: performance, team, \u233a\u202c platform-ios)\n\n35560 Support for elevation based dark theme overlay color in the Material widget (cla: yes, f: material design, framework)\n\n35573 update packages (cla: yes, team)\n\n35574 Fix semantics for floating pinned sliver app bar (a: accessibility, cla: yes, f: scrolling, framework, waiting for tree to go green)\n\n35646 Prepare for Socket implements Stream (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-18", "text": "35646 Prepare for Socket implements Stream (cla: yes)\n\n35657 Remove paused check for tooling tests (cla: yes, tool)\n\n35681 Disable incremental compiler in dartdevc (cla: yes, tool)\n\n35684 Fix typo in main.dart templates (cla: yes, d: api docs, framework)\n\n35708 disable a test case in xcode_backend.sh (cla: yes, tool)\n\n35709 Remove web, fuchsia, and unsupported devices from all (cla: yes, tool)\n\n35725 Update annotated region findAll implementation to use Iterables directly. (cla: yes, framework)\n\n35728 Added demo projects for splash screen support on Android. (a: existing-apps, cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-19", "text": "35731 Keep LLDB connection to iOS device alive while running from CLI. (cla: yes, tool)\n\n35743 Simple Doc Fixes (cla: yes, d: api docs, framework)\n\n35745 enable lint prefer_if_null_operators (cla: yes, team)\n\n35749 add iOS build benchmarks (cla: yes, team, tool)\n\n35750 use sentence case in error message titles (cla: yes, framework)\n\n35756 Remove @objc inference build setting (cla: yes, t: xcode, tool)\n\n35762 Refactor keymapping for resident_runner (cla: yes)\n\n35763 UIApplicationLaunchOptionsKey -> UIApplication.LaunchOptionsKey (cla: yes, t: xcode, tool, \u233a\u202c platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-20", "text": "35765 Use public _registerService RPC in flutter_tools (cla: yes, tool)\n\n35767 set targets of zero percent for tools codecoverage (cla: yes, tool)\n\n35775 Add platform_interaction_test_swift to devicelab (a: tests, cla: yes, framework, p: framework, plugin, \u233a\u202c platform-ios)\n\n35777 Fixed logLevel filter bug so that filter now works as expected (cla: yes, team)\n\n35778 Build all example projects in CI build smoke test (a: tests, cla: yes, team)\n\n35780 Remove CoocaPods support from layers example app (a: tests, cla: yes, d: examples, team)\n\n35785 Remove reverseDuration from implicitly animated widgets, since it\u2019s ignored. (a: animation, cla: yes, framework, severe: API break)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-21", "text": "35792 disable web tests (cla: yes)\n\n35810 SliverFillRemaining accounts for child size when hasScrollBody is false (cla: yes, f: scrolling, framework, waiting for tree to go green)\n\n35814 Roll engine e695a516f..75387dbc1 (8 commits) (cla: yes, team)\n\n35825 Fixed build of example code to use new binary messenger API. (cla: yes, team)\n\n35828 Cleanup widgets/sliver_persistent_header.dart with resolution of dart-lang/sdk#31543 (cla: yes, framework)\n\n35829 iOS 13 scrollbar (cla: yes, f: cupertino, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-22", "text": "35833 Disable CocoaPods input and output paths in Xcode build phase for ephemeral add-to-app project (a: existing-apps, cla: yes, tool, \u233a\u202c platform-ios)\n\n35839 use pub run for create test and remove [INFO] logs (cla: yes, tool)\n\n35846 move reload and restart handling into terminal (cla: yes, tool)\n\n35878 Add flag to use root navigator for showModalBottomSheet (cla: yes, f: material design, framework)\n\n35892 Doc fixes (cla: yes, d: api docs, d: examples, framework)\n\n35906 Add anchors to samples (cla: yes, team)\n\n35913 Change focus example to be more canonical (and correct) (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-23", "text": "35919 Animation API doc improvments (a: animation, cla: yes, framework, waiting for tree to go green)\n\n35926 Add example showing how to move from one field to the next. (cla: yes, d: api docs, d: examples, framework)\n\n35932 Upgraded framework packages with \u2018flutter update-packages \u2013force-upgrade\u2019. (cla: yes, framework)\n\n35941 SliverLayoutBuilder (cla: yes, f: scrolling, framework)\n\n35942 Use test instead of test_api package in platform_channel_swift example tests (a: tests, cla: yes, d: examples, team)\n\n35971 [ImgBot] Optimize images (cla: yes, team)\n\n35979 Optimizes gesture recognizer fixes #35658 (cla: yes, f: gestures, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-24", "text": "35991 Enable widget load assets in its own package in test (a: tests, cla: yes, tool)\n\n35996 Revert \u201cKeep LLDB connection to iOS device alive while running from CLI.\u201d (cla: yes)\n\n35999 Deflake ImageProvider.evict test (a: images, a: tests, cla: yes, team: flakes)\n\n36006 fix linesplitter (cla: yes, team)\n\n36017 Move reporting files to reporting/ (cla: yes, tool)\n\n36026 add the transformPoint and transformRect benchmarks (cla: yes, team)\n\n36028 Fix slider preferred height (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-25", "text": "36030 [Material] Implement TooltipTheme and Tooltip.textStyle, fix Tooltip debugLabel, update Tooltip defaults (cla: yes, f: material design, framework, severe: API break, severe: new feature)\n\n36071 Revert \u201cBundle ios dependencies\u201d (cla: yes, team, tool)\n\n36082 Add better handling of JSON-RPC exception (cla: yes, tool)\n\n36084 handle google3 version of pb (cla: yes, tool)\n\n36087 Update visual style of CupertinoSwitch to match iOS 13 (cla: yes, f: cupertino, framework)\n\n36088 Add PopupMenuTheme to enable theming color, shape, elevation, text style of Menu (cla: yes, f: material design, framework)\n\n36089 Fix flaky peer connection (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-26", "text": "36090 don\u2019t require diffs to have a percentage coverage greater (cla: yes, team)\n\n36093 Reland bundle ios deps (cla: yes, team, tool)\n\n36094 Revert \u201cPart 1: Skia Gold Testing\u201d (cla: yes, f: cupertino, f: material design, framework, team)\n\n36096 Revert \u201cMerge branches \u2018master\u2019 and \u2018master\u2019 of github.com:flutter/fl\u2026 (cla: yes, tool)\n\n36097 Fix nested scroll view can rebuild without layout (cla: yes, f: scrolling, framework, severe: crash)\n\n36098 Be clearer about errors in customer testing script (cla: yes, team)\n\n36102 Move buildable module test to a module test (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-27", "text": "36103 Re-land \u201cPart 1: Skia Gold Testing\u201d (a: tests, cla: yes, framework, waiting for tree to go green)\n\n36105 [flutter_tool] Catch a yaml parse failure during project creation (cla: yes, team, tool)\n\n36106 Updated ColorScheme.dark() colors to match the Material Dark theme specification (cla: yes, f: material design, framework, severe: API break)\n\n36108 Move tools tests into a general.shard directory in preparation to changing how we shard tools tests (cla: yes, tool)\n\n36109 Catch exceptions thrown by runChecked* when possible (cla: yes, tool, waiting for tree to go green)\n\n36122 Make sure add-to-app build bundle from outer xcodebuild/gradlew sends analytics (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-28", "text": "36123 Attempt to re-enable integration_tests-macos (a: tests, cla: yes, team, team: flakes)\n\n36135 add a kIsWeb constant to foundation (cla: yes, framework)\n\n36138 Implement feature flag system for flutter tools (cla: yes, tool)\n\n36174 [cupertino_icons] Add glyph refs for brightness #16102 (cla: yes, f: cupertino, framework)\n\n36194 Keep LLDB connection to iOS device alive while running from CLI. (cla: yes, tool)\n\n36197 Fix windows, exclude widgets from others (cla: yes, team)\n\n36199 Don\u2019t try to flutterExit if isolate is still paused (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-29", "text": "36200 Refactoring the Android_views tests app to prepare for adding the iOS platform view tests (a: platform-views, a: tests, cla: yes, team)\n\n36202 Add clarifying docs on MaterialButton.colorBrightness (cla: yes, d: api docs, f: material design, framework)\n\n36208 [flutter_tool] Allow analytics without a terminal attached (cla: yes, tool)\n\n36213 Use DeviceManager instead of device to determine if device supports project. (cla: yes, tool)\n\n36217 Split Mouse from Listener (a: desktop, cla: yes, framework, severe: API break, waiting for tree to go green)\n\n36218 release lock in flutter pub context (cla: yes, tool)\n\n36237 Recommend to use the final version of CDN support for the trunk specs repo. (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-30", "text": "36240 Rearrange flutter assemble implementation (cla: yes, tool)\n\n36243 Allow semantics labels to be shorter or longer than raw text (a: accessibility, cla: yes, customer: money (g3), framework, waiting for tree to go green)\n\n36262 Prevents infinite loop in Table._computeColumnWidths (cla: yes, framework)\n\n36270 Change Future.done to Future.whenComplete (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n36288 Throw exception if instantiating IOSDevice on non-mac os platform (cla: yes, tool)\n\n36289 FakeHttpClientResponse improvements (cla: yes, tool)\n\n36293 Revert \u201cKeep LLDB connection to iOS device alive while running from CLI. \u201c (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-31", "text": "36297 Add multi-line flag to semantics (a: accessibility, cla: yes, framework, \u2638 platform-web)\n\n36302 Issues/30526 gc (cla: yes, framework)\n\n36303 Add sync star benchmark cases (a: accessibility, cla: yes, team)\n\n36317 Disable flaky tests on Windows (cla: yes, f: material design, framework)\n\n36318 Include flutter_runner in precache artifacts. (cla: yes, tool)\n\n36319 Revert \u201cFix semantics for floating pinned sliver app bar\u201d (cla: yes, framework)\n\n36327 Fix invocations of ideviceinstaller not passing DYLD_LIBRARY_PATH (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-32", "text": "36331 Minor fixes to precache help text (attempt #2) (cla: yes, tool)\n\n36333 fix sliver fixed pinned appbar (cla: yes, framework, waiting for tree to go green)\n\n36334 Added a Driver API that waits until frame sync (a: tests, cla: yes, framework)\n\n36379 Add missing test case for Usage (cla: yes, tool)\n\n36384 rename the test app android_views to platform_views (cla: yes, team)\n\n36391 Adds doc example for Listview and pageview (cla: yes, d: api docs, framework)\n\n36392 Increase pattern that matches operation duration in log_test (a: tests, cla: yes, tool, waiting for tree to go green)\n\n36394 Add missing protobuf dependency (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-33", "text": "36394 Add missing protobuf dependency (cla: yes, tool)\n\n36396 Optimize the transformRect and transformPoint methods in matrix_utils. (cla: yes, framework)\n\n36399 Added ThemeMode support to the Flutter Gallery (cla: yes, d: examples, team, team: gallery)\n\n36402 Teach render objects to reuse engine layers (cla: yes, framework, severe: API break, severe: performance, \u2638 platform-web)\n\n36404 Make test back button label deterministic (cla: yes, team)\n\n36409 Add searchFieldLabel to SearchDelegate in order to show a custom hint (cla: yes, f: material design, framework)\n\n36410 Add plumbing for hello world startup test in devicelab (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-34", "text": "36411 Implement InputDecorationTheme copyWith, ==, hashCode (cla: yes, f: material design, framework, severe: new feature)\n\n36413 Revert \u201cRoll engine f3482700474a..1af19ae67dd1 (4 commits)\u201d (cla: yes, engine)\n\n36418 Add testing to screenshot and printDetails method (cla: yes, tool)\n\n36421 doc : ReorderableListView - added youtube video from WidgetOfTheWeek \u2026 (cla: yes, f: material design, framework)\n\n36428 Bump engine version (cla: yes, engine, team)\n\n36431 Re-enable flutter test expression evaluation tests (a: tests, cla: yes, tool)\n\n36434 Clean up flutter driver device detection. (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-35", "text": "36460 Add images and update examples for top widgets: (cla: yes, d: api docs, d: examples, f: material design, framework)\n\n36465 Use FlutterFeatures to configure web and desktop devices (cla: yes, tool)\n\n36468 Fix test_widgets-windows not running tests (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n36471 Enable bitcode compilation for AOT (cla: yes)\n\n36481 Remove untested code (cla: yes, tool)\n\n36482 Sped up shader warmup by only drawing on a 100x100 surface (cla: yes, framework)\n\n36485 Add text border docs (a: typography, cla: yes, d: api docs, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-36", "text": "36490 [flutter_tool] Send analytics command before the command runs (cla: yes, tool)\n\n36492 Add GitHub CODEOWNERS file to auto-add reviewers by path (cla: yes, team)\n\n36493 Fixes sliver list does not layout firstchild when child reordered (cla: yes, framework)\n\n36498 Clean up host_app_ephemeral_cocoapods Profile build settings (a: existing-apps, cla: yes, t: xcode, tool, \u233a\u202c platform-ios)\n\n36503 Disabling Firebase Test Lab smoke test to unblock autoroller (cla: yes)\n\n36507 Bump engine version (cla: yes, engine, team, tool)\n\n36510 flutter update-packages \u2013force-upgrade (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-37", "text": "36512 Renamed the Driver API waitUntilFrameSync to waitUntilNoPendingFrame (a: tests, cla: yes, framework)\n\n36513 Fix flutter pub -v (cla: yes, tool)\n\n36545 [flutter_tool] Send the local time to analytics with screens and events (cla: yes, tool, work in progress; do not review)\n\n36546 Unskip date_picker_test on Windows as underlying issue 19696 was fixed. (cla: yes, f: material design, framework)\n\n36548 Fix the web builds by reverting version bump of build_modules (cla: yes, tool)\n\n36549 fix number encoding in message codecs for the Web (cla: yes, framework)\n\n36553 Load assets during test from file system instead of manifest. (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-38", "text": "36556 Fix usage test to use local usage (cla: yes, tool)\n\n36560 [flutter_tools] Add some useful commands to the README.md (cla: yes, tool)\n\n36564 Make sure fx flutter attach can find devices (cla: yes, tool)\n\n36569 Some minor cleanup for flutter_tools (cla: yes, tool)\n\n36570 Some minor fixes to the tool_coverage tool (cla: yes, tool)\n\n36571 Some minor cleanup in devicelab (cla: yes, team)\n\n36579 Add gradient text docs (a: typography, cla: yes, framework)\n\n36585 Place build outputs under dart tool (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-39", "text": "36589 Update Localizations: added 24 new locales (reprise) (a: internationalization, cla: yes, f: cupertino, f: material design)\n\n36595 More resident runner tests (cla: yes, tool)\n\n36598 Expose functionality to compile dart to kernel for the VM (cla: yes, tool)\n\n36618 Revert \u201cAsyncSnapshot.data to throw if error or no data\u201d (cla: yes, framework)\n\n36654 Revert \u201cUse FlutterFeatures to configure web and desktop devices\u201d (cla: yes, team, tool)\n\n36679 add line-length to flutter format command line (cla: yes, tool)\n\n36690 Updating cirrus fingerprint script to include goldens version (a: tests, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-40", "text": "36695 Android visible password input type support (cla: yes, framework)\n\n36698 fixes iphone force press keyboard select crashes (cla: yes, framework)\n\n36699 Reland: use flutter features for web and desktop (cla: yes, team, tool)\n\n36717 Fix devicelab tests that did not enable web config. (cla: yes, team)\n\n36722 Skip flaky test windows (cla: yes, tool)\n\n36727 Add missing config to create (cla: yes, team, tool)\n\n36731 Revert \u201cAdd flutter build aar\u201d (cla: yes, team, tool)\n\n36732 Flutter build aar (a: build, cla: yes, team, tool, waiting for tree to go green)\n\n36768 add an error count field to the Flutter.Error event (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-41", "text": "36773 Expose build-dir config option (cla: yes, tool)\n\n36774 Parameterize CoverageCollector with a library name predicate (cla: yes, tool)\n\n36784 [flutter_tool] Improve Windows flutter clean error message (cla: yes, tool)\n\n36785 [flutter_tool] Clean up usage events and custom dimensions (cla: yes, tool)\n\n36787 Check for directory instead of path separator (cla: yes, tool)\n\n36793 Vend Flutter module App.framework as a local CocoaPod pod to be installed by a host app (a: existing-apps, cla: yes, t: xcode, team, tool, \u233a\u202c platform-ios)\n\n36805 Allow flavors and custom build types in host app (a: build, a: existing-apps, cla: yes, t: gradle, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-42", "text": "36832 Remove flaky check for analyzer message. (cla: yes, tool)\n\n36845 Improve Windows build failure message (cla: yes, tool, waiting for tree to go green)\n\n36851 Revert \u201c[Material] Implement TooltipTheme and Tooltip.textStyle, fix Tooltip debugLabel, update Tooltip defaults\u201d (cla: yes, f: material design, framework)\n\n36856 [Material] Implement TooltipTheme and Tooltip.textStyle, update Tooltip defaults (cla: yes, f: material design, framework, severe: API break, severe: new feature)\n\n36857 Ensure user-thrown errors have ErrorSummary nodes (cla: yes, framework)\n\n36860 Remove Chain terse parsing (cla: yes, tool)\n\n36866 Tests for flutter test [some_directory] (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-43", "text": "36867 Add reference to StrutStyle from TextStyle (cla: yes, framework)\n\n36874 Adjust phrasing of features (cla: yes, tool)\n\n36877 Revert \u201cDismiss modal with any button press\u201d (cla: yes, framework)\n\n36880 [Material] Create material Banner component (cla: yes, f: material design, framework)\n\n36884 Unbreak build_runner (cla: yes, team, tool)\n\n36885 Manual roll of flutter/engine@ef99738\u202672341ed (cla: yes, engine, tool)\n\n36886 Add annotation dependency to plugins (cla: yes, team, tool, waiting for tree to go green)\n\n36887 Fix thumb size calculation (cla: yes, f: cupertino, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-44", "text": "36893 Fix minor typos (cla: yes, framework)\n\n36895 Mark splash test flaky until proved stable. (cla: yes, team)\n\n36901 Run Gradle tests on Windows (a: build, cla: yes, team, tool)\n\n36949 Remove stdout related to settings_aar.gradle (a: tests, cla: yes, t: flutter driver, team)\n\n36955 Extract common PlatformView functionality: Painting and Semantics (a: platform-views, cla: yes, framework)\n\n36956 Redo: Modal dismissed by any button (cla: yes, framework, waiting for tree to go green)\n\n36963 Add margins to tooltips (cla: yes, f: material design, framework, severe: new feature)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-45", "text": "36964 Interactive size const (cla: yes, f: cupertino, f: material design, framework, severe: API break)\n\n36966 Roll back the AAR build experiment (cla: yes, tool)\n\n36969 devicelab: replace the FLUTTER_ENGINE environment variable with the new local engine flags (cla: yes, team)\n\n36970 Clarify showDuration and waitDuration API docs and test behavior (cla: yes, d: api docs, f: material design, framework)\n\n36974 Multiline Selection Menu Position Bug (a: text input, cla: yes, f: material design, framework)\n\n36987 Flutter assemble for macos take 2! (cla: yes, tool, \u2318\u202c platform-mac)\n\n36997 Added missing png\u2019s to demo splash screen project (was caused by global gitignore). (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-46", "text": "37026 Add support for the Kannada (kn) locale (a: internationalization, cla: yes, f: cupertino, f: material design, team)\n\n37027 Revert \u201cFix the first frame logic in tracing and driver\u201d (a: tests, cla: yes, d: examples, framework, team, team: gallery, tool)\n\n37030 Mark backdrop_filter_perf test nonflaky (cla: yes, team)\n\n37033 fix debug paint crash when axis direction inverted (cla: yes, framework, severe: crash)\n\n37036 Build number (part after +) is documented as optional, use entire app version if not present (cla: yes, tool)\n\n37037 [flutter_tool] Update Fuchsia SDK (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-47", "text": "37038 Update SnackBar to the latest Material specs. (cla: yes, f: material design, framework)\n\n37042 Fix selection menu not showing after clear (a: text input, cla: yes, framework)\n\n37043 Tests for Engine ensuring debug-mode apps are attached on iOS. (cla: yes, team, tool)\n\n37044 [flutter_tool] Make a couple file operations synchronous (cla: yes, tool)\n\n37048 use SizedBox instead of Container for building collapsed selection (a: text input, cla: yes, f: cupertino, framework)\n\n37049 Revert Optimize transformRect (cla: yes, framework, waiting for tree to go green)\n\n37055 Revert \u201cEnable selection by default for password text field and expos\u2026 (cla: yes, f: cupertino, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-48", "text": "37158 Fix Textfields in Semantics Debugger (a: accessibility, cla: yes, framework, waiting for tree to go green)\n\n37183 reland Enable selection by default for password text field and expose\u2026 (a: text input, cla: yes, customer: fun (g3), f: cupertino, f: material design)\n\n37186 [flutter_tool] Usage refactor cleanup (cla: yes, tool)\n\n37187 use FlutterError in MultiChildRenderObjectWidget (cla: yes, framework)\n\n37192 Reland \u201cFix the first frame logic in tracing and driver (#35297)\u201d (cla: yes, engine, framework)\n\n37194 [flutter_tool] More gracefully handle Android sdkmanager failure (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-49", "text": "37196 [flutter_tool] Catch ProcessException from \u2018adb devices\u2019 (cla: yes, tool)\n\n37198 [flutter_tool] Re-try sending the first crash report (cla: yes, tool)\n\n37205 add cmx for complex_layout (cla: yes, team)\n\n37206 Test that modules built as AAR contain the right assets and artifacts (a: build, cla: yes, team, waiting for tree to go green, \u25a3 platform-android)\n\n37207 Update complex_layout.cmx (cla: yes, team)\n\n37208 Roll flutter/engine@09f8bffb9\u202667319c00b (cla: yes)\n\n37210 do not strip symbols when building profile (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-50", "text": "37211 Don\u2019t enable scroll wheel when scrolling is off (a: desktop, cla: yes, customer: octopod, framework)\n\n37217 hide symbols from spotlight for App.framework (cla: yes, tool, waiting for tree to go green)\n\n37250 Removing Leftover Golden Test Skips (a: tests, cla: yes, framework)\n\n37254 Clamp Scaffold\u2019s max body height when extendBody is true (cla: yes, f: material design, framework, severe: crash)\n\n37259 [Material] Add support for hovered, pressed, focused, and selected text color on Chips. (cla: yes, f: material design, framework)\n\n37266 Change the value of kMaxUnsignedSMI for the Web (cla: yes, framework, severe: new feature, waiting for tree to go green, \u2638 platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-51", "text": "37269 [Material] FAB refactor - remove unnecessary IconTheme (cla: yes, f: material design, framework)\n\n37275 Optimize the transformRect and transformPoint methods in matrix_utils\u2026 (cla: yes, framework)\n\n37276 Make podhelper.rb a template to avoid passing in the module name (a: existing-apps, cla: yes, t: xcode, team, tool, \u233a\u202c platform-ios)\n\n37295 Revert \u201creland Enable selection by default for password text field and expose\u2026\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n37314 Update dartdoc to 28.4 (cla: yes, team)\n\n37319 resizeToAvoidBottomInset Cupertino without NavBar (cla: yes, f: cupertino, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-52", "text": "37322 Add comments to an Android Platform view gesture test case (a: platform-views, cla: yes, framework, severe: crash, waiting for tree to go green)\n\n37324 reland Enable selection by default for password text field and expose\u2026 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n37328 Fix some tests now that the isMultiline flag is added to values (a: accessibility, cla: yes, framework, waiting for tree to go green, \u2638 platform-web)\n\n37331 [flutter_tool] Add missing toString() (cla: yes, tool)\n\n37338 Update constructor APIs TooltipTheme, ToggleButtonsTheme, PopupMenuTheme (cla: yes, f: material design, framework, severe: API break)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-53", "text": "37341 hiding original hero after hero transition (a: animation, cla: yes, framework, severe: API break, severe: new feature)\n\n37342 Fix mouse region crash when using closures (a: desktop, cla: yes, framework, waiting for tree to go green)\n\n37344 Fix mouse region double render (a: desktop, cla: yes, framework, waiting for tree to go green)\n\n37345 [flutter_tool] Include the local timezone in analytics timestamp (cla: yes, tool)\n\n37351 fix errors caught by roll of macOS assemble (cla: yes, tool)\n\n37355 Added ThemeData.from() method to construct a Theme from a ColorScheme (cla: yes, f: material design, framework)\n\n37365 only build macOS kernel in debug mode (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-54", "text": "37378 Disable xcode indexing in CI via COMPILER_INDEX_STORE_ENABLE=NO argument (cla: yes, tool, waiting for customer response)\n\n37403 add ontap to textformfield (cla: yes, f: material design, framework)\n\n37405 Add .android/Flutter/flutter.iml to module template. (cla: yes, tool)\n\n37407 Remove multi-arch check in iOS builds (cla: yes, tool)\n\n37413 Revert \u201cRemove multi-arch check in iOS builds\u201d (cla: yes, engine, tool)\n\n37417 Nosuchmethod window (a: tests, cla: yes, framework)\n\n37422 [flutter_tool] Additional flutter manifest yaml validation (cla: yes, tool)\n\n37425 Support for macOS release mode (1 of 3) (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-55", "text": "37436 Hide text selection handle after entering text (cla: yes, f: material design, framework)\n\n37440 Print message when HttpException is thrown after running flutter run (cla: yes, tool, waiting for tree to go green)\n\n37442 Disable flaky test (a: tests, cla: yes, team)\n\n37445 Switch iOS gen_snapshot from multi-arch binary to multiple binaries (cla: yes, engine, tool)\n\n37449 If xcode_backend.sh script fails or substitute variables are missing, fail the host Xcode build (a: existing-apps, cla: yes, t: xcode, team, tool)\n\n37457 Find the app bundle when the flavor contains underscores (a: build, cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-56", "text": "37479 Remove bogus code in ContainerParentDataMixin.detach (cla: yes, framework, waiting for tree to go green)\n\n37489 Moved the default BinaryMessenger instance to ServicesBinding (a: tests, cla: yes, customer: espresso, d: examples, framework, severe: API break, t: flutter driver, team)\n\n37492 Drawer edge drag width improvements (cla: yes, f: material design, framework, severe: new feature)\n\n37497 Extract common PlatformView functionality: Gesture and PointerEvent (cla: yes, framework)\n\n37500 Avoid killing Flutter tool process (#37471) (cla: yes, tool)\n\n37503 Quickly fix start up tests (cla: yes, framework)\n\n37509 Use macOS ephemeral directory for Pod env script (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-57", "text": "37512 Enable track widget creation on debug builds (cla: yes, tool)\n\n37514 [flutter_tool] Remove unintended analytics screen send (cla: yes, tool)\n\n37515 Upstream web support for IterableProperty (cla: yes, framework, \u2638 platform-web)\n\n37516 Kill stale TODO (a: tests, cla: yes, framework, team)\n\n37521 have xcodeSelectPath also catch ArgumentError (cla: yes, tool)\n\n37524 Ensure that tests remove pointers by using addTearDown (a: tests, cla: yes, framework, waiting for tree to go green)\n\n37556 [Material] Make RawChip.selected non-nullable. (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-58", "text": "37595 Closes #37593 Add flutter_export_environment.sh to gitignore (cla: yes, tool, waiting for tree to go green)\n\n37624 Diagrams for API docs rank 10-20 in most views (cla: yes, d: api docs, d: examples, f: material design, framework, from: study, waiting for tree to go green)\n\n37631 [Material] Create demo for material banner (cla: yes, d: examples, f: material design, team, team: gallery)\n\n37634 [web][upstream] Update diagnostics to support web platform tests (cla: yes, f: material design, framework)\n\n37636 Add CheckboxListTile checkColor (cla: yes, f: material design, framework)\n\n37637 don\u2019t call Platform.operatingSystem in RenderView diagnostics (cla: yes, framework, \u2638 platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-59", "text": "37638 [web][upstream] Fix debugPrintStack for web platform (cla: yes, framework, \u2638 platform-web)\n\n37647 Change priority of gen_snapshot search paths (cla: yes, tool)\n\n37649 Revert \u201cIntegrate dwds into flutter tool for web support\u201d (a: accessibility, cla: yes, d: examples, team, team: gallery)\n\n37650 Reland Integrate dwds into flutter tool for web support (a: accessibility, cla: yes, d: examples, team, team: gallery)\n\n37652 Change RenderObject.getTransformTo to include ancestor. (cla: yes, framework, severe: API break)\n\n37654 Add missing library to flutter tools BUILD.gn (cla: yes, tool)\n\n37658 fix windows path for dwds/web builds (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-60", "text": "37661 flutter update-packages \u2013force-upgrade (a: accessibility, a: tests, cla: yes, d: examples, framework, team, team: gallery, tool)\n\n37664 Partial macOS assemble revert (cla: yes, tool)\n\n37703 PlatformViewLink, handling creation of the PlatformViewSurface and dispose PlatformViewController (a: platform-views, cla: yes, framework)\n\n37712 [web][upstream] Optimize InactiveElements deactivation (cla: yes, framework, \u2638 platform-web)\n\n37714 remove unused script (cla: yes, team)\n\n37715 Fix markdown link format (cla: yes, f: material design, framework)\n\n37718 Adding physicalDepth to MediaQueryData & TestWindow (cla: yes, customer: fuchsia, framework, severe: customer critical, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-61", "text": "37724 iOS 13 scrollbar vibration (cla: yes, f: cupertino, framework)\n\n37730 Revert \u201cremove unused script\u201d (cla: yes, team)\n\n37731 Add metadata to indicate if the host app contains a Flutter module (cla: yes, team, tool)\n\n37733 Support macOS Catalina-style signing certificate names (cla: yes, tool)\n\n37735 Remove unused no-build flag from the flutter run command (cla: yes, tool)\n\n37738 Use relative paths when installing module pods (a: existing-apps, cla: yes, tool, \u233a\u202c platform-ios)\n\n37740 Disable gem documentation generation on Cirrus (cla: yes, team)\n\n37743 Handle thrown maps and rejects from fe server (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-62", "text": "37752 Remove dead flag gradle-dir in flutter config (cla: yes, tool)\n\n37760 Don\u2019t mark system_debug_ios as flaky. (cla: yes, team)\n\n37790 Doc: Image.memory only accepts compressed format (cla: yes, framework, waiting for tree to go green)\n\n37792 Disable the progress bar when downloading the Dart SDK via Invoke-WebRequest (cla: yes, tool)\n\n37793 Add equals and hashCode to Tween (a: animation, cla: yes, framework, waiting for tree to go green)\n\n37801 Fix TextField cursor color documentation (cla: yes, f: material design, framework)\n\n37806 Add COMPILER_INDEX_STORE_ENABLE=NO to macOS build and tests (a: tests, cla: yes, t: xcode, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-63", "text": "37809 Add autofocus parameter to widgets which use Focus widget internally (cla: yes, f: cupertino, f: material design, framework)\n\n37811 Add flutter_export_environment.sh to the framework tree gitignore (cla: yes, team)\n\n37812 [web][upstream] Don\u2019t register exit/saveCompilationTrace for web platform since they are not available (cla: yes, framework, \u2638 platform-web)\n\n37815 Restructure resident web runner usage to avoid SDK users that don\u2019t support dwds (cla: yes, tool)\n\n37816 update dependencies; add a Web smoke test (a: accessibility, a: tests, cla: yes, d: examples, framework, team, team: gallery)\n\n37825 Automatic focus highlight mode for FocusManager (CQ+1, cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-64", "text": "37828 have android_semantics_testing use adb from ENV provided android sdk (a: accessibility, cla: yes, team)\n\n37856 Remove references to solo flag in flutter test (a: tests, cla: yes, d: api docs, framework)\n\n37863 Expose the timeline event names so they can be used in other systems that do tracing (cla: yes, tool)\n\n37870 remove Header flag from BottomNavigationBar items (cla: yes, f: material design, framework, waiting for tree to go green)\n\n37871 Catch failure to create directory in cache (cla: yes, tool)\n\n37872 Unmark devicelab tests as flaky that are no longer flaky (cla: yes, team)\n\n37877 Adds DefaultTextStyle ancestor to Tooltip Overlay (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-65", "text": "37880 reduce mac workload (cla: yes)\n\n37881 Remove no-longer-needed scripts (cla: yes, team, waiting for tree to go green)\n\n37882 Add dense property to AboutListTile (cla: yes, f: material design, framework)\n\n37891 Focus debug (a: desktop, cla: yes, framework)\n\n37895 Revert \u201cAdd equals and hashCode to Tween\u201d (cla: yes, framework)\n\n37900 Listen to ExtensionEvent instead of TimelineEvent (cla: yes, framework, tool)\n\n37904 test tool scheduling (cla: yes, team)\n\n37906 Always install the ephemeral engine copy instead of fetching from CocoaPods specs (a: existing-apps, cla: yes, team, tool, \u233a\u202c platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-66", "text": "37938 Revert \u201cAdding physicalDepth to MediaQueryData & TestWindow\u201d (a: tests, cla: yes, framework, waiting for tree to go green)\n\n37940 skip docs shard for changes that don\u2019t include packages with docs (cla: yes, team, tool)\n\n37941 Skip widget tests on non framework change (cla: yes, team)\n\n37955 Update shader warm-up for recent Skia changes (cla: yes, framework, severe: performance, severe: regression)\n\n37958 Catch FormatException caused by bad simctl output (cla: yes, tool)\n\n37964 Update documentation for bottom sheets to accurately reflect usage (cla: yes, f: material design, framework)\n\n37966 Remove ephemeral directories during flutter clean (a: existing-apps, cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-67", "text": "37971 Update dependencies (a: accessibility, cla: yes, d: examples, team, team: gallery)\n\n37981 Give _runFlutterTest the ability to validate command output (cla: yes, team)\n\n37983 Revert \u201cMoved the default BinaryMessenger instance to ServicesBinding\u2026 (a: accessibility, a: tests, cla: yes, f: cupertino, f: material design, framework, team)\n\n37984 Fix some typos in flutter/dev/bots/README.md (cla: yes, team)\n\n37994 Remove no-constant-update-2018, the underlying issue has been resolved. (cla: yes, tool)\n\n38101 Catch filesystem exception from flutter create (cla: yes, tool)\n\n38102 Fix type error hidden by implicit downcasts (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-68", "text": "38296 use common emulator/device list (cla: yes, t: flutter driver, tool, waiting for tree to go green)\n\n38325 refactor flutter upgrade to be 2 part, with the second part re-entrant (cla: yes, tool)\n\n38326 Re-enabling post-submit gold tests on mac (a: tests, cla: yes, framework)\n\n38339 [flutter_tool] Flip create language defaults to swift and kotlin (cla: yes, tool)\n\n38342 remove bsdiff from BUILD.gn (cla: yes, tool)\n\n38348 Analyzer fix that wasn\u2019t caught in the PR originally (cla: yes, d: examples, f: material design, team, team: gallery)\n\n38353 [flutter_tool] Observatory connection error handling cleanup (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-69", "text": "38441 Fix getOffsetToReveal for growthDirection reversed and AxisDirection down or right (cla: yes, framework)\n\n38462 Revert \u201cRoll engine ff49ca1c6e5b..7dfdfc6faeb6 (52 commits)\u201d (cla: yes, engine)\n\n38463 Do not construct arguments to _focusDebug when running in non-debug modes (cla: yes, framework)\n\n38467 [Material] Add splashColor to FAB and FAB ThemeData (cla: yes, f: material design, framework)\n\n38472 [flutter_tool] Fix bug in manifest yaml validation (cla: yes, tool)\n\n38486 Catch errors thrown into the Zone by json_rpc (cla: yes, tool)\n\n38491 Update CONTRIBUTING.md (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-70", "text": "38494 Navigator change backup (a: tests, cla: yes, framework, \u2638 platform-web)\n\n38495 Roll engine ff49ca1c6e5b..be4c8338a6ab (61 commits) (cla: yes, engine)\n\n38497 handle unexpected exit from frontend server (cla: yes, tool)\n\n38499 Update build web compilers and configure libraries (cla: yes, tool)\n\n38546 Re-land \u2018Adding physicalDepth to MediaQueryData & TestWindow\u2019 (a: tests, cla: yes, customer: fuchsia, framework, severe: customer critical)\n\n38558 Fix typos (and a few errors) in the API docs. (cla: yes, framework)\n\n38564 Updating code owners for golden file changes (a: tests, cla: yes, framework, team, will affect goldens)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-71", "text": "38567 Add smoke tests to test every commit on a Catalina host. (cla: yes, team)\n\n38575 fix rpc exception for real (cla: yes, tool)\n\n38579 Fix a smoke test. (cla: yes, team)\n\n38586 Don\u2019t reload if compilation has errors (cla: yes, tool)\n\n38587 Improve bitcode check (cla: yes, t: xcode, tool, \u233a\u202c platform-ios)\n\n38593 Fix text scale factor for non-content components of Cupertino scaffolds (a: fidelity, cla: yes, f: cupertino, f: material design, framework)\n\n38603 Fix up iOS Add to App tests (a: existing-apps, a: tests, cla: yes, team, \u233a\u202c platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-72", "text": "38621 [Material] Create theme for Dividers to enable customization of thickness (cla: yes, f: material design, framework)\n\n38629 Handle case of a connected unpaired iOS device (cla: yes, tool)\n\n38635 Toggle buttons docs (cla: yes, d: api docs, f: material design, framework)\n\n38636 Adds the arrowColor option to UserAccountsDrawerHeader (#38608) (cla: yes, f: material design, framework)\n\n38637 [flutter_tool] Throw tool exit on malformed storage url override (cla: yes, tool)\n\n38639 PlatformViewLink. cached surface should be a Widget type (a: platform-views, cla: yes, framework)\n\n38645 Rename iOS arch for macOS release mode (macOS release mode 2 of 3) (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-73", "text": "38651 Update the macOS Podfile template platform version (cla: yes, tool)\n\n38652 Kill dead code (cla: yes, team, tool)\n\n38658 Roll back engine to f8e7453f11067b5801a4484283592977d18be242 (cla: yes, engine)\n\n38662 Change from using defaults to plutil for Plist parsing (cla: yes, tool)\n\n38686 Rename patent file (cla: yes)\n\n38704 Adds canRequestFocus toggle to FocusNode (cla: yes, framework)\n\n38708 Fix Catalina hot reload test by specifying the platform is iOS. (cla: no, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-74", "text": "38710 PlatformViewLink: Rename CreatePlatformViewController to CreatePlatformViewCallback (a: platform-views, cla: yes, framework)\n\n38719 Fix stages of some iOS devicelab tests (cla: yes, team)\n\nPRs closed in this release of flutter/engine\n\nFrom Fri Jun 21 22:31:55 2019 -0400 to Sun Aug 18 12:22:00 2019 -0700\n\n9041 TextStyle.height property as a multiple of font size instead of multiple of ascent+descent+leading. (affects: text input, cla: yes, prod: API break)\n\n9075 IOS Platform view transform/clipping (cla: yes)\n\n9089 Wire up custom event loop interop for the GLFW embedder. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-75", "text": "9206 Android Embedding Refactor PR31: Integrate platform views with the new embedding and the plugin shim. (cla: yes)\n\n9329 Fixed memory leak by way of accidental retain on implicit self (cla: yes)\n\n9341 some drive-by docs while I was reading the embedding classes (cla: yes)\n\n9360 Simplify loading of app bundles on Android (cla: yes)\n\n9403 Remove variants of ParagraphBuilder::AddText that are not used within the engine (cla: yes)\n\n9419 Has a binary messenger (cla: yes, prod: API break)\n\n9423 Don\u2019t hang to a platform view\u2019s input connection after it\u2019s disposed (cla: yes)\n\n9424 Send timings of the first frame without batching (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-76", "text": "9428 Update README.md for consistency with framework (cla: yes)\n\n9431 Generate weak pointers only in the platform thread (cla: yes)\n\n9436 Add the functionality to merge and unmerge MessageLoopTaskQueues (cla: yes)\n\n9439 Eliminate unused import in FlutterView (cla: yes)\n\n9446 Revert \u201cRoll fuchsia/sdk/core/mac-amd64 from Cx51F\u2026 to e8sS_\u2026\u201d (cla: yes)\n\n9449 Revert \u201cRoll fuchsia/sdk/core/linux-amd64 from udf6w\u2026 to jQ8aw\u2026\u201d (cla: yes)\n\n9450 Revert \u201cRoll fuchsia/sdk/core/mac-amd64 from Cx51F\u2026 to w-3t4\u2026\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-77", "text": "9452 Convert RRect.scaleRadii to public method (affects: framework, cla: yes)\n\n9456 Made sure that the run_tests script returns the right error code. (cla: yes)\n\n9458 Test cleanup geometry_test.dart (affects: tests, cla: yes)\n\n9459 Remove unused/unimplemented shell constructor (cla: yes)\n\n9460 Fixed logLevel filter bug so that filter now works as expected. (cla: yes)\n\n9461 Adds API for retaining intermediate engine layers (cla: yes)\n\n9462 Reland Update harfbuzz to 2.5.2 (cla: yes)\n\n9463 Removed unused imports in new embedding. (cla: yes)\n\n9464 Added shebangs to ios unit test scripts. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-78", "text": "9466 Re-enable the Wuffs GIF decoder (cla: yes)\n\n9467 ios-unit-tests: Forgot a usage of a variable in our script. (cla: yes)\n\n9468 Manually draw remainder curve for wavy decorations (cla: yes)\n\n9469 ios-unit-tests: Fixed ocmock system header search paths. (cla: yes)\n\n9471 ios-unit-tests: Started using rsync instead of cp -R to copy frameworks. (cla: yes)\n\n9476 fix NPE when a touch event is sent to an unknown Android platform view (cla: yes)\n\n9478 iOS PlatformView clip path (cla: yes)\n\n9480 Revert \u201cIOS Platform view transform/clipping (#9075)\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-79", "text": "9482 Re-enable embedder_unittests. (cla: yes)\n\n9483 Reland \u201cIOS Platform view transform/clipping (#9075)\u201d and fix the breakage. (cla: yes)\n\n9485 Add \u2013observatory-host switch (cla: yes)\n\n9486 Rework image & texture management to use concurrent message queues. (cla: yes)\n\n9489 Handle ambiguous directionality of final trailing whitespace in mixed bidi text (cla: yes)\n\n9490 fix a bug where the platform view\u2019s transform is not reset before set frame (cla: yes)\n\n9491 Purge caches on low memory on iOS (cla: yes)\n\n9493 Run benchmarks on try jobs. (cla: yes)\n\n9495 fix build breakage on PlatformViews.mm (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-80", "text": "9495 fix build breakage on PlatformViews.mm (cla: yes)\n\n9501 [android] External textures must be rescaled to fill the canvas (cla: yes)\n\n9503 Improve caching limits for Skia (cla: yes)\n\n9506 Synchronize main thread and gpu thread for first render frame (cla: yes)\n\n9507 Revert Skia version to d8f79a27b06b5bce7a27f89ce2d43d39f8c058dc (cla: yes)\n\n9508 Support image filter on paint (cla: yes)\n\n9509 Roll Fuchsia SDK to latest (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-81", "text": "9509 Roll Fuchsia SDK to latest (cla: yes)\n\n9518 Bump dart_resource_rev to f8e37558a1c4f54550aa463b88a6a831e3e33cd6 (cla: yes)\n\n9525 Android Embedding Refactor PR36: Add splash screen support. (cla: yes)\n\n9532 fix FlutterOverlayView doesn\u2019t remove from superview in some cases (cla: yes)\n\n9546 [all] add fuchsia.{net.NameLookup,posix.socket.Provider} (cla: yes)\n\n9556 Minimal integration with the Skia text shaper module (cla: yes)\n\n9559 Roll src/third_party/dart b37aa3b036\u20261eb113ba27 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-82", "text": "9561 libtxt: fix reference counting of SkFontStyleSets held by font asset providers (cla: yes)\n\n9562 Switched preprocessor logic for exporting symbols for testing. (cla: yes)\n\n9581 Revert \u201cAvoid a full screen overlay within virtual displays\u201d (cla: yes)\n\n9584 Revert \u201c Roll src/third_party/dart b37aa3b036\u20261eb113ba27\u201d (cla: yes)\n\n9585 Fix a race in the embedder accessibility unit test (cla: yes)\n\n9588 Roll src/third_party/dart b37aa3b036\u20260abff7b2bb (cla: yes)\n\n9589 Fixes a plugin overwrite bug in the plugin shim system. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-83", "text": "9590 Apply patches that have landed in topaz since we ported the runners to the engine repo (cla: yes)\n\n9591 Document various classes in //flutter/shell/common. (cla: yes)\n\n9593 [trace clients] Remove fuchsia.tracelink.Registry (cla: yes)\n\n9608 Disable failing Mutators tests (cla: yes)\n\n9613 Fix uninitialized variables and put tests in flutter namespace. (cla: yes)\n\n9632 Added Doxyfile. (cla: yes)\n\n9633 Cherry-pick fix for flutter/flutter#35291 (cla: yes)\n\n9634 Roll Dart to 67ab3be10d35d994641da167cc806f20a7ffa679 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-84", "text": "9636 Added shebangs to ios unit test scripts. (#9464) (cla: yes)\n\n9637 Revert \u201cRoll Dart to 67ab3be10d35d994641da167cc806f20a7ffa679 (#9634)\u201d (cla: yes)\n\n9638 Reland: Roll Dart to 67ab3be10d35d994641da167cc806f20a7ffa679 (cla: yes)\n\n9640 make EmbeddedViewParams a unique ptr (cla: yes)\n\n9641 Let pushColorFilter accept all types of ColorFilters (cla: yes)\n\n9642 Fix warning about settings unavailable GN arg build_glfw_shell (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-85", "text": "9649 Roll buildroot to c5a493b25. (cla: yes)\n\n9651 Move the mutators stack handling to preroll (cla: yes)\n\n9652 Pipeline allows continuations that can produce to front (cla: yes)\n\n9653 External view embedder can tell if embedded views have mutated (cla: yes)\n\n9654 Begin separating macOS engine from view controller (cla: yes)\n\n9655 Allow embedders to add callbacks for responses to platform messages from the framework. (cla: yes)\n\n9660 ExternalViewEmbedder can CancelFrame after pre-roll (cla: yes)\n\n9661 Raster now returns an enum rather than boolean (cla: yes)\n\n9663 Mutators Stack refactoring (cla: yes)\n\n9667 iOS platform view opacity (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-86", "text": "9667 iOS platform view opacity (cla: yes)\n\n9668 Refactor ColorFilter to have a native wrapper (cla: yes)\n\n9669 Improve window documentation (cla: yes)\n\n9670 Roll src/third_party/dart 67ab3be10d\u202643891316ca (cla: yes)\n\n9672 Add FLEDartProject for macOS embedding (cla: yes)\n\n9673 Revert \u201c Roll src/third_party/dart 67ab3be10d\u202643891316ca\u201d (cla: yes)\n\n9675 Roll src/third_party/dart 67ab3be10d\u2026b5aeaa6796 (cla: yes)\n\n9685 fix Picture.toImage return type check and api conform test. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-87", "text": "9698 Ensure that platform messages without response handles can be dispatched. (cla: yes)\n\n9707 Revert \u201cRevert \u201cUse track-widget-creation transformer included in the\u2026 (cla: yes)\n\n9708 Roll src/third_party/dart b5aeaa6796\u2026966038ef58 (cla: yes)\n\n9711 Revert \u201cRoll src/third_party/dart b5aeaa6796\u2026966038ef58\u201d (cla: yes)\n\n9713 Explain why OpacityLayer has an offset field (cla: yes)\n\n9716 Roll src/third_party/dart b5aeaa6796..06c3d7ad3a (44 commits) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-88", "text": "9717 Fixed logLevel filter bug so that filter now works as expected. (#9460) (cla: yes)\n\n9721 Add comments to differentiate two cache paths (cla: yes)\n\n9722 Forwards iOS dark mode trait to the Flutter framework (#34441). (cla: yes)\n\n9723 Roll src/third_party/dart 06c3d7ad3a..7acecda2cc (12 commits) (cla: yes)\n\n9724 Revert \u201cRoll src/third_party/dart 06c3d7ad3a..7acecda2cc (12 commits)\u201d)\n\n9725 Make the license script compatible with recently changed Dart I/O stream APIs (cla: yes)\n\n9727 Add hooks for InputConnection lock and unlocking (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-89", "text": "9728 Roll src/third_party/dart 06c3d7ad3a\u202609fc76bc51 (cla: yes)\n\n9730 Fix Fuchsia build. (cla: yes)\n\n9734 Fix backspace crash on Chinese devices (cla: yes)\n\n9736 Build Fuchsia as part of CI presumit (cla: yes)\n\n9737 Use libc++ variant of string view and remove the FML variant. (cla: yes)\n\n9740 Revert \u201cImprove caching limits for Skia\u201d (cla: yes)\n\n9741 Make FLEViewController\u2019s view an internal detail (cla: yes)\n\n9745 Fix windows test by not attempting to open a directory as a file. (cla: yes)\n\n9746 Make all shell unit tests use the OpenGL rasterizer. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-90", "text": "9747 Remove get engine (cla: yes)\n\n9750 FLEViewController/Engine API changes (cla: yes)\n\n9758 Include SkParagraph headers only when the enable-skshaper flag is on (cla: yes)\n\n9762 Fall back to a fully qualified path to libapp.so if the library can not be loaded by name (cla: yes)\n\n9767 Un-deprecated FlutterViewController\u2019s binaryMessenger. (cla: yes)\n\n9769 Document //flutter/shell/common/engine. (cla: yes)\n\n9772 fix objcdoc generation (cla: yes)\n\n9781 SendPlatformMessage allow null message value (cla: yes)\n\n9787 Roll src/third_party/dart 09fc76bc51..24725a8559 (43 commits) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-91", "text": "9789 fix ColorFilter.matrix constness (cla: yes)\n\n9791 Roll Wuffs and buildroot (cla: yes)\n\n9792 Update flutter_web to latest (cla: yes)\n\n9793 Fix typo in PlaceholderAlignment docs (cla: yes)\n\n9797 Remove breaking asserts (cla: yes)\n\n9799 Update buildroot to c4df4a7b to pull in MSVC 2017 Update 9 on Windows. (cla: yes)\n\n9808 Document FontFeature class (cla: yes)\n\n9809 Document //flutter/shell/common/rasterizer (cla: yes)\n\n9812 Roll src/third_party/dart 24725a8559..28f95fcd24 (32 commits) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-92", "text": "9813 Made Picture::toImage happen on the IO thread with no need for an onscreen surface. (cla: yes)\n\n9815 Made the persistent cache\u2019s directory a const pointer. (cla: yes)\n\n9816 Only release the image data in the unit-test once Skia has accepted ownership of it. (cla: yes)\n\n9817 Revert \u201cRoll src/third_party/dart 24725a8559..28f95fcd24 (32 commits)\u201d (cla: yes)\n\n9818 Convert run_tests to python, allow running on Mac/Windows and allow filters for tests. (cla: yes)\n\n9819 Allow for dynamic thread merging on IOS for embedded view mutations (cla: yes)\n\n9823 Roll buildroot to support bitcode enabled builds for iOS (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-93", "text": "9825 In a single frame codec, release the encoded image buffer after giving it to the decoder (cla: yes)\n\n9826 Roll src/third_party/dart 24725a8559..cbaf890f88 (33 commits) (cla: yes)\n\n9828 Make the virtual display\u2019s window translucent (cla: yes)\n\n9829 Revert \u201cRoll src/third_party/dart 24725a8559..cbaf890f88 (33 commits)\u201d (cla: yes)\n\n9835 [Windows] Alternative Windows shell platform implementation (affects: desktop, cla: yes, waiting for tree to go green)\n\n9847 Started adding the engine hash to frameworks\u2019 Info.plist. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-94", "text": "9849 Preserve the alpha for VD content by setting a transparent background. (cla: yes)\n\n9850 Add multi-line flag to semantics (cla: yes)\n\n9851 Add a macro for prefixing embedder.h symbols (cla: yes)\n\n9852 Selectively enable tests that work on Windows and file issues for ones that don\u2019t. (cla: yes)\n\n9855 Fix missing assignment to _allowHeadlessExecution (cla: yes)\n\n9856 Disable Fuchsia Debug & Release presubmits and only attempt the Profile unopt variant. (cla: yes)\n\n9857 Fix fuchsia license detection (cla: yes)\n\n9859 Fix justify for RTL paragraphs. (cla: yes, waiting for tree to go green)\n\n9866 Update buildroot to pick up Fuchsia artifact roller. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-95", "text": "9867 Fixed error in generated xml Info.plist. (cla: yes)\n\n9873 Add clang version to Info.plist (cla: yes)\n\n9875 Simplify buildtools (cla: yes)\n\n9883 Roll src/third_party/dart 24725a8559..2b3336b51e (108 commits) (cla: yes)\n\n9890 Log dlopen errors only in debug mode (cla: yes)\n\n9893 Removed logic from FlutterAppDelegate into FlutterPluginAppLifeCycleDelegate (cla: yes)\n\n9894 Add the isMultiline semantics flag to values (cla: yes)\n\n9895 Android Embedding PR37: Separated FlutterActivity and FlutterFragment via FlutterActivityAndFragmentDelegate (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-96", "text": "9896 Capture stderr for ninja command (cla: yes)\n\n9898 v1.7.8 hotfixes (cla: yes)\n\n9901 Handle decompressed images in InstantiateImageCodec (cla: yes)\n\n9903 Revert to using fml::StringView instead of std::string_view (cla: yes)\n\n9905 Respect EXIF information while decompressing images. (cla: yes)\n\n9906 Update libcxx & libcxxabi to HEAD in prep for compiler upgrade. (cla: yes)\n\n9909 Roll src/third_party/dart 6bf1f8e280..63120303a7 (4 commits) (cla: yes)\n\n9919 Removed unused method. (cla: yes)\n\n9920 Fix caching of Locale.toString (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-97", "text": "9920 Fix caching of Locale.toString (cla: yes)\n\n9922 Split out lifecycle protocol (cla: yes)\n\n9923 Fix failure of the onReportTimings window hook test (cla: yes)\n\n9924 Don\u2019t try to use unset assets_dir setting (cla: yes)\n\n9925 Fix the geometry test to reflect that OffsetBase comparison operators are a partial ordering (cla: yes)\n\n9927 Update Buildroot Version (cla: yes)\n\n9929 Update the exception thrown for invalid data in the codec test (cla: yes)\n\n9931 Fix reentrancy handling in SingleFrameCodec (cla: yes)\n\n9932 Exit flutter_tester with an error code on an unhandled exception (cla: yes)\n\n9933 Build fuchsia artifacts from the engine (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-98", "text": "9933 Build fuchsia artifacts from the engine (cla: yes)\n\n9934 Updates to the engine test runner script (cla: yes)\n\n9935 Fix backspace crash on Chinese devices (#9734) (cla: yes)\n\n9936 Move development.key from buildroot (cla: yes)\n\n9937 [platform view] do not make clipping view and interceptor view clipToBounds (cla: yes)\n\n9938 Removed PlatformViewsController if-statements from TextInputPlugin (#34286). (cla: yes)\n\n9939 Added hasRenderedFirstFrame() to old FlutterView for Espresso (#36211). (cla: yes)\n\n9948 [glfw] Enables replies on binary messenger in glfw embedder (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-99", "text": "9951 Roll src/third_party/dart 63120303a7\u2026a089199b93 (cla: yes)\n\n9952 ios: Fixed the callback for the first frame so that it isn\u2019t predicated on having a splash screen. (cla: yes)\n\n9953 [macos] Add reply to binary messenger (cla: yes)\n\n9954 Add working Robolectric tests (cla: yes)\n\n9958 Clean up cirrus.yml file a little (cla: yes)\n\n9959 Update Dart engine tests to check for assertion failures only when running in debug mode (cla: yes)\n\n9961 Fix return type of assert function in gradient_test (cla: yes)\n\n9977 Fix flutter/flutter #34791 (cla: yes, platform-android)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-100", "text": "9987 Update GN to git_revision:152c5144ceed9592c20f0c8fd55769646077569b (cla: yes)\n\n9998 [luci] Reference the right fuchsia CIPD and upload only once (cla: yes)\n\n9999 Add support for Android\u2019s visible password input type (affects: text input, cla: yes)\n\n10001 Roll src/third_party/dart a089199b93..fedd74669a (8 commits) (cla: yes)\n\n10003 Declare a copy of the enable_bitcode flag within the Flutter build scripts for use in Fuchsia builds (cla: yes)\n\n10004 [fuchsia] Use GatherArtifacts to create the requisite dir structure (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-101", "text": "10007 Embedding testing app (cla: yes)\n\n10009 [macos] Revert check on FlutterCodecs and refactor message function] (cla: yes)\n\n10010 Use simarm_x64 when targeting arm (cla: yes)\n\n10012 Undelete used method (cla: yes)\n\n10021 Added a DartExecutor API for querying # of pending channel callbacks (cla: yes)\n\n10056 Update .cirrus.yml (cla: yes)\n\n10063 Track clusters and return cluster boundaries in getGlyphPositionForCoordinates (emoji fix) (affects: text input, cla: yes, crash)\n\n10064 Disable DartLifecycleTest::ShuttingDownTheVMShutsDownAllIsolates in runtime_unittests. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-102", "text": "10065 test scenario_app on CI (cla: yes)\n\n10066 Roll src/third_party/dart fedd74669a..9c148623c5 (70 commits) (cla: yes)\n\n10068 Fixed memory leak with engine registrars. (cla: yes)\n\n10069 Enable consts from environment in DDK for flutter_web (cla: yes)\n\n10073 Basic structure for flutter_jit_runner far (cla: yes)\n\n10074 Change ParagraphBuilder to replace the parent style\u2019s font families with the child style\u2019s font families (cla: yes)\n\n10075 Change flutter runner target for LUCI (cla: yes)\n\n10078 One more luci fix (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-103", "text": "10078 One more luci fix (cla: yes)\n\n10081 [fuchsia] Add support for libs in packages (cla: yes)\n\n10082 [fuchsia] Add sysroot and clang libs to package (cla: yes)\n\n10085 [fuchsia] Use the new far package model (cla: yes)\n\n10087 [fuchsia] copy over the cmx file (cla: yes)\n\n10096 Roll src/third_party/skia 3ae30cc2e6e0..1cd1ed8976c4 (1 commits) (autoroller: dryrun, cla: yes)\n\n10097 Roll src/third_party/skia 1cd1ed8976c4..f564f1515bde (1 commits) (autoroller: dryrun, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-104", "text": "10098 Roll src/third_party/dart 9c148623c5..82f657d7cb (25 commits) (cla: yes)\n\n10100 Roll src/third_party/skia f564f1515bde..fdf4bfe6d389 (1 commits) (autoroller: dryrun, cla: yes)\n\n10101 Roll src/third_party/skia fdf4bfe6d389..b3956dc6ba6a (1 commits) (autoroller: dryrun, cla: yes)\n\n10102 [fuchsia] Use manifest file to better replicate the existing build (cla: yes)\n\n10109 Cache font family lookups that fail to obtain a font collection (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-105", "text": "10114 Roll src/third_party/dart 82f657d7cb..0c97c31b6e (7 commits) (cla: yes)\n\n10122 [fuchsia] Use the patched sdk to generate the flutter jit runner far (cla: yes)\n\n10127 Track detailed LibTxt metrics (cla: yes)\n\n10128 Started linking the test targets against Flutter. (cla: yes)\n\n10139 Roll src/third_party/dart 0c97c31b6e..a2aec5eb06 (22 commits) (cla: yes)\n\n10140 Revert \u201c[fuchsia] Use the patched sdk to generate the flutter jit run\u2026 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-106", "text": "10141 Revert \u201c[macos] Revert check on FlutterCodecs and refactor message fu\u2026 (cla: yes)\n\n10143 Disable windows tests (cla: yes)\n\n10144 [fuchsia] Push CMX to fars and add product mode support (cla: yes)\n\n10145 Added integration test that tests that the first frame callback is called (cla: yes)\n\n10146 Revert \u201cDisable windows tests\u201d (cla: yes)\n\n10150 [fuchsia] Remove extraneous ShapeNodes (cla: yes)\n\n10151 [fucshia] fix name to reflect the cmx file (cla: yes)\n\n10153 Add gclient_gn_args_file to DEPS (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-107", "text": "10155 src/third_party/dart a2aec5eb06\u202686dba81dec (cla: yes)\n\n10160 Roll src/third_party/dart 86dba81dec..0ca1582afd (2 commits) (cla: yes)\n\n10171 [fuchsia] Add support for aot mode in flutter runner (cla: yes)\n\n10172 [dart_runner] Rename dart to dart runner (cla: yes)\n\n10176 Add suggested Java changes from flutter roll (cla: yes, platform-android)\n\n10178 Removed unnecessary call to find the App.framework. (cla: yes)\n\n10179 [dart_runner] dart jit runner and dart jit product runner (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-108", "text": "10183 [fuchsia] Uncomment publish to CIPD (cla: yes)\n\n10185 Add better CIPD docs. (cla: yes)\n\n10186 Ensure debug-mode apps are always attached on iOS. (cla: yes)\n\n10188 [fuchsia] Artifacts now contain gen_snapshot and gen_snapshot_product (cla: yes)\n\n10189 [macos] Reland function refactor (cla: yes)\n\n10195 Allow embedder controlled composition of Flutter layers. (cla: yes)\n\n10226 Roll src/third_party/dart 0ca1582afd..1e43d65d4a (50 commits) (cla: yes)\n\n10235 Deprecate FlutterView#enableTransparentBackground (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-109", "text": "10240 [fuchsia] Update buildroot to support arm64 (cla: yes)\n\n10242 Remove Dead Scenic Clipping Code Path. (cla: yes)\n\n10246 [fuchsia] Start building dart_patched_sdk (cla: yes)\n\n10250 Android Embedding Refactor 38: Removed AssetManager from DartEntrypoint. (cla: yes)\n\n10260 [fuchsia] Add arm64 builds for flutter and dart runner (cla: yes)\n\n10261 [fuchsia] Bundle architecture specific gen_snapshots (cla: yes)\n\n10265 [dart-roll] Roll dart sdk to 80c4954d4d1d2a257005793d83b601f3ff2997a2 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-110", "text": "10268 [fuchsia] Make cirrus build fuchsia artifacts (cla: yes)\n\n10273 Remove one last final call to AddPart() (cla: yes)\n\n10282 Export FFI from sky_engine. (cla: yes)\n\n10293 Add fuchsia.stamp for roller (cla: yes)\n\n10294 Roll src/third_party/dart 80c4954d4d..bd049f5b53 (37 commits) (cla: yes)\n\n10295 Fix memory overrun in minikin patch (cla: yes, crash)\n\n10296 fix CI (cla: yes)\n\n10297 Ensure that the SingleFrameCodec stays alive until the ImageDecoder invokes its callback (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-111", "text": "10298 Fix red build again (cla: yes)\n\n10303 Make tree green for real this time, I promise. (cla: yes)\n\n10309 [fuchsia] Kernel compiler is now ready (cla: yes)\n\n10381 Fix empty composing range on iOS (cla: yes)\n\n10386 Don\u2019t use DBC for hot-reload on iOS. (cla: yes)\n\n10403 [fuchsia] Add kernel compiler target (cla: yes)\n\n10413 Pass Android Q insets.systemGestureInsets to Window (cla: yes, platform-android)\n\n10414 expose max depth on Window (cla: yes)\n\n10419 Make kernel compiler use host toolchain (cla: yes)\n\n10423 Fix mac gen_snapshot uploader (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-112", "text": "10423 Fix mac gen_snapshot uploader (cla: yes)\n\n10424 Fix deprecation warnings in the Android embedding (cla: yes)\n\n10430 Add copy_gen_snapshots.py tool (cla: yes)\n\n10434 Reland Skia Caching improvements (cla: yes)\n\n10437 Roll src/third_party/dart bd049f5b53\u2026622ec5099f (cla: yes)\n\n10440 Revert \u201cRemove one last final call to AddPart()\u201d (cla: yes)\n\n10475 Roll src/third_party/dart 622ec5099f\u20269bb446aae1 (14 commits) (cla: yes)\n\n10477 Add #else, #endif condition comments (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-113", "text": "10477 Add #else, #endif condition comments (cla: yes)\n\n10478 Migrate Fuchsia runners to SDK tracing API (cla: yes)\n\n10479 Delete unused create_macos_gen_snapshot.py script (cla: yes)\n\n10481 Android embedding refactor pr40 add static engine cache (cla: yes)\n\n10484 Roll src/third_party/dart 9bb446aae1\u20264bebfebdbc (7 commits). (cla: yes)\n\n10485 Remove semi-redundant try-jobs. (cla: yes)\n\n10629 Fix engine platformviewscontroller leak (cla: yes)\n\n10633 skip flaky tests (cla: yes)\n\n10634 Use Fuchsia trace macros when targeting Fuchsia SDK (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-114", "text": "10635 [fuchsia] CloneChannelFromFD fix for system.cc (cla: yes)\n\n10636 Fix threading and re-enable resource cache shell unit-tests. (cla: yes)\n\n10637 Document the thread test fixture. (cla: yes)\n\n10642 Roll src/third_party/dart 4bebfebdbc..8cd01287b4 (30 commits) (cla: yes)\n\n10644 [flutter_runner] Port: Add connectToService, wrapping fdio_ns_connect. (cla: yes)\n\n10645 Don\u2019t use DBC for hot-reload on iOS. (cla: yes)\n\n10652 Allow embedders to control Dart VM lifecycle on engine shutdown. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-115", "text": "10656 fix iOS keyboard crash : -[__NSCFString substringWithRange:], range o\u2026 (cla: yes)\n\n10662 bump local podspec\u2019s ios deployment target version from 7.0 to 8.0 (cla: yes)\n\n10663 Roll src/third_party/dart 8cd01287b4..574c4a51c6 (35 commits) (cla: yes)\n\n10667 Roll buildroot for ANGLE support (cla: yes)\n\n10671 Roll src/third_party/dart 574c4a51c6..c262cbd414 (11 commits) (cla: yes)\n\n10674 When setting up AOT snapshots from symbol references, make buffer sizes optional. (cla: yes)\n\n10675 Improvements to the flutter GDB script (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-116", "text": "10679 Roll buildroot to pick up EGL library name fix (cla: yes)\n\n10681 Roll buildroot back to an earlier version (cla: yes)\n\n10682 Roll src/third_party/dart c262cbd414..8740bb5c68 (18 commits) (cla: yes)\n\n10687 Roll src/third_party/dart 8740bb5c68..f3139f57b4 (7 commits) (cla: yes)\n\n10692 Rolls engine to Android SDK 29 and its corresponding tools (cla: yes)\n\n10693 Roll src/third_party/dart f3139f57b4..f29f41f1a5 (3 commits) (cla: yes)\n\n10694 Roll buildroot (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-117", "text": "10694 Roll buildroot (cla: yes)\n\n10699 Roll swiftshader (cla: yes)\n\n10700 [fuchsia] Migrate from custom FuchsiaFontManager to SkFontMgr_fuchsia (cla: yes)\n\n10703 Test perf overlay gold on Linux (cla: yes)\n\n10705 Revert \u201cRemove semi-redundant try-jobs. (#10485)\u201d (cla: yes)\n\n10717 Specify which android variant for tests (cla: yes, waiting for tree to go green)\n\n10719 Include Maven dependency in files.json (cla: yes)\n\n10771 Don\u2019t use gradle daemon for building (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-118", "text": "10773 Remove use of the deprecated AccessibilityNodeInfo boundsInParent API (cla: yes)\n\n10774 Manual roll of Fuchsia clang/linux-amd64 toolchain (cla: yes)\n\n10776 rename stub_ui to web_ui (cla: yes)\n\n10777 Manually roll Skia to pull in iOS armv7 build failure fix. (cla: yes)\n\n10778 Build JARs containing the Android embedding sources and the engine native library (cla: yes)\n\n10780 [flutter_runner] Improve frame scheduling (cla: yes)\n\n10781 [flutter] Create the compositor context on the GPU task runner. (cla: yes)\n\n10782 Update license script to handle ANGLE (cla: yes)\n\n10783 Make firebase test more LUCI friendly (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-119", "text": "10783 Make firebase test more LUCI friendly (cla: yes)\n\n10784 Roll buildroot for ANGLE support (cla: yes)\n\n10786 Remove 3 semi-redundant try-jobs (cla: yes)\n\n10787 Change call to\n\nAddPart\n\nto\n\nAddChild\n\n(cla: yes)\n\n10788 Wire up a concurrent message loop backed SkExecutor for Skia. (cla: yes)\n\n10789 Revert \u201cForwards iOS dark mode trait to the Flutter framework.\u201d. (cla: yes)\n\n10791 Re-lands platform brightness support on iOS (cla: yes)\n\n10797 Rename artifacts so they match the Maven convention (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-120", "text": "10799 Add a test for creating images from bytes. (cla: yes)\n\n10802 Roll src/third_party/dart f29f41f1a5..3d9a356f6e (65 commits) (cla: yes)\n\n10805 Roll src/third_party/dart 3d9a356f6e..78ce916d82 (7 commits) (cla: yes)\n\n10808 Remove flutter_kernel_sdk dart script (cla: yes)\n\n10809 [dart:zircon] Porting Cache re-usable handle wait objects (cla: yes)\n\n10810 Roll Dart SDK 78ce916d82..15a3bf82cb (cla: yes)\n\n10811 Revert \u201cRemove flutter_kernel_sdk dart script\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-121", "text": "10815 Return an empty mapping for an empty file asset (cla: yes)\n\n10816 Add firstFrameDidRender to FlutterViewController (cla: yes)\n\n10817 Roll src/third_party/dart 15a3bf82cb..ffefa124a7 (11 commits) (cla: yes)\n\n10820 iOS JIT support and enhancements for scenarios app (cla: yes)\n\n10821 Roll src/third_party/dart ffefa124a7..e29d6d0ecb (4 commits) (cla: yes)\n\n10823 Expose isolateId for engine (cla: yes)\n\n10905 Roll src/third_party/dart e29d6d0ecb..261fd6266b (2 commits) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-122", "text": "10925 Roll src/third_party/dart 261fd6266b..9adf3c119e (2 commits) (cla: yes)\n\n10934 Roll src/third_party/dart 9adf3c119e..32b70ce2a5 (3 commits) (cla: yes)\n\n10941 Report test failures in run_tests.py (cla: yes)\n\n10946 Roll src/third_party/dart 32b70ce2a5..896c053803 (1 commits) (cla: yes)\n\n10949 Fix iOS references to PostPrerollResult (cla: yes)\n\n10952 Change SemanticsNode#children lists to be non-null (cla: yes)\n\n10955 Fix format (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-123", "text": "10955 Fix format (cla: yes)\n\n10956 Increase the license block scan from 5k to 6k (cla: yes)\n\n10962 Roll src/third_party/dart 896c053803..b31df28d72 (10 commits) (cla: yes)\n\n10966 Roll src/third_party/dart b31df28d72..baebba06af (5 commits) (cla: yes)\n\n10968 include zx::clock from new location to fix Fuchsia autoroll. (cla: yes)\n\n10973 Roll src/third_party/dart baebba06af..06509e333d (7 commits) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-124", "text": "10975 Roll src/third_party/dart 06509e333d..9aea1f3489 (8 commits) (cla: yes)\n\n10977 Roll src/third_party/dart 9aea1f3489..b9217efc77 (7 commits) (cla: yes)\n\n10981 Roll src/third_party/dart b9217efc77..20407e28db (6 commits) (cla: yes)\n\n10982 Revert \u201cTrack detailed LibTxt metrics\u201d (cla: yes)\n\n10983 Roll src/third_party/dart 20407e28db..45f892df68 (2 commits) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-125", "text": "10987 Roll src/third_party/dart 45f892df68..88c43bbcc4 (7 commits) (cla: yes)\n\n10990 Roll src/third_party/dart 88c43bbcc4..b173229baa (14 commits) (cla: yes)\n\n10993 Roll src/third_party/dart b173229baa..76c99bcd01 (5 commits) (cla: yes)\n\n10997 Roll src/third_party/dart 76c99bcd01..c4727fddf4 (10 commits) (cla: yes)\n\n10999 Add script for running ios Tests on simulator (cla: yes)\n\n11001 Avoid dynamic lookups of the engine library\u2019s symbols on Android (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-126", "text": "11002 Remove a tracing macro with a dangling pointer (cla: yes)\n\n11003 Roll src/third_party/dart c4727fddf4..e35e8833ee (1 commits) (cla: yes)\n\n11004 Trace RasterCacheResult::Draw (cla: yes)\n\n11005 Drop firebase test from Cirrus (cla: yes)\n\n11006 On iOS report the preferred frames per second to tools via service protocol. (cla: yes)\n\n11007 Update README.md (cla: yes)\n\n11009 Revert \u201cUpdate README.md\u201d (cla: yes)\n\n11010 Rename macOS FLE* classes to Flutter* (affects: desktop, cla: yes, platform-macos, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-127", "text": "11011 Initialize the engine in the running state to match the animator\u2019s default state (cla: yes)\n\n11012 Remove the ParagraphImpl class from the text API (cla: yes)\n\n11013 Remove ability to override mac_sdk_path in flutter/tools/gn (cla: yes)\n\n11015 Remove the output directory prefix from the Android engine JAR filename (cla: yes)\n\n11016 Fix gn breakage on Fuchsia macOS host builds (cla: yes)\n\n11017 Roll src/third_party/dart e35e8833ee..e35e8833ee (0 commits) (cla: yes)\n\n11019 Fix gn breakage on non-Fuchsia macOS host builds (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-128", "text": "11023 Roll src/third_party/dart e35e8833ee..cae08c6813 (28 commits) (cla: yes)\n\n11024 Add _glfw versions of the GLFW desktop libraries (cla: yes)\n\n11026 Roll src/third_party/dart cae08c6813..9552646dc4 (3 commits) (cla: yes)\n\n11027 Fix first frame logic (cla: yes)\n\n11029 Disable a deprecation warning for use of a TaskDescription constructor for older platforms (cla: yes)\n\n11030 Roll src/third_party/dart 9552646dc4..cd16fba718 (5 commits) (cla: yes)\n\n11033 remove OS version (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-129", "text": "11033 remove OS version (cla: yes)\n\n11036 [fuchsia] Add required trace so files for fuchsia fars (cla: yes)\n\n11037 Roll buildroot to pick up recent macOS changes (cla: yes)\n\n11038 Make JIT work on iPhone armv7 (cla: yes)\n\n11039 Roll src/third_party/dart cd16fba718..306f8e04bb (10 commits) (cla: yes)\n\n11040 Hide verbose dart snapshot during run_test.py (cla: yes)\n\n11043 Roll Dart back to e35e8833 (cla: yes)\n\n11044 Roll src/third_party/dart 306f8e04bb..fecc4c8f2d (4 commits) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-130", "text": "11046 Add ccls config files to .gitignore (cla: yes)\n\n11048 Roll src/third_party/dart e35e8833ee..2023f09b56 (67 commits) (cla: yes)\n\n11052 Remove unused dstColorSpace argument to MakeCrossContextFromPixmap (cla: yes)\n\n11055 Roll src/third_party/dart 2023f09b56..a3b579d5c3 (8 commits) (cla: yes)\n\n11056 Sort the Skia typefaces in a font style set into a consistent order (cla: yes)\n\n11060 Roll src/third_party/dart a3b579d5c3..2a3b844b41 (5 commits) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-131", "text": "11061 Roll buildroot to 5a33d6ab to pickup changes to toolchain version tracking. (cla: yes)\n\n11066 Roll src/third_party/dart 2a3b844b41..8ab978b6d4 (7 commits) (cla: yes)\n\n11067 Minor update to the Robolectric test harness (cla: yes)\n\n11068 More updates to the Robolectric test harness (cla: yes)\n\n11071 Roll src/third_party/dart 8ab978b6d4..beee442625 (17 commits) (cla: yes)\n\n11072 Roll src/third_party/dart beee442625..79e6c74337 (8 commits) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "a5e9f3d746fa-132", "text": "11075 [dynamic_thread_merging] Resubmit only on the frame where the merge (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/changelogs/changelog-1.9.1/index.html"} {"id": "c10a24bba14e-0", "text": "Flutter release notes\n\nTools\n\nSDK\n\nRelease notes\n\nThis page links to announcements and release notes for\nreleases to the stable channel.\n\nNote:\n For information about bug-fix releases, check out\n Hotfixes to the Stable Channel on the Flutter wiki.\n\n3.7.0\n \n 3.7.0 announcement\n 3.7.0 release notes & change log\n\n3.3.0\n \n 3.3.0 announcement\n 3.3.0 release notes & change log\n\n3.0.0\n \n 3.0.0 announcement\n 3.0.0 release notes & change log\n\n2.10.0\n \n 2.10.0 announcement\n 2.10.0 release notes & change log", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/index.html"} {"id": "c10a24bba14e-1", "text": "2.8.0\n \n 2.8.0 announcement\n 2.8.0 release notes & change log\n\n2.5.0\n \n 2.5.0 announcement\n 2.5.0 release notes & change log\n\n2.2.0\n \n 2.2.0 announcement\n 2.2.0 release notes & change log\n\n2.0.0\n \n 2.0.0 announcement\n 2.0.0 release notes & change log\n\n1.22.0\n \n 1.22.0 announcement\n 1.22.0 release notes & change log\n\n1.20.0\n \n 1.20.0 announcement\n 1.20.0 release notes & change log\n\n1.17.0\n \n 1.17.0 announcement\n 1.17.0 release notes and change log", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/index.html"} {"id": "c10a24bba14e-2", "text": "1.12.13\n \n 1.12.13 announcement\n 1.12.13 release notes and change log\n\nEarlier\n \n Archived release notes", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/index.html"} {"id": "e85f4379f204-0", "text": "Flutter Changelog 0.0.21 - 1.0.0\n\nTools\n\nSDK\n\nRelease notes\n\nFlutter Changelog up to 1.0.0\n\nChanges through and including 1.0.0\n\nChanges since v0.10.2\n\nBreaking change:\nv0.11.0\n\nChanges in v0.10.2 (since v0.9.4) - beta 10\n\nv0.10.2\nv0.10.1\nv0.9.7\nv0.9.6\n\nChanges in v0.9.4 (since v0.8.2 ) - beta 9\n\nv0.9.4\nv0.9.3\nv0.9.2\n\nChanges in v0.8.2 (since v0.7.3) - beta 8", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-1", "text": "v0.7.4\n\nChanges in v0.7.3 (since v0.6.0) - beta 7\n\nv0.7.3\nv0.7.2\nv0.7.1\n\nChanges in v0.6.0 (since v0.5.1) - beta 6\n\nv0.6.0\nv0.5.8\nv0.5.7\nv0.5.6\nv0.5.5\nv0.5.2\n\nChanges in v0.5.1 (since v0.3.2) - beta 5\n\nv0.5.0\n\nChanges in v0.4.4 (since v0.3.2) - beta 4\n\nv0.4.0\nBreaking change\nv0.3.6\nBreaking change\nv0.3.3", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-2", "text": "Changes in v0.3.2 (since v0.3.1) - beta 3\n\nChanges in v0.3.1 (since v0.2.8) - beta 2 update\n\nv0.3.1\nv0.2.11\nv0.2.9\nDart changes since Flutter v0.2.8\n\nChanges in v0.2.8 (since v0.2.3) - beta 2\n\nv0.2.8\nv0.2.5\nv0.2.4\n\nBefore\nAfter\nBefore\nAfter\nBefore\nAfter\n\nChanges in v0.2.3 (since v0.1.5) - beta 1 update\n\nv0.2.0\n\nBefore\nAfter:\n\n\nv0.1.9\n\nChanges in v0.1.5 (since v0.1.4) - beta 1.1", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-3", "text": "v0.1.5\n\nChanges in v0.1.4 (since v0.0.20) - beta 1\n\nv0.1.3\nv0.1.1\nv0.0.24\nv0.0.23\n\nSliver APIs\n\n\nv0.0.21\n\nThis page is a dump of the old Changelog page from the Flutter wiki up until\nFlutter release notes were published in flutter.dev.\n\nChanges through and including 1.0.0\n\nSkia and engine rolls to address the following:\n \n video_player image distortion problem after last flutter update 0.11.3\n Green, flickering bar over camera preview\n Image rendering issues on Adreno 3xx devices after upgrade from 0.9.4 to 0.10.2", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-4", "text": "Engine rolls to fix\n \n Prepend [NSLocale currentLocale] for first locale on iOS to ensure countryCode exists. Allow language-only locales.\n Changes to unblock Fuchsia roll\n\nVarious fixes to tooling for documentation, documentation, and documentation accompanying the templates.\n\nChanges since v0.10.2\n\nflutter/engine#6883 - FlutterViewController will no longer load your app\u2019s splash screen by default. The implementation of that has been moved to a new method loadDefaultSplashScreenView.\n\n#23755 Removed direct dependency of flutter_test on package:test. Flutter now requires test version 1.5.1 and mockito version 4.0.0.\n\n \nBreaking change:\n This requires adding an explicit dependency to your pubspec.yaml:\n \ndev_dependencies:\n test: ^1.5.1", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-5", "text": "#24024 and flutter/engine#6760 Upgraded harfbuzz to 2.1.0, Significantly improved text layout, and zero-width-joiner (zwj) support for better emojis on iOS.\n\n#23417 provide null when locale is unavailable or invalid instead of _.\n\n#23583 Improved localization algorithm with scriptCodes and full preferred locales list support, breaking changes to callbacks when locales are changed (pass list instead of single locale).\n\nv0.11.0\n\n#23320 Adds back swipe gesture support for Cupertino navigation bars\u2019 cross-page transitions.\n\n#23320 Adds support for Hero transitions across multiple Navigators.\n\nChanges in v0.10.2 (since v0.9.4) - beta 10\n\nv0.10.2", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-6", "text": "v0.10.2\n\n#23194 Adds CupertinoTextField, an iOS styled text entry field.\n\n#23221 Adds RTL support for Cupertino navigation bars\u2019 cross-page transitions.\n\nv0.10.1\n\n#22977 replaces most of Null by void. See the mail proposing this change.\n\n#22985 Implement correct orthographic projection\n\n#23104 Update wrapping message\n\n#22924 Support for disabling interactive TextField caret and selection\n\n#22870 Use new mixin syntax for super-mixins\n\n#22022 allow command line option \u201c\u2013project-name\u201d in flutter create\n\n#23126 Dispatch a Flutter.Navigation event each time navigation occurs.\n\n#23183 Fix bug where gradle build rule would rerun on switching from", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-7", "text": "#23183 Fix bug where gradle build rule would rerun on switching from\n\n#22394 Fix out of range spring simulation in ClampingScrollSimulation\n\n#23174 enable lint prefer_void_to_null\n\n#23184 TextTheme.apply() should not assume non-null TextStyle fields\n\n#23168 Added Mongolian (mn) translations\n\n#23167 Fix disabled formfield validation\n\n#23015 Finalize editing when hitting the enter key on a single line TextField\n\n#23021 Make it easier to use CocoaPods to Add2App for iOS\n\n#22825 fix Curves.bounceInOut math\n\n#22977 Prefer void to null\n\n#22822 Adds callback for Long Press Up\n\n#18770 Add disabledHint to DropdownButton", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-8", "text": "#18770 Add disabledHint to DropdownButton\n\n#21657 Make AndroidView take gesture recognizer factories.\n\n#22449 Add support for text shadows\n\nflutter/engine#6644 Add BoxHeightStyle and BoxWidthStyle as arguments to Paragraph.getBoxesForRange() to obtain various styles of enclosing boxes.\n\nSkia update that changes the low level implementation of blurs and anti aliasing, which may break golden tests.\n\nv0.9.7\n\nflutter/engine#6393 adds nullability annotations to Android MethodChannel/MethodCall.\n\nv0.9.6\n\n#21251 adds CupertinoDatePicker, an iOS-style picker control that supports a date mode and a date + time mode.\n\nChanges in v0.9.4 (since v0.8.2 ) - beta 9\n\nv0.9.4", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-9", "text": "v0.9.4\n\n#21715, The default MaterialPageRoute transition is now defined by the Theme. Added (optional) support for Android P style page transitions. The MaterialPageRoute support for \u201chosting\u201d another route to reuse its buildTransitions() method was removed because PageTransitionsBuilders, including CupertinoPageTransitionBuilder, are standalone objects.\n\nv0.9.3\n\n#22108 changed the output of flutter doctor slightly, which may affect automated scripts that depended on the exact output.\n\nv0.9.2\n\n#21540 added a transform() method to Animatable. It is implemented by Tween (the main subclass of Animatable) but classes that subclass Animatable directly will need to implement it. Typically the existing evaluate() method can be changed to implement transform() instead, using the value given by the argument to transform() rather than the current value of the animation provided to evaluate(). evaluate() now has a default implementation that defers to transform().", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-10", "text": "Changes in v0.8.2 (since v0.7.3) - beta 8\n\nv0.7.4\n\n#20322 performs parallax transitions between CupertinoNavigationBars and CupertinoSliverNavigationBars when navigating between pages.\n\nChanges in v0.7.3 (since v0.6.0) - beta 7\n\nv0.7.3\n\n#20966 adds CupertinoTimerPicker.\n\nv0.7.2\n\n#20929 fixes bug where CupertinoPageScaffold wasn\u2019t insetting its content when the keyboard is shown.\n\nv0.7.1\n\n#19637 CupertinoNavigationBar and CupertinoSliverNavigationBar now auto-populate their title and back button labels based on their CupertinoPageRoute.title.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-11", "text": "Changes in v0.6.0 (since v0.5.1) - beta 6\n\nv0.6.0\n\nDart SDK updated to a Dart 2 build (2.1.0-dev.0.0). Package and plugin authors should ensure their pubspec.yaml files include a Dart SDK constraint with an upper bound of <3.0.0. See the Getting ready for Dart 2 post for details.\n\n#19025 renamed CupertinoRefreshControl to CupertinoSliverRefreshControl for consistency.\n\n#19317 Add cursorWidth and cursorRadius to TextField (Material) cursor.\n\n#20116 reduced release binary sizes by ~2MB\n\n#20267 adds `CupertinoSegmentedControl\u2019.\n\n#19232 adds CupertinoActionSheet for iOS-style bottom pop-up sheets.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-12", "text": "#20101 improves CupertinoScrollbar visual fidelity during overscrolls.\n\n#19789 adds support for infinite scrolling and looped scrolling for CupertinoPicker.\n\n#18381 improves visual fidelity of CupertinoAlertDialog.\n\nv0.5.8\n\n#19284 adds multi-column CupertinoPicker support for off-axis cylindrical projection.\n\nv0.5.7\n\n#18469 added a CupertinoApp for creating iOS styled apps.\n\nv0.5.6\n\n#18614 added isInstanceOf as a function exported from Flutter, because package:matcher has deprecated its implementation of isInstanceOf.\n\nflutter/engine#5517 enabled the --sync-async Dart flag.\n\nv0.5.5", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-13", "text": "v0.5.5\n\n#18488 made the --debug-port argument to flutter trace required, because the previous behaviour was unreliable and caused flaky tests.\n\nv0.5.2\n\n#18096 changed the rendering of the character counter in text fields to more closely match the Material design specifications.\n\nChanges in v0.5.1 (since v0.3.2) - beta 5\n\nv0.5.0\n\n#17661 changed the layout and size of ListTile to better conform to the latest Material design specs.\n\n#17620 slightly reduces the default dimensions of Checkbox, Radio, and Switch to better conform to the latest Material design specs.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-14", "text": "#17637 updates Checkbox, Radio, and Switch to use the ThemeData toggleableActiveColor. If you are using a light theme and are not specifying an accentColor in your ThemeData, these controls will now use a higher contrast shade from the primary swatch.\n\n#17586 added a new background property to TextStyle. Subclasses must ensure that this property is handled in constructors and copyWith.\n\nChanges in v0.4.4 (since v0.3.2) - beta 4\n\nv0.4.0\n\n#17021 added implicit a11y scrolling for iOS. For this, viewports define a cache extend before the leading as well as after the trailing edge and slivers are expected to provide semantics information if they fall into the cache extent.\n\n \nBreaking change\n With this change, children of a viewport that are currently not visible in the viewport are now considered off-stage. To find them in a test, specify skipOffstage: false on the Finder.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-15", "text": "v0.3.6\n\n#17094 introduced the ability to do golden image testing in widget tests. Within a widget test, you can now use the following matcher to ensure that your widget\u2019s rasterized image matches a golden file (e.g. foo.png):\n\n \nawait expectLater(find.byType(MyWidget), matchesGoldenFile('foo.png'));\n \n\n \nBreaking change\n\n One of the consequences of this change is that all tests run through flutter test now explicitly depend on package:flutter_test. Users of flutter test will need to update their pubspec.yaml file to include the following if it does not already exist:\n\n \ndev_dependencies:\n flutter_test:\n sdk: flutter\n \n\n If your pubspec.yaml does not contain the requisite dependency, and you run flutter test, you will see errors of the following form:", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-16", "text": "compiler message: Error: Could not resolve the package 'flutter_test' in 'package:flutter_test/flutter_test.dart'.\n\nv0.3.3\n\nflutter/engine#5060 introduced the ability to encode a dart:ui Image into a PNG via Image.toByteData(). Callers wishing to get encoded bytes may pass the format argument, like so:\n\n \nimage.toByteData(format: ui.ImageByteFormat.png);\n\nChanges in v0.3.2 (since v0.3.1) - beta 3\n\nChanges in v0.3.1 (since v0.2.8) - beta 2 update\n\nWe are aware of a potential problem with certificate validation in the HttpClient implementation.\nTo follow our investigation, see Dart issue 32936.\n\nv0.3.1", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-17", "text": "v0.3.1\n\nflutter/engine#4932 introduced a new shell embedding API with numerous new features. In particular, a single process can now host multiple Flutter shells.\n\nflutter/engine#4762 and flutter/engine#5008 introduced Image.toByteData(), which is used to get the raw RGBA bytes of an Image instance in dart:ui.\n\n#16721 scroll motion starts on iOS has been fine tuned to avoid a jump when the scroll first starts moving and to more closely mirror native behavior.\n\nv0.2.11\n\n#16039 and #16447 substantially revised the Chip implementation, added new chip types: InputChip, ChoiceChip, FilterChip, ActionChip, and updated the appearance of chips.\n\nv0.2.9\n\n#16187 updated the Card widget\u2019s shape and elevation.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-18", "text": "#16187 updated the Card widget\u2019s shape and elevation.\n\nDart changes since Flutter v0.2.8\n\ndart:async: Removed the deprecated defaultValue parameter on Stream.firstWhere and Stream.lastWhere.\n\ndart:core: Added tryParse static method to int, double, num, BigInt, Uri and DateTime, and deprecated onError parameter on int.parse, double.parse, and num.parse.\n\nThe new keyword can now always be omitted. The const keyword is required to create a constant expression, although within the expression, further const keywords can also be omitted.\n\nChanges in v0.2.8 (since v0.2.3) - beta 2\n\nv0.2.8\n\n#16040 adds an API to let CupertinoTabScaffold\u2019s current tab be programmatically changed via its CupertinoTabBar\u2019s currentIndex.\n\nv0.2.5", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-19", "text": "v0.2.5\n\n#15416 removed package:http from Flutter and replaced all usages with the HttpClient from dart:io. If you use package:http you must add it as a dependency in your pubspec.yaml to continue using it.\n\n createHttpClient() was also removed after being marked deprecated. To change how the framework creates http clients, you can use HttpOverrides from dart:io to provide your own createHttpClient() callback globally or per zone.\n\n More details are available in the announcement.\n\n#15871 changed the default configuration of the AndroidManifest.xml created by flutter create. \u201cscreenLayout\u201d and \u201cdensity\u201d are now included by default in the configChanges attribute, preventing flutter apps from restarting when these change.\n\n#15324 adds a new CupertinoRefreshControl widget styled after the iOS pull-to-refresh pattern. Demo available in the Flutter Gallery.\n\nv0.2.4", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-20", "text": "v0.2.4\n\n#15565 turned Dart 2 mode on by default. To run in Dart 1 mode, you can still use --no-preview-dart-2.\n\n More details are available in the announcement.\n\n#15537 removed SemanticsSortOrder. From now on traversal sorting is done among sibling nodes only.\n\n More details available in the announcement.\n\n#15484 changed the meaning of the TextFormField initialValue constructor parameter.\n\n The TextFormField initialValue parameter no longer unconditionally initializes the text property of its TextEditingController. If you create a TextFormField and provide a controller, the initialValue must be null, which is now the default. If you\u2019re providing a controller you can specify it\u2019s initial text value with the TextEditingController text property.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-21", "text": "Before\n \nnew TextFormField(\n initialValue: 'Hello World',\n controller: _myTextEditingController,\n);\n \n\n \nAfter\n \nnew TextFormField(\n controller: _myTextEditingController ..text = 'Hello World',\n)\n// Or more typically:\n_myTextEditingController = new TextEditingController(\n text: 'Hello World',\n);\nnew TextFormField(\n controller: _myTextEditingController,\n);\n\n#15303 updated the showDialog function to take a builder and deprecated the widget parameter.\n\n \n \nBefore\n \nshowDialog(context: context, child: new Text('hello'))\n \n\n \nAfter\n \nshowDialog(context: context, builder: (BuildContext context) => new Text('hello'))", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-22", "text": "#15265 updated ThemeData to use the primary color of a MaterialColor instead of unconditionally using the 500 shade for light themes. The color values remain unchanged.\n\n \n \nBefore\n \nexpect(widget.color, Colors.blue.shade500) // primary color\n \n\n \nAfter\n \nexpect(widget.color, Colors.blue) // primary color\n\n#15548 adds debugging flags debugDisableClipLayers, debugDisablePhysicalShapeLayers and debugDisableOpacityLayers to help with performance diagnosis of rasterizing speed.\n\nChanges in v0.2.3 (since v0.1.5) - beta 1 update\n\nv0.2.0\n\nflutter/engine#4742 updated assets to be read directly out of the APK on Android. As a result, leading slashes are no longer supported in image asset paths:", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-23", "text": "Before\n \nnew Image.asset('/foo/bar.png')\n \n\n \nAfter:\n \nnew Image.asset('foo/bar.png')\n\nv0.1.9\n\n#14901 A Slider visual update changed the colors, opacities, and the value indicator shape and behavior. It also removed the \u201cthumbOpenAtMin\u201d flag from the Slider class, which is no longer needed, and can be emulated by the custom thumb shape support.\n\nChanges in v0.1.5 (since v0.1.4) - beta 1.1\n\nv0.1.5\n\n#14714 fixed the groovy script for the Flutter Gallery, thus fixing #14912.\n\nChanges in v0.1.4 (since v0.0.20) - beta 1\n\nv0.1.3", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-24", "text": "v0.1.3\n\n#14702 removed the engineDartVersion getter from the flutter tool\u2019s Version class.\n\nv0.1.1\n\nflutter/engine#4607 and #14601 removed default constructors from the following dart:ui classes:\n\n \n Codec\n FrameInfo\n Gradient\n Image\n Paragraph\n Picture\n Scene\n SemanticsUpdate\n Shader\n \n\n The default constructors were removed to prevent the creation of uninitialized instances of these classes (and in certain cases to prevent extending these classes). These classes should be instantiated only by the Flutter engine or through named constructors (if provided).\n\nv0.0.24\n\n#14410 contained a breaking API change to ButtonTheme:", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-25", "text": "#14410 contained a breaking API change to ButtonTheme:\n\n \n The constructors ButtonTheme() and ButtonTheme.bar() are no longer const constructible\n \nButtonTheme.textTheme is now ButtonTheme.data.textTheme\n\n \nButtonTheme.minWidth is now ButtonTheme.data.minWidth\n\n \nButtonTheme.height is now ButtonTheme.data.height\n\n \nButtonTheme.padding is now ButtonTheme.data.padding\n\n#14410 changed the hierarchy of FlatButton and RaisedButton - they both inherit from RawMaterialButton now rather than from MaterialButton.\n\n#14410 changed RaisedButton to no longer cast a shadow when disabled.\n\nv0.0.23", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-26", "text": "v0.0.23\n\n#14343 revised how copy, cut, and paste works for EditableText: The abstract class TextSelectionControls has new methods canCopy, canCut, etc. to determine if those actions are available. The TextSelectionDelegate interface now requires an additional method bringIntoView(TextPosition position) to scroll a TextPosition into the visible part of a TextField. Furthermore, that interface is no longer implemented by TextSelectionOverlay. In its place EditableTextState should be used, which implements that interface. See also: flutter-dev/IHPndyUDy0M\n\nSliver APIs\n\n#14449 replaces the SliverGridLayout.estimateMaxScrollOffset method by the SliverGridLayout.computeMaxScrollOffset method. This new method must report an accurate value, not just an estimate. This was necessary to fix a bug where a finite SliverGrid could not handle being scrolled off the top of the screen (because we had no way to determine how much content it had).", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-27", "text": "For similar reasons, the RenderSliverBoxChildManager interface has a new getter, childCount, which must return a non-null value if createChild can return null. In practice, it is unusual to implement this interface, so this should have no effect. It is more common to implement the widgets-layer equivalent, SliverChildDelegate. This interface already had an estimatedChildCount getter. The getter continues to exist, though its semantics have been adjusted a little to require that the returned value be accurate if the build method on the delegate ever returns null.\n\nv0.0.21\n\n#13734, #14055, and #14177 substantially revised the InputDecorator et al. widgets. The layout of the input decorator\u2019s parts has changed a little, which means that the internal layout of text fields has changed as well. Tests that depend on the internal geometry of text fields will need to be updated.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "e85f4379f204-28", "text": "In addition, hideDivider: true must be replaced by the new border: InputBorder.none. This is part of our making it easier to customize how inputs are rendered; you can now also provide a custom InputBorder subclass if you have particularly novel desires for your input decoration.\n\n#4528 and #14011 deprecated support for big integers in the standard platform channel message/method codecs, to be made unavailable following a four week grace period. This change is a consequence of the transition to Dart\n2.0 where the int type is no longer unlimited size.\n\n#4487 replaces all uses of the RequestPermissionResult callback concept in io.flutter.plugin.common.PluginRegistry with RequestPermissionsResult, adding a missing s to align with the corresponding Android SDK concept.\n\n The old API has been deprecated and will be made unavailable in a later release. There will be a grace period of at least four weeks between the release that introduces the deprecation and the release that makes the old API unavailable.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-0.0.21-1.0.0/index.html"} {"id": "d57f1fe4ee7a-0", "text": "Flutter 1.12.13 release notes\n\nTools\n\nSDK\n\nRelease notes\n\n1.12.13 release notes\n\nBreaking changes\n\nSevere crash & performance bugs\n\nNew features\n\niOS support\n\nAndroid\n\nAdd to App feature\n\nMaterial\n\nText & Accessibility\n\nAnimation & Scroll\n\nWeb\n\nDesktop\n\nFramework\n\nEngine\n\nPlugins", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-1", "text": "Framework\n\nEngine\n\nPlugins\n\nPlugin: Android Alarm Manager\nPlugin: Android Intent\nPlugin: Battery\nPlugin: Camera\nPlugin: Connectivity\nPlugin: e2e\nPlugin: Google Maps Flutter\nPlugin: Google Sign In\nPlugin: Image Picker\nPlugin: In App Purchase\nPlugin: Local Auth\nPlugin: Package Info\nPlugin: Path Provider\nPlugin: Share\nPlugin: Shared Preferences\nPlugin: Url launcher\nPlugin: Video Player\nPlugin: Webview Flutter\n\nTooling\n\nVS Code\nFlutter IntelliJ and Android Studio plugin\nDevTools\nTooling PRs\n\nFull PR List", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-2", "text": "Full PR List\n\nWelcome to Flutter 1.12, our biggest stable release so far!\nIn this release, we\u2019ve merged 1,905 Pull Requests\nfrom 188 contributors, including both Googlers and\nnon-Google contributors! Please see the chart below\nfor the number of PRs in each release. Over the past year,\nthe number of PRs has been growing in each release\n(except for Flutter 1.9, which was an out-of-band\nrelease to support Catalina). In the recent\nGitHub Octoverse report,\nFlutter is listed as one of the top 3 active repos on GitHub!\n\nAs the holiday season is upon us, we would like to express\nour sincerest appreciation to our amazing developer community\nwho believe in Flutter, advocate for Flutter, and contribute to Flutter.\nIt\u2019s been an incredible year for us all! We look forward to\nworking with you in the years to come.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-3", "text": "As always, you can find interesting PRs listed below.\nAnd there are lots of interesting things to mention in this\nrelease, including:\n\nSome breaking API changes\n\nSome severe issues caught and fixed\n\nWeb support is now available in the beta channel\n\nMacOS support is enabled in the dev channel as of 1.13\n\nImproved SDK to add Flutter to existing Android/iOS apps\n\niOS 13 visual refresh including the support for iOS Dark mode\n\nEnhanced tooling experiences\n\nNew widgets and features\n\nAnd more!\n\nBreaking changes", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-4", "text": "And more!\n\nBreaking changes\n\nIn general, we want to avoid introducing breaking changes to Flutter,\nour plugins, or our packages. However, sometimes it is inevitable\nwhen we need to make our APIs more intuitive.\nWe have implemented a new process that invites you to submit\ntests to help us detect breaking changes.\nFor more information, see this post from Ian Hickson\non flutter-announce and the\nbreaking change policy on the Flutter wiki.\n\nThe following list includes breaking changes in this release.\nPlease see the related announcements so that you can move\nforward with your code.\n\n37024 Implement PageView using SliverLayoutBuilder, Deprecate RenderSliverFillViewport\n\n37739 Fix AnimationStatus for repeat(reverse: true) and animateWith\n\n37896 Add opacity control to MouseRegion. Add findAnnotations to Layer.\n\n38481 Timer picker fidelity revision", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-5", "text": "38481 Timer picker fidelity revision\n\n38568 Normalize assert checking of clipBehavior\n\n39079 fix widget built twice during warm up frame\n\n39440 Allow gaps in the initial route\n\n39919 CupertinoDatePicker & CupertinoTimerPicker dark mode\n\n40166 Added proper focus handling when pushing and popping routes\n\n40179 Update PopupMenu layout\n\n40566 Remove CupertinoSystemColors in favor of CupertinoColors\n\n40690 CupertinoPageScaffold dark mode\n\n41220 Add an ActivateAction to controls that use InkWell.\n\n41857 Change the dark theme elevation overlay to use the colorScheme.onSurface", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-6", "text": "42449 Increase TextField\u2019s minimum height from 40 to 48\n\n42470 No multiline password fields\n\n42479 Make DropdownButton\u2019s disabledHint and hint behavior consistent\n\n45135 Add option to delay rendering the first frame\n\nSevere crash & performance bugs\n\nIn every stable release, we make an effort to improve the quality of Flutter. In 1.12, we fixed several severe issues; this includes the following crashes and performance issues.\n\n40009 Add null check to _IndicatorPainter._tabOffsetsEqual() to prevent crash\n\n40263 Fix crash on vswhere search from flutter doctor\n\n40786 Fix crash on vswhere query on missing installations\n\n42342 Fix DropdownButton crash when hint and selectedItemBuilder are simultaneously defined", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-7", "text": "44610 Error Message for createState assertion\n\n38814 Add iOS backdrop filter benchmarks\n\n38821 Cache caret parameters\n\n38861 Replace deprecated onReportTimings w/ frameTimings\n\n39439 Measure iOS CPU/GPU percentage\n\n43676 Allow multiple TimingsCallbacks\n\n45050 Add a perf test for picture raster cache\n\nNew features\n\nFlutter 1.12 introduces several new features including the\nSliverOpacity\nwidget, the\nSliverAnimatedList,\nand the ability to configure a stretch effect for a SliverAppBar.\n\n37416 Add MediaQuery.systemGestureInsets to support Android Q\n\n39857 Update ToggleButtons constraints default and add new constraints parameter\n\n40161 Add fullscreenDialog argument in PageRouteBuilder", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-8", "text": "40161 Add fullscreenDialog argument in PageRouteBuilder\n\n40461 Implement DropdownButton.selectedItemBuilder\n\n41415 Expose API for resizing image caches\n\n42250 SliverAppBar - Configurable overscroll stretch with callback feature & FlexibleSpaceBar support\n\n42485 Re-landing SliverAnimatedList.\n\n42842 Add \u201cnavigator\u201d option to \u201cshowDialog\u201d and \u201cshowGeneralDialog\u201d\n\n43286 FadeInImage cacheWidth and cacheHeight support\n\n44289 SliverOpacity\n\n45127 SliverIgnorePointer\n\n45432 Use RenderSliverPadding to inset SliverFillViewport\n\niOS support", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-9", "text": "iOS support\n\niOS continues to be a big investment area for Flutter.\nWith this release, we\u2019ve made a visual refresh to our\nCupertino library to match the iOS 13 look. We now support\ndark mode in the Cupertino widgets, added two new widgets called\nCupertinoContextMenu\nand CupertinoSlidingSegmentedControl,\nand made improvements to segmented control widgets,\nCupertinoAlertDialog,\nand CupertinoDatePicker\n\n36871 Audit use of defaultTargetPlatform\n\n37719 CupertinoDynamicColor and friends\n\n38712 Show process error when iOS install fails\n\n39056 Fixed issues with Background Color #34741\n\n39215 CupertinoActionSheet dark mode & fidelity\n\n39289 CupertinoActivityIndicator & CupertinoApp dark mode", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-10", "text": "39289 CupertinoActivityIndicator & CupertinoApp dark mode\n\n39430 make CupertinoDynamicColor const constructible\n\n39463 Update validation to support Xcode11 version\n\n39585 remove fallback code for ios/usb artifacts\n\n39590 Fix user gesture in CupertinoPageRoute\n\n39765 CupertinoButton & Bottom tab bar dark mode\n\n39927 Make CupertinoDynamicColor.resolve return null when given a null color\n\n40007 CupertinoAlertDialog dark mode & CupertinoActionSheet fidelity\n\n40100 Fix a problem with disposing of focus nodes in tab scaffold\n\n40189 Dark mode CupertinoNavigationBar\n\n40447 Implement mdns for flutter run", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-11", "text": "40447 Implement mdns for flutter run\n\n40454 Dark Mode R: Refresh Control\n\n40466 ModalRoutes ignore input when a (cupertino) pop transition is underway\n\n40864 Move iOS and Android gitignore rules into folders\n\n41326 Exception when selecting in TextField\n\n41355 fix bad indentations(mainly around collection literals)\n\n41384 [flutter_tools] Report iOS mDNS lookup failures to analytics\n\n41431 Cupertino { TabScafold, TextSelection, TextField } dark mode & minor fidelity update\n\n41473 Missing trailing commas\n\n41482 [flutter_tool] Add analytics events for ios-mdns fallback success/failure\n\n41644 indent formal parameters correctly", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-12", "text": "41644 indent formal parameters correctly\n\n41799 Improved ios 13 scrollbar fidelity\n\n41828 Set DEFINES_MODULE=YES in plugin templates\n\n41892 Fix CupertinoActivityIndicator radius\n\n42025 Localization refresh\n\n42032 Update CupertinoActivityIndicator colors and gradient\n\n42533 Disable arrow key focus navigation for text fields\n\n42550 Add enableSuggestions flag to TextField and TextFormField\n\n42563 Adding thumb color customization functionality to CupertinoSlider\n\n42602 Properly throw FlutterError when route builder returns null on CupertinoPageRoute\n\n42775 CupertinoSlidingSegmentedControl", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-13", "text": "42775 CupertinoSlidingSegmentedControl\n\n42790 This disables the up/down arrow focus navigation in text fields in a different way.\n\n42924 CupertinoDialogAction is missing super call\n\n42964 Use PRODUCT_BUNDLE_IDENTIFIER from buildSettings to find correct bundle id on iOS when using flavors\n\n42967 Pad CupertinoAlertDialog with MediaQuery viewInsets\n\n43918 CupertinoContextMenu (iOS 13)\n\n43932 Update CupertinoSlidingSegmentedControl control/feedback mechanism\n\n44149 Apply minimumDate & maximumDate constraints in CupertinoDatePicker date mode\n\n44391 Segmented control quick double tap fix\n\n44551 Remove new unused elements", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-14", "text": "44551 Remove new unused elements\n\n44743 Sort Localization generation output\n\n44870 Add -runFirstLaunch hint text\n\n45124 Analyze dartpad\n\n11350 Firebase test for Platform Views on iOS\n\n11390 preventDefault on touchend to show iOS keyboard\n\n11413 Ios simulator unittests seem to not consider the full compilation unit\n\n11530 Optionally strip bitcode when creating ios framework\n\n11652 iOS platform view mutation XCUITests\n\n11802 Adjust iOS frame start times to match the platform info\n\n11807 Fix deleting Thai vowel bug on iOS\n\n11817 Smooth out iOS irregular input events delivery\n\n11886 remove extra redundant channels setup in iOS embedding engine", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-15", "text": "11886 remove extra redundant channels setup in iOS embedding engine\n\n12078 Manage iOS contexts separately\n\n12084 Guard availability of user notification related methods to iOS 10.0\n\n12192 Updating text field location in IOS as a pre-work for spellcheck\n\n12295 Issue 13238: on iOS, force an orientation change when the current orientation is not allowed\n\n12404 Support accessibility labels on iOS switches.\n\n12990 Fix for a11y crash on iOS\n\n13029 Minimal test harness for iOS\n\n13051 Don\u2019t bump iOS deployment target for Metal builds.\n\n13093 iOS Platform View: Fixed overrelease of the observer.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-16", "text": "13093 iOS Platform View: Fixed overrelease of the observer.\n\n13170 Issue 13238: on iOS, force an orientation change when the current orientation is not allowed\n\n13449 Fix iOS crash when multiple platform views are in the scene\n\n13469 Fix stale platform view gr context on iOS\n\n13651 Fixed the scroll direction for iOS horizontal accessibility scroll events.\n\n13852 Do not default to downstream affinity on iOS insertText\n\n13857 Guard against orphaned semantic objects from referencing dead accessibility bridge on iOS\n\n1370 [camera] Pause/resume video recording for Android & iOS\n\n1999 [Connectivity] add a method to request location on iOS (for iOS 13)\n\n2052 [instrumentation_adapter] Add stub iOS implementation and example app", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-17", "text": "2052 [instrumentation_adapter] Add stub iOS implementation and example app\n\n2068 [google_maps_flutter] Fix iOS MyLocationButton on iOS\n\n2083 [image_picker] Fix a crash when picking video on iOS 13 and above.\n\n2131 [share]fix iOS crash when setting the subject to null\n\n2139 [google_maps_flutter] Add NonNull macro to reduce warnings in iOS\n\n2191 [image_picker] Fix iOS build and analyzer warnings\n\n2192 [in_app_purchase] Fix iOS build warning\n\n2275 Update cirrus to create IOS simulator on 13.2 an xCode 11\n\n2281 [connectivity] Fix reachability stream for iOS\n\nAndroid", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-18", "text": "Android\n\nIn this release, we\u2019ve merged a list of changes to support Android 10, including a new activity zoom transition.\n\n37526 catch errors during gradle update\n\n39126 Fid app bundle in Gradle 3.5\n\n39145 Add missing files in the Gradle wrapper directory\n\n39312 let flutter build aar use a local engine\n\n39457 Log flags in build apk and appbundle\n\n40640 Exclude non Android plugins from Gradle build\n\n41698 Download android x64 release artifacts\n\n41933 upload x64 android host release\n\n41935 [Android 10] Activity zoom transition\n\n41946 Do not validate the Android SDK when building an appbundle\n\n42378 remove println from flutter.gradle", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-19", "text": "42378 remove println from flutter.gradle\n\n42401 Add support for Android x86_64 ABI to Flutter\n\n42508 Add Android x64 profile artifacts\n\n42966 expand scope of rethrown gradle errors\n\n43245 Add smallestScreenSize to android:configChanges in the Android manifest template\n\n43282 implement build aot with assemble for Android target platforms\n\n43876 Refactor flutter.gradle to use assemble directly\n\n44534 Improve performance of build APK (~50%) by running gen_snapshot concurrently\n\n45139 Update Android CPU device detection\n\n11345 [Android] Write MINIMAL_SDK required to use PlatformViews to exception message\n\n11441 Android 10+ View.setSystemGestureExclusionRects", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-20", "text": "11451 Android 10+ View.getSystemGestureExclusionRects\n\n12085 Enable platform view keyboard input on Android Q\n\n13059 Android targets create final zip artifacts\n\n13099 NO_SUGGESTIONS keyboard flag in Android\n\n13262 Added Semantic header support on Android.\n\n2003 [video_player] Added formatHint to to override video format on Android\n\n2029 fix android crash when pausing or resuming video on APIs lower than 24.\n\n2049 [path_provider] Android: Support multiple external storage options\n\n2208 delete all example/android/app/gradle.properties files\n\n2216 [battery]Use android.arch.lifecycle instead of androidx.lifecycle:lifecycle in", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-21", "text": "2239 [camera] Android: Improve image streaming by creating a request suita\u2026\n\nAdd to App feature\n\nWe\u2019ve made a significant upgrade to Add-to-App, the feature that allows you to integrate a Flutter module into your Android or iOS app. Can\u2019t wait to try it? Check out the Add-to-App documentation.\n\n41666 Generate projects using the new Android embedding\n\n44369 Flip enable-android-embedding-v2 flag\n\n40810 Re-enable AAR plugins when an AndroidX failure occurred\n\n41820 Added SystemNavigator.pop \u201canimated\u201d argument.\n\n12752 Enabled people to chose if SystemNavigator.pop is animated on iOS.\n\n12069 Fold the calls for FlutterMain into the FlutterEngine constructor\n\n39945 added new lifecycle state", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-22", "text": "39945 added new lifecycle state\n\n11913 Added new lifecycle enum\n\n45115 fix ios_add2app_life_cycle license\n\n45133 reland add lifecycle enum and fix the scheduleforcedframe\n\n45430 Drops detached message until we can handle it properly\n\n9525 Android Embedding Refactor PR36: Add splash screen support.\n\n9506 Synchronize main thread and gpu thread for first render frame\n\n39600 Let Material BackButton have a custom onPressed handler\n\n9952 ios: Fixed the callback for the first frame so that it isn\u2019t predicated on having a splash screen.\n\n10145 Added integration test that tests that the first frame callback is called\n\n42708 Test the Android embedding v2", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-23", "text": "42708 Test the Android embedding v2\n\n43221 Migrate examples to the Android embedding v2\n\n9895 Android Embedding PR37: Separated FlutterActivity and FlutterFragment via FlutterActivityAndFragmentDelegate\n\n11890 Add some AppLifecycleTests\n\n12128 Make iOS FlutterViewController stop sending inactive/pause on app lifecycle events when not visible\n\n12232 FlutterViewController notify will dealloc\n\n13280 Android embedding API updates for plugin ecosystem\n\n13349 Deprecated DartExecutor as BinaryMessenger and added a getBinaryMessenger() method. (#43202)\n\n13432 Release shim bindings when detaching\n\n2232 [multiple] V2 embedding plugins use compileOnly", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-24", "text": "2232 [multiple] V2 embedding plugins use compileOnly\n\n1323 [firebase_core][firebase_analytics] Fix bug with transitive lifecycle dependencies\n\n13445 Fizzle onConfigurationChanged if no FlutterView\n\n44499 Show a warning when a module uses a v1 only plugin\n\n35100 Add handling of \u2018TextInput.clearClient\u2019 message from platform to framework (#35054).\n\n13474 Request a reattach when creating the text input plugin on Android\n\n43959 Respond to TextInputClient.reattach messages.\n\n509 Force the phone\u2019s screen on before running a test.\n\n11792 Started logging warnings if we drop platform messages.\n\n12167 Channel buffers\n\n40165 Channel buffers", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-25", "text": "40165 Channel buffers\n\n12402 Resize channel buffers\n\n6879 Allow FlutterViewController to be released when not initialized with an engine\n\n9329 Fixed memory leak by way of accidental retain on implicit self\n\n9347 Surrogate binary messenger\n\n9419 Has a binary messenger\n\n8387 Make the resource context primary on iOS\n\n11798 Manage resource and onscreen contexts using separate IOSGLContext objects\n\n12277 Manage resource and onscreen contexts using separate IOSGLContext objects\n\n13396 Made it so we clean up gl resources when view controllers get deleted.\n\n39157 Use new Maven artifacts from Gradle\n\n39503 Remove bitcode=NO from add-to-app flows", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-26", "text": "39503 Remove bitcode=NO from add-to-app flows\n\n36793 Vend Flutter module App.framework as a local CocoaPod pod to be installed by a host app\n\n37966 Remove ephemeral directories during flutter clean\n\n40302 Set DEFINES_MODULE for FlutterPluginRegistrant to generate modulemap\n\n37731 Add metadata to indicate if the host app contains a Flutter module\n\n36805 Allow flavors and custom build types in host app\n\n26630 Move flutter_assets to App.framework\n\n31463 Disable all Dart fingerprinters\n\n35217 Add flutter build aar\n\n40927 Make module pod headers public\n\n44065 Build ios framework", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-27", "text": "44065 Build ios framework\n\n37206 Test that modules built as AAR contain the right assets and artifacts\n\n44127 build aar prints how to consume the artifacts\n\n23782 Add flutter_shared assets to module artifact\n\n22707 Gradle plugin support for adding flutter as subproject to another Android app\n\n9893 Removed logic from FlutterAppDelegate into FlutterPluginAppLifeCycleDelegate\n\n9922 Split out lifecycle protocol\n\n44026 Exit tool if a plugin only supports the embedding v2 but the app doesn\u2019t\n\n44214 Fix v1 embedding support heuristic for plugins\n\n43994 flutter build aar should also build plugins as AARs\n\n13455 Automatically register plugins in FlutterEngine. (#43855)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-28", "text": "44011 Move the plugin registrant to io.flutter.plugins and add the @Keep an\u2026\n\n44166 Add v1 plugin register function into v2 plugin template\n\n13394 Remove multiplexed Flutter Android Lifecycle. (#43663)\n\n45557 Add a note to generated plugins files\n\n45379 Add .flutter-plugins-dependencies to the project, which contains the app\u2019s plugin dependency graph\n\n3850 Support co-editing Flutter and Android in a single project\n\n4097 Support for debugging add-to-app modules in Android Studio\n\n4129 Smooth out the rough spots in add-to-app support\n\n4062 Re-enable attach button for add-to-app projects\n\n4004 Co-edit module created in Android Studio", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-29", "text": "4004 Co-edit module created in Android Studio\n\n33297 Instrument add to app flows\n\n33458 Add to app measurement\n\n34189 Instrument usage of include_flutter.groovy and xcode_backend.sh\n\n13289 Made restarting the Engine remember the last entrypoint that was used.\n\n12370 Added a default entrypoint variable to match android syntax.\n\n10823 Expose isolateId for engine\n\n13264 Made restarting the Engine remember the last entrypoint that was used.\n\n13789 add recent packages to javadoc list\n\n10481 Android embedding refactor pr40 add static engine cache\n\n29946 Let CupertinoPageScaffold have tap status bar to scroll to top", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-30", "text": "12587 Split out the logic to handle status bar touches into its own function\n\n44638 Add module to create template help text\n\n9351 Android Embedding Refactor PR32: Clean up logs in new embedding.\n\n6447 iOS Embedding Refactor\n\n41794 Updated the docstring for SystemNavigator.pop.\n\n9304 Decorate UIApplicationDelegate wrappers with matching UIKit deprecation\n\n266 [firebase_performance] support v2 android embedding\n\n274 [firebase_core] v2 embedding API\n\n275 [firebase_ml_vision] v2 embedding API\n\n282 [firebase_remote_config] Support v2 android embedder.\n\n287 [firebase_database] Support v2 android embedder.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-31", "text": "287 [firebase_database] Support v2 android embedder.\n\n1266 [firebase_analytics] Support Android v2 embedding\n\n1295 [firebase_storage] Support Android v2 embedding\n\n1369 Upgrade in-app-messaging to plugin api v2\n\n1370 Upgrade crashlytics to v2 plugin API\n\n1372 [firebase_dynamic_links] support v2 embedding\n\n2142 [Connectivity] migrate to the new android embedding\n\n2152 [battery] Support the v2 Android embedder\n\n2155 [in_app_purchase] migrate to the v2 android embedding\n\n2156 [Share] Support v2 android embedder.\n\n2157 [url_launcher] Migrate to the new embedding", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-32", "text": "2157 [url_launcher] Migrate to the new embedding\n\n2160 [package_info] Support the v2 Android embedder (with e2e tests)\n\n2162 [shared_preferences] Support v2 android embedder.\n\n2163 [device_info] Support v2 android embedder.\n\n2164 [sensor] Support v2 android embedder.\n\n2165 [camera] Migrate to the new embedding\n\n2167 [quick_actions] Support v2 android embedder.\n\n2169 [flutter_webview] Migrate to the new embedding\n\n2193 [android_alarm_manager] migrate to the V2 Android embedding\n\n2195 [android_intent] Cleanup the V2 migration", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-33", "text": "2195 [android_intent] Cleanup the V2 migration\n\n2196 [webview_flutter] (Trivial) Add V2 warnings\n\n2200 [flutter_webview] Revert v2 embedder support\n\n2204 [url_launcher] Re-land v2 embedding support\n\n2209 [webview_flutter] Re-land support v2 embedding support\n\n2226 [video_player] Add v2 embedding support\n\n2241 [Shared_preferences]suppress warnings\n\n2284 [path_provider] Add v2 embedding support for\n\n2327 [android_alarm_manager] Update minimum Flutter version to 1.12.0\n\n43461 Fixed usage of optional types in swift integration test.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-34", "text": "43461 Fixed usage of optional types in swift integration test.\n\n13423 Automatically destroy FlutterEngine when created by FlutterActivity or FlutterFragment.\n\n42958 Turn off bitcode for integration tests and add-to-app templates\n\n13428 Set the install name at link time for darwin dylibs\n\n41333 Merge Flutter assets in add to app\n\n39747 Fix type mismatch in Gradle\n\n39986 Enable Proguard by default on release mode\n\n40181 Update Kotlin and Gradle version\n\n40282 Flip the default for proguard\n\n40440 Rename useProguard method, so Gradle doesn\u2019t get confused\n\n40453 Enable R8\n\n40610 Enable the resource shrinker", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-35", "text": "40610 Enable the resource shrinker\n\n40900 Stop using deprecated features from Gradle\n\n40925 Use AndroidX in new projects by default\n\n41142 Add embedding as API dependency instead of compile only dependency\n\n41251 Migrate examples and tests to AndroidX\n\n41254 Test that flutter assets are contained in the APK\n\n41885 Include embedding transitive dependencies in plugins\n\n41942 Use mergeResourcesProvider instead of deprecated mergeResources\n\n42022 Fix smoke test\n\n42306 Ensure that flutter assets are copied in the AAR\n\n42352 Add android.permission.WAKE_LOCK permission to abstract_method_smoke_test\n\n42360 Add smoke test for the new Android embedding", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-36", "text": "42360 Add smoke test for the new Android embedding\n\n42548 Print message and log event when app isn\u2019t using AndroidX\n\n42684 Remove isNewAndroidEmbeddingEnabled flag when reading an existing pro\u2026\n\n42709 Test Gradle on Windows\n\n42981 Remove GeneratedPluginRegistrant.java\n\n43187 Ensure android.enableR8 is appended to a new line\n\n43479 Refactor gradle.dart\n\n43669 Don\u2019t read AndroidManifest.xml if it doesn\u2019t exit\n\n43674 Add missing import\n\n43675 Fix device lab tests\n\n43927 Fix stdout test\n\n43941 Tweaks after the gradle.dart refactor", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-37", "text": "43941 Tweaks after the gradle.dart refactor\n\n44301 Don\u2019t print how to consume AARs when building plugins as AARs\n\n44243 Build local maven repo when using local engine\n\n44302 Don\u2019t add x86 nor x64 when building a local engine in debug mode\n\n44637 Attach looks at future observatory URIs\n\n44783 Forward ProcessException to error handlers\n\n44797 Build AAR for all build variants by default\n\n45439 Fallback to protocol discovery if mdns returns null\n\n45579 Add integration test for transitive plugin dependencies\n\n45743 Android log reader reads any recent logs\n\n45937 Handle case where lastLogcatTimestamp is null", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-38", "text": "45937 Handle case where lastLogcatTimestamp is null\n\n46040 Enable Android embedding v2 on the beta, dev and stable channel\n\n46101 Remove flutterBuildPluginAsAarFeature flag\n\n14136 Expanded our scenario_app docs.\n\n14094 Started specifying the OS version for running the tests.\n\n13421 FlutterAppDelegate: Added back in empty lifecycle methods\n\n13073 Removed retain cycle from notification center.\n\n13006 Refactor: FlutterDartProject\n\n44782 Updated flutter/examples to further conform to new embedding: removed references to FlutterApplication, deleted all MainActivity\u2019s that were not necessary, removed all direct invocations of GeneratedPluginRegistrant. (#22529)\n\n45740 Do not delete output directory during flutter build ios-framework", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-39", "text": "45740 Do not delete output directory during flutter build ios-framework\n\n45560 Always compile with isysroot on iOS to point to SDK root\n\n45436 Always compile with -isysroot flag on iOS to point to SDK root\n\n45189 Remove chmod to make Flutter framework headers unwritable\n\n45136 Remove FLUTTER_DEVICELAB_XCODE_PROVISIONING_CONFIG code paths\n\n44633 Turn on bitcode for integration tests and add-to-app templates\n\n44625 Release startup lock during long-lived build ios framework\n\n44324 Add swift_versions to plugin template podspec, include default CocoaPod version\n\n43915 Observe logging from VM service on iOS 13\n\n43553 Pass environment variables through to xcodebuild", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-40", "text": "43553 Pass environment variables through to xcodebuild\n\n42872 Remove use_modular_headers from Podfiles using libraries\n\n42808 Run flutter pub get before pod install in platform_view_ios__start_up test\n\n42254 Update minimum version to Xcode 10.2\n\n42204 Add use_modular_headers! to default Podfile\n\n42029 Always embed iOS Flutter.framework build mode version from Xcode configuration\n\n41882 Increase template Swift version from 4 to 5\n\n41491 Skip pod initialization if version >= 1.8.0.\n\n40792 Move build info checks from generating files to the xcode build\n\n40611 Warn when build number and version can\u2019t be parsed on iOS", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-41", "text": "40401 Make FlutterPluginRegistrant a static framework so add-to-app can use static framework plugins\n\n40174 Keep Flutter.framework binaries writable so they can be code signed\n\n40117 Show outdated CocoaPods version in hint text\n\n39539 Keep Flutter.framework binaries writable so they can be code signed\n\n39509 Skip failing add2app test to unblock roll\n\n38992 Clean Xcode workspace during flutter clean\n\n38905 Remove iphonesimulator from SUPPORTED_PLATFORMS for Profile and Release modes\n\n11357 Rename first frame method and notify FlutterActivity when full drawn (#38714 #36796).\n\n11844 Updated API usage in scenario app by deleting unnecessary method.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-42", "text": "11844 Updated API usage in scenario app by deleting unnecessary method.\n\n11902 Remove un-needed FragmentActivity import statements to facilitate proguard.\n\n12305 Introduce flutterfragmentactivity\n\n12328 Added javadoc comments to FlutterActivity and FlutterFragmentActivity.\n\n12359 Forwards Flutter View to platform views and detaches when needed.\n\n12362 Fixes race condition that was reported internally.\n\n12806 Move initialization into FlutterEngine\n\n12987 Added FlutterActivity and FlutterFragment hook to cleanUpFlutterEngine() as symmetry for configureFlutterEngine(). (#41943)\n\n13214 Forwards Activity result to FlutterFragment in FlutterFragmentActivity.\n\n13215 Adds Dark Mode support to new Android embedding (this was accidentally missed previously).", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-43", "text": "13402 Converted ActivityAware and ServiceAware Lifecycles to opaque objects (#43670)\n\n13660 Fix splash screen lookup. (#44131)\n\n13698 Fix plugin registrant reflection path. (#44161)\n\n13738 Removed scary experimental warnings for new embedding. (#44314)\n\n13739 Point old plugin registry accessors to new embedding plugin accessors. (#44225)\n\n13743 Expose asset lookup from plugin binding. (#42019)\n\n13855 Add support for \u2013dart-flags in FlutterShellArgs. (#44855)\n\n13932 Removed GET_ACTIVITIES flag from all manifest meta-data lookups. (#38891)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-44", "text": "2087 [android_alarm_manager] Update and migrate iOS example project\n\n2088 [android_intent] Update and migrate iOS example project\n\n2089 [battery] Update and migrate iOS example project\n\n2090 [camera] Update and migrate iOS example project\n\n2091 [connectivity] Update and migrate iOS example project\n\n2092 [device_info] Update and migrate iOS example project\n\n2093 [google_maps_flutter] Update and migrate iOS example project\n\n2094 [google_sign_in] Update and migrate iOS example project\n\n2095 [image_picker] Update and migrate iOS example project\n\n2096 [in_app_purchase] Update and migrate iOS example project\n\n2097 [local_auth] Update and migrate iOS example project", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-45", "text": "2097 [local_auth] Update and migrate iOS example project\n\n2098 [package_info] Update and migrate iOS example project\n\n2099 [path_provider] Update and migrate iOS example project\n\n2100 [quick_actions] Update and migrate iOS example project\n\n2101 [sensors] Update and migrate iOS example project\n\n2102 [share] Update and migrate iOS example project\n\n2103 [shared_preferences] Update and migrate iOS example project\n\n2109 [url_launcher] Update and migrate iOS example project\n\n2110 [video_player] Update and migrate iOS example project\n\n2115 [camera] Define clang modules in for iOS\n\n2125 [in_app_purchase] Define clang module for iOS", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-46", "text": "2125 [in_app_purchase] Define clang module for iOS\n\n2128 [image_picker] Define clang module for iOS\n\n2135 [android_alarm_manager] Define clang module for iOS\n\n2137 [connectivity] Define clang module for iOS\n\n2138 [device_info] Define clang module for iOS\n\n2144 [android_intent] Define clang module for iOS\n\n2145 [instrumentation_adapter] Define clang module for iOS\n\n2146 [local_auth] Define clang module for iOS\n\n2147 [path_provider] Define clang module for iOS\n\n2148 [package_info] Define clang module for iOS\n\n2149 [quick_actions] Define clang module for iOS", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-47", "text": "2149 [quick_actions] Define clang module for iOS\n\n2175 [sensors] Define clang module for iOS\n\n2176 [shared_preferences] Define clang module for iOS\n\n2177 [url_launcher] Define clang module for iOS\n\n2179 [battery] Define clang module for iOS\n\n2180 [share] Define clang module for iOS\n\n2182 [google_maps_flutter] Define clang module for iOS, fix analyzer warnings\n\n2183 [video_player] Define clang module for iOS\n\n2184 [google_sign_in] Define clang module for iOS\n\n2185 [webview_flutter] Define clang module for iOS\n\n2186 Run clang analyzer on iOS and macOS code in CI test when packages change", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-48", "text": "40302 Set DEFINES_MODULE for FlutterPluginRegistrant to generate modulemap\n\n2206 [flutter_plugin_android_lifecycle] Update README with new plugin name\n\n2207 [flutter_plugin_android_lifecycle] bump e2e depenency to 0.2.1\n\n2223 [flutter_plugin_android_lifecycle] register the e2e plugin in the example app\n\n2243 [flutter_plugin_android_lifecycle] Adapt the FlutterLifecycleAdapter to the new embedding API\n\n44043 Add Android embedding version analytics\n\n2120 [image_picker] fix crash when aar from \u2018flutter build aar\u2019\n\n2168 Add plugin for Android lifecycle in embedding\n\n2174 [url_launcher] Enable androidx and jetifier in android gradle properties", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-49", "text": "11239 Remove dart entrypoint Intent parameter from FlutterActivity. (#38713)\n\n12469 Started asserting the FlutterEngine is running before communicating over channels.\n\n13403 Use DartExecutor.getBinaryMessenger in FlutterNativeView instead of deprecated send methods\n\nMaterial\n\nMaterial continues to a focus for the Flutter team.\nIn this release, we refreshed all Material widgets\nwith dark mode support. Also, we added support for\nextending the height of the Scaffold\u2019s body behind\nthe app bar, which was contributed by a community member!\n\n36998 Added properties in DropdownButtonFormField to match DropdownButton\n\n37962 Show search app bar theme\n\n38583 Added InheritedTheme\n\n38650 Allow independent theming of Persistent and Modal bottom sheets", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-50", "text": "38650 Allow independent theming of Persistent and Modal bottom sheets\n\n38709 [Material] Add contentPadding property to SwitchListTile\n\n38726 Make disabled buttons/chips/text fields not be focusable.\n\n38813 Add ToggleButtons.textStyle property\n\n38831 [Material] Add clip property to bottom sheet and theme\n\n38898 ToggleButtons test improvement\n\n39144 Add the textAlignVertical param to TextFormField\n\n39156 Added Scaffold.extendBodyBehindAppBar\n\n39299 Add showAboutDialog sample\n\n39333 Allow independent theming of Persistent and Modal bottom sheets Background Color\n\n39433 Add helperMaxLines to InputDecoration and InputDecorationTheme", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-51", "text": "39433 Add helperMaxLines to InputDecoration and InputDecorationTheme\n\n39572 Prevent exception when creating a Divider borderSide\n\n39583 Fix single action banner to ensure button alignment\n\n39627 Default colorScheme data in ButtonThemeData (fix for #38655)\n\n39632 Updates to debugFillProperties to test all properties in slider.dart and slider_test.dart\n\n39903 Fixed passing autofocus to MaterialButton, and when rebuilding Focus widget.\n\n39924 Adds DartPad option to the DartDoc snippet generator.\n\n40390 a11y improvements for textfield\n\n40608 Add the option to configure a chip check mark color\n\n40641 Add onLongPress to Buttons", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-52", "text": "40641 Add onLongPress to Buttons\n\n40665 Fix CupertinoTextField and TextField ToolbarOptions not changing\n\n40713 Material textselection context menu cannot disable select all\n\n40994 Fix the ThemeData.copyWith toggleButtonsTheme argument type\n\n41120 Dropdown Menu layout respects menu items intrinsic sizes\n\n41150 Rebuild modal routes when the value of userGestureInProgress changes\n\n41172 fix some bad indentations\n\n41320 [Material] Remove text ripple from TextFields\n\n41338 Fix ReorderableListView\u2019s use of child keys (#41334)\n\n41463 [Chip] Make sure InkResponse is in the foreground on delete for chips with background color", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-53", "text": "41625 Update DefaultTabController to allow for zero tabs\n\n41629 [Material] Fix Tooltip to respect ambient Directionality\n\n41632 fix confusing \u2018popupTheme\u2019 variable name in a MaterialBannerTheme method\n\n41640 some formatting changes\n\n41650 DropdownButton.style API doc example for differing button and menu item text styles\n\n41864 Update BottomAppBar to use elevation overlays when in a dark theme\n\n41972 Add enableFeedback param to MaterialButton, RawMaterialButton and IconButton\n\n42033 Reprise: Dropdown Menu layout respects menu items intrinsic sizes\n\n42189 Fix regression with ModalBottomSheets not responding to changes in theme\n\n42366 TextStyle.fontFamily should override fontFamily parameter in ThemeData", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-54", "text": "42404 Add isDismissible configuration for showModalBottomSheet\n\n42482 Only dismiss dropdowns if the orientation changes, not the size.\n\n42554 Fix route focusing and autofocus when reparenting focus nodes.\n\n42613 Fix Tooltip implementation of PopupMenuButton\n\n42683 Optimize focus operations by caching descendants and ancestors.\n\n42779 Fix chip ripple bug \u2014 No longer two ripples\n\n42811 Add a Focus node to the DropdownButton, and adds an activation action for it.\n\n42936 Support AppBars with jumbo titles\n\n43213 Add focus nodes, hover, and shortcuts to switches, checkboxes, and radio buttons.\n\n43422 trivial fixed AboutListTile having an empty icon placeholder when no icon set.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-55", "text": "43511 Improve DropdownButton assert message\n\n43526 Change PopupMenuButton.icon type to Widget\n\n43722 Make selected item get focus when dropdown is opened\n\n43843 Remove print and fix code formatting\n\n43848 Don\u2019t allow Disabled InkWells to be focusable\n\n43859 Add convenience accessor for primaryFocus\n\n43946 Adding subtitle to ExpansionTile\n\n43981 Fix typo in app_bar.dart\n\n44029 Use alphabetic baselines for layout of InputDecorator\n\n44068 Fix typo in tabs.dart\n\n44076 Typo on comments\n\n44160 Wire selectedItemBuilder through DropdownButtonFormField", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-56", "text": "44160 Wire selectedItemBuilder through DropdownButtonFormField\n\n44296 ModalBarrier and Drawer barrier prevents mouse events\n\n44736 Check in new diffs to material localizations\n\n44787 Fix snippets to include element ID in the output sample.\n\n44867 FocusableActionDetector widget\n\n45081 Remove duplicated expect from text field test\n\n45362 Add widget of the week video embeddings\n\nText & Accessibility\n\nIn Text and Accessibility, we have several enhancements in ButtonBar and AlertDialog to prevent text overflow.\n\n40468 Propagate textfield character limits to semantics\n\n41730 Allow customization of label styles for semantics debugger\n\n42344 Add onVisible callback to snackbar.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-57", "text": "42344 Add onVisible callback to snackbar.\n\n42368 Update android semantics test to match existing engine behavior.\n\n43193 ButtonBar aligns in column when it overflows horizontally\n\n43226 Implement AlertDialog title/content overflow scroll\n\n38573 Clamp scrollOffset to prevent textfield bouncing\n\n41108 Fixing a text editing bug happening when text field changes.\n\n44605 Changing RenderEditable.textAlign doesn\u2019t break hot reload anymore\n\nAnimation & Scroll\n\nFor animation, we released the\nTweenAnimationBuilder\nfor building custom implicit animations. For more information,\ncheck out this TweenAnimationBuilder video on Youtube.\n\n38317 TweenAnimationBuilder for building custom animations without managing an AnimationController\n\n38979 Adding onEnd callback to implicit animated widgets", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-58", "text": "38979 Adding onEnd callback to implicit animated widgets\n\n43756 Mark routes as opaque when added without animation\n\n39142 fix sliverfixedextent with sliverchildbuilderdelegate does not correc\u2026\n\n44965 Scroll scrollable to keep focused control visible.\n\nWeb\n\nWe increased our support for web, moving it from the dev channel to the beta channel. For more details, please check web support blog post.\n\n37819 Add HtmlElementView (the Flutter Web platform view)\n\n38723 Handle compilation failures from web application\n\n38823 Print service url when connecting to web applications\n\n39006 Add web workflow to default validators\n\n39066 Kill resident runner on browser disconnect.\n\n39073 Add profile mode to flutter web applications", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-59", "text": "39073 Add profile mode to flutter web applications\n\n39189 fix source map loading and service protocol for flutter web\n\n39344 Upstream changes necessary for text editing in flutter web\n\n39364 Correct libraries path and remove dart:io and dart:isolate for dart platform\n\n39414 Make sure profile is forwarded through build web command\n\n39462 Remove run in shell and add unit test for chrome launching\n\n39543 create .dart_tool if it is missing\n\n39628 Automatically generated registrants for web plugins\n\n39748 print launching on device message\n\n39751 Minor cleanup and prevent multiple exit\n\n39752 Add delay to recompile request for web\n\n39756 remove web flag from create", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-60", "text": "39756 remove web flag from create\n\n39774 workaround for mangled web sdk source map packages\n\n39910 If there are no web plugins, don\u2019t generate a plugin registrant\n\n39950 Register reload sources call and make \u2018r\u2019 restart for web\n\n39951 Add \u201cweb\u201d server device to allow running flutter for web on arbitrary browsers\n\n39983 Update the supported library set for Flutter for web\n\n39999 Disable the performance overlay for web\n\n40175 Ensure we send hot restart events for flutter web\n\n40191 add host and port to run configuration for web devices\n\n40301 Allow skipping webOnlyInitializePlatform in Flutter for Web\n\n40370 rename port to web-port and hostname to web-hostname", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-61", "text": "40370 rename port to web-port and hostname to web-hostname\n\n40465 Pass \u2013web-hostname and \u2013web-port to release mode debugging options\n\n40627 Allow skipping chrome launch with \u2013no-web-browser-launch\n\n40757 Fix visibility of web server device when Chrome is not available\n\n41222 Copy archived js part files out of dart_tool directory\n\n41347 Fix timing issues in initialization of web resident runner\n\n41386 Serve every html file under web\n\n41397 Keymap for Web\n\n41441 Exit resident web runner on compilation failure\n\n41545 Add analytics tracking for compile and refresh times for Flutter Web\n\n41618 Rename Server/web to Headless Server/headless-server", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-62", "text": "41695 Add more information to cannot find Chrome message\n\n41815 [web] Make it clear that lowercase \u201cr\u201d can also perform hot restart\n\n41906 Ensure plugin registrants are generated in build_web\n\n41996 [web] Always send the route name even if it\u2019s null\n\n42144 Don\u2019t eagerly call runMain when \u2013start-paused is provided to web application\n\n42260 Small cleanup of web code\n\n42289 Ensure precache web works on dev branch\n\n42531 Print correct hostname when web server is launched\n\n42676 [web] Update web runner message with flutter.dev/web\n\n42701 serve correct content type from debug server\n\n42857 Fix progress indicators for release/profile builds of web.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-63", "text": "42857 Fix progress indicators for release/profile builds of web.\n\n42951 implement debugTogglePlatform for the web\n\n42970 Rename headless server to web server\n\n43214 For \u2013profile builds on web, still use -O4 but unminified names.\n\n43573 Catch MissingPortFile from web tooling.\n\n43576 Enable usage of experimental incremental compiler for web\n\n44028 Support \u2013no-resident on the web\n\n44263 Allow web server device to use extension if started with \u2013start-paused\n\n44268 Switch from using app.progress to app.webLaunchUrl for passing web launch urls\n\n44421 switch web test to macOS\n\n44744 Ensure web-server does not force usage of dwds", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-64", "text": "44744 Ensure web-server does not force usage of dwds\n\n44746 Remove chrome device web integration test\n\n44830 Update manual_tests to be able to run on macOS/web\n\n45145 cache sdkNameAndVersion logic for web devices\n\n45286 Fix experimental incremental web compiler for Windows\n\n11360 build legacy web SDK\n\n11421 sync Flutter Web engine to the latest\n\n11732 last flutter web sync: cc38319841\n\n11796 Provide a hook for a plugin handler to receive messages on the web\n\n12161 Ensure that the web image ImageShader implements Shader\n\n12335 [Web] Implement dark mode support for web", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-65", "text": "12335 [Web] Implement dark mode support for web\n\n12445 [web] filter test targets; cache host.dart compilation\n\n12712 Support correct keymap for web\n\n12747 Add web implementation for channel_buffers.dart\n\n12753 [web] Don\u2019t require felt to be in PATH\n\n12794 [web] Add support for path transform\n\n12811 [web] Implement basic radial gradient (TileMode.clamp, no transform)\n\n13003 [web] Update the url when route is replaced\n\n13066 [web] Add basic color per vertex drawVertices API support\n\n13141 Enable/tweak web sdk source maps\n\n13161 Enable/tweak web sdk source maps, take 2", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-66", "text": "13187 [web] Environment variable to disable felt snapshot\n\n13190 [web] Fix canvas reuse metrics. Refactor drawVertices code.\n\n13259 [web] Support -j to use goma in felt build\n\n13268 [web] Support input action\n\n13272 [web] [test] Adding firefox install functionality to the test platform\n\n13296 [web] Cupertino dynamic color fix.\n\n13359 Web: fix Color subclass handling\n\n13462 [web] Get the size from visualviewport instead of window.innerHeight/innerW\u2026\n\n13483 web: fix Paragraph.getBoxesForRange for zero-length ranges\n\n13634 [web] Ignore changes in *.ttf files in felt build watch mode", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-67", "text": "13699 [web] Don\u2019t send keyboard events from text fields to flutter\n\n13722 [web] Proper support for text field\u2019s obscureText\n\n13741 [web] Refactor text editing to handle any order of platform messages gracefully\n\n13748 [web] Support gif/webp animations, Speed up image drawing in BitmapCanvas.\n\n13769 [web] Implement TextStyle.shadows\n\n13779 [web] Fix path to svg for drrect\n\n13802 [web] Fix selectable text rendering\n\n13809 [web] Fix blendmode for images\n\n13860 [web] Change canvas sibling transforms to 3d with z=0 to get around canvas rendering bug.\n\n13901 [web] Fix single line bitmap canvas text shadow", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-68", "text": "13901 [web] Fix single line bitmap canvas text shadow\n\n13909 [web] Implement PathMetrics.length\n\n13922 [web] Flutter for web autocorrect support\n\n13929 [web] Allow users to enable canvas text measurement\n\n13940 [web] Fix Edge detection for correct dom_renderer reset\n\n13960 [web] Fix default line-height issue for Firefox\n\n13981 [web] use Element.nodes instead of Element.children in text layout\n\n2119 Add web url launcher\n\nDesktop\n\nWe are also moving macOS support from tech preview to alpha,\nenabling it in the dev channel. For more details, see the\nFlutter wiki.\n\n37901 [macos] Check for special keys before creating a logical key", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-69", "text": "37901 [macos] Check for special keys before creating a logical key\n\n38748 Create correctly structured framework for macOS\n\n38858 Use GLFW-name artifacts on Windows and Linux\n\n38909 Add support for macOS release/profile mode (3 of 3)\n\n39017 Add \u201cOneSequenceRecognizer.resolvePointer\u201d. Fix DragGestureRecognizer crash on multiple pointers\n\n39264 Add profile support on macOS\n\n39432 Do not hide .git in zip for Windows\n\n39702 Fix macOS App.framework version symlink\n\n39836 Switch to the Win32 Windows embedding\n\n40011 [windows] Searches for pre-release and \u2018all\u2019 Visual Studio installations\n\n40186 Add shortcuts and actions for default focus traversal", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-70", "text": "40186 Add shortcuts and actions for default focus traversal\n\n40194 Add an ephemeral directory to Windows projects\n\n40197 [windows] Refactor to optimize vswhere queries\n\n40294 fix copy command and remove resolve sync for macOS assemble\n\n40375 Harden macOS build use of Xcode project getInfo\n\n40393 Convert build mode to lowercase in tool_backend\n\n40587 Add an ephemeral directory for Linux\n\n40730 Invalidate macOS pods on plugin changes\n\n40851 Support create for macOS (app and plugin)\n\n41015 Add the beginnings of plugin support for Windows and Linux\n\n41332 Prevent PointerEnter[or Exit]Event from erasing event.down value", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-71", "text": "41551 Pass Linux build mode on command line\n\n41612 AOT support for Linux Desktop I: switch Linux builds to assemble\n\n41747 Add Profile entry to macOS Podfile\n\n42031 Rewrite MouseTracker\u2019s tracking and notifying algorithm\n\n42235 Reading deviceId for RawKeyEventDataAndroid event\n\n42487 refactor depfile usage and update linux rule\n\n42861 Add repeatCount to RawKeyEventDataAndroid\n\n42962 Remove linux-x64 unpack logic\n\n43238 Fixing focus traversal when the node options are empty\n\n43362 Allow rebuilding of docker image, re-enable deploy gallery macos\n\n43758 Split desktop config fallback variable by platform", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-72", "text": "43758 Split desktop config fallback variable by platform\n\n44130 Add command key bindings to macOS text editing and fix selection.\n\n44410 Add macOS fn key support.\n\n44576 [ci] Use the latest Cirrus Image for macOS\n\n44620 Bump memory requirements for tool_tests-general-linux\n\n44844 Properly interpret modifiers on GLFW key events\n\n45264 Add macOS hot reload test\n\n45392 [ci] more resources to Windows tasks\n\n8507 Add texture support for macOS shell.\n\n11324 Clean up Windows and Linux build output\n\n11327 [Windows] Update API for alternative Windows shell platform implementation\n\n11380 Use App.framework in macOS FlutterDartProject", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-73", "text": "11380 Use App.framework in macOS FlutterDartProject\n\n11386 Allow non-resizable windows in GLFW embedding\n\n11475 buildfix: support build windows release/profile mode(#32746)\n\n11828 [Windows] Address #36422 by adding a context for async resource uploading\n\n12230 Add an initial macOS version of FlutterAppDelegate\n\n12234 [glfw/windows] Stops keeping track of input models\n\n12267 [macos] Stops keeping track of text input models\n\n12276 Add system font change listener for windows\n\n12423 add windows embedding test\n\n12809 Use the x64 host toolchain for x86 target gen_snapshot only on Linux", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-74", "text": "12814 Enable all engine test on windows\n\n13300 Switch the MacOS Desktop embedder to using a thread configuration where the platform and render task runners are the same.\n\n13702 Fix editing selection and deletion on macOS\n\nFramework\n\nWe\u2019ve fixed many bugs in this release to improve the quality and stability of our framework.\n\n38643 PlatformViewLink handles focus\n\n38699 fix widgetspan does not work with ellipsis in text widget\n\n38789 Fix DragTarget not being rebuilt when a rejected Draggable enters #38786\n\n38930 Implement system fonts system channel listener\n\n38936 Fix KeySet (and LogicalKeySet) hashCode calculation\n\n39059 Explain const values in MediaQuery test file", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-75", "text": "39059 Explain const values in MediaQuery test file\n\n39085 Make inspector details subtree depth configurable.\n\n39089 Correct InheritedTheme.captureAll() for multiple theme ancestors of the same type\n\n39195 respect reversed scroll views\n\n39252 Adds relayout option to CustomMultiChildLayout.\n\n39282 Expose text metrics in TextPainter.\n\n39354 Add IterableFlagsProperty and use it on proxy box classes\n\n39428 Replace doc example text\n\n39446 Add viewType to PlatformViewLink\n\n39844 Fix curve for popping heroes\n\n40099 Fix double.infinity serialization\n\n40105 Ensure frame is scheduled when root widget is attached", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-76", "text": "40105 Ensure frame is scheduled when root widget is attached\n\n40119 fix skips to include all channels\n\n40280 PlatformView: recreate surface if the controller changes\n\n40306 Restore offstage and ticker mode after hero pop and the from hero is null\n\n40609 Specify ifTrue and ifFalse for strut FlagProperty\n\n40635 Return WidgetSpans from getSpanForPosition\n\n40638 Allow sending platform messages from plugins to the framework and implement EventChannel\n\n40709 Fixed Selectable text align is broken\n\n40718 Handle CR+LF end of line sequences in the license parser\n\n40775 Use EdgeInsetsGeometry instead of EdgeInsets\n\n40917 AnimatedBuilder API Doc improvements", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-77", "text": "40917 AnimatedBuilder API Doc improvements\n\n41145 Explicitly set CocoaPods version\n\n41245 Change the way ActionDispatcher is found.\n\n41329 Refactor: Base tap gesture recognizer\n\n41417 Address previous comments, fix Intent.doNothing.\n\n41763 No longer rebuild Routes when MediaQuery updates\n\n41791 Refactor: Make MouseTracker test concise with some utility functions\n\n41803 Fixed media query issues and added test to prevent it from coming back\n\n41879 Make MouseTracker.sendMouseNotifications private\n\n42076 create gesture recognizers on attach and dispose on detach to avoid leaks\n\n42253 Change modal barrier to dismissing on tap up\n\n42484 Gradient transform", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-78", "text": "42484 Gradient transform\n\n42526 Improve routers performance\n\n42558 Use placeholder dimensions that reflect the final text layout\n\n42688 Source Code Comment Typo Fixes\n\n42777 Fix memory leak in TransitionRoute\n\n42879 Re-implement hardware keyboard text selection.\n\n42953 Soften layer breakage\n\n43006 Set default borderRadius to zero in ClipRRect (as documented)\n\n43246 Tap.dart: Fixes the spacing to the right side of reason\n\n43296 Skip failing test to green build\n\n43467 Fixed bug where we could accidently call a callback twice.\n\n43677 add libzip cache artifact", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-79", "text": "43677 add libzip cache artifact\n\n43684 [flutter_runner] Use sky_engine from the topaz tree\n\n43685 Remove Poller class from flutter_tools\n\n43739 enable avoid_web_libraries_in_flutter\n\n43865 Reorder show and setEditingState calls to the IMM\n\n44150 Manually roll engine to unred the tree\n\n44217 Moving pointer event sanitizing to engine.\n\n44233 Remove yield from inherited model\n\n44408 Remove no longer needed clean up code\n\n44422 Remove TextRange, export it from dart:ui\n\n44490 Fix \u201cnode._relayoutBoundary == _relayoutBoundary\u201d crash\n\n44611 Convert to TextPosition for getWordBoundary", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-80", "text": "44611 Convert to TextPosition for getWordBoundary\n\n44617 Make disposing a ScrollPosition with pixels=null legal\n\n44622 Track and use fallback TextAffinity for null affinity platform TextSelections.\n\n44967 Try a mildly prettier FlutterError and make it less drastic in release mode\n\n45083 Fix draggable scrollable sheet scroll notification\n\n45240 implicit-casts:false in flutter_web_plugins\n\n45249 implicit-casts:false in flutter_goldens and flutter_goldens_client\n\nEngine\n\nIn this update, the core engine continues to see many improvements, including a fix that solves the long-requested scrolling performance issue on iPhoneX/Xs.\n\n9386 [glfw] Send the glfw key data to the framework.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-81", "text": "9386 [glfw] Send the glfw key data to the framework.\n\n9498 Notify framework to clear input connection when app is backgrounded (#35054).\n\n9806 Reuse texture cache in ios_external_texture_gl.\n\n9864 Add capability to add AppDelegate as UNUserNotificationCenterDelegate\n\n9888 Provide dart vm initalize isolate callback so that children isolates belong to parent\u2019s isolate group.\n\n10154 Started taking advantage of Skia\u2019s new copyTableData to avoid superfluous copies.\n\n10182 Made flutter startup faster by allowing initialization to be parallelized\n\n10326 copypixelbuffer causes crash\n\n10670 Expose LineMetrics in dart:ui\n\n10945 De-dup FILE output for each license", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-82", "text": "10945 De-dup FILE output for each license\n\n11041 Add a BroadcastStream to FrameTiming\n\n11049 Release _ongoingTouches when FlutterViewController dealloc\n\n11062 Provide a placeholder queue ID for the custom embedder task runner.\n\n11063 Update ExternalViewEmbedder class comment.\n\n11070 Platform View implemenation for Metal\n\n11210 Add Chrome to Dockerfile\n\n11222 Dont present session twice\n\n11224 Update metal layer drawable size on relayout.\n\n11226 Make firebase testlab always pass\n\n11228 Re-enable firebase test and don\u2019t use google login\n\n11230 Update tflite_native and language_model revisions to match the Dart SDK", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-83", "text": "11256 Upgrade compiler to Clang 10.\n\n11265 make it possible to disable debug symbols stripping\n\n11270 Reset NSNetService delegate to nil\uff0cwhen stop service.\n\n11283 Fix objects equal to null not being detected as null\n\n11300 Do not Prepare raster_cache if view_embedder is present\n\n11305 Fix a segfault in EmbedderTest.CanSpecifyCustomTaskRunner\n\n11306 Set FlutterMacOS podspec min version to 10.11\n\n11309 Fix change_install_name.py to be GN-friendly\n\n11310 When using a custom compositor, ensure the root canvas is flushed.\n\n11315 Do not add null task observers", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-84", "text": "11315 Do not add null task observers\n\n11330 Remove engine hash from the output artifact\n\n11355 update sim script\n\n11356 Remove engine hash from pom filename\n\n11361 Include Java stack trace in method channel invocations\n\n11367 Make message loop task entry containers thread safe\n\n11368 Switch to an incremental runloop for GLFW\n\n11374 Update scenarios readme\n\n11382 Trivial: remove empty line in the pom file\n\n11384 Account for root surface transformation on the surfaces managed by the external view embedder.\n\n11388 Allow overriding the GLFW pixel ratio\n\n11392 Wire up software rendering in the test compositor.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-85", "text": "11392 Wire up software rendering in the test compositor.\n\n11394 Avoid root surface acquisition during custom composition with software renderer.\n\n11395 Remove deprecated ThreadTest::GetThreadTaskRunner and use the newer CreateNewThread API.\n\n11416 Shrink cirrus docker image: reduce RUN count, apt-get clean\n\n11419 Support non-60 refresh rate on PerformanceOverlay\n\n11420 Fix touchpad scrolling on Chromebook\n\n11423 Add tracing of the number of frames in flight in the pipeline.\n\n11427 Skip empty platform view overlays.\n\n11436 update method for skia\n\n11456 Update the ui.LineMetrics.height metric to be more useful to external users\n\n11473 Add missing newline at EOF", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-86", "text": "11473 Add missing newline at EOF\n\n11489 Ensure trailing newline before EOF in C++ sources\n\n11520 Bitcode only for release\n\n11524 Reuse texture cache in ios_external_texture_gl\n\n11528 Strip bitcode from gen_snapshot\n\n11537 Add check to enable metal for import\n\n11550 Make Skia cache size channel respond with a value\n\n11554 make engine, ui, and sdk rewriter inputs of dill construction\n\n11576 Minor tweaks to the Doxygen theme.\n\n11622 Include from font_asset_provider\n\n11635 [flutter_runner] Port Expose ViewBound Wireframe Functionality", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-87", "text": "11636 [fidl][flutter_runner] Port Migrate to new fit::optional compatible APIs\n\n11638 Update CanvasSpy::onDrawEdgeAAQuad for Skia API change\n\n11649 [flutter] Port: Run handle wait completers on the microtask queue\n\n11654 Append newlines to EOF of all translation units.\n\n11655 Don\u2019t crash while loading improperly formatted fonts on Safari\n\n11669 Add style guide and formatting information\n\n11717 Return a JSON value for the Skia channel\n\n11722 Quote the font family name whenever setting the font-family property.\n\n11736 Add wasm to sky_engine\n\n11776 [flutter_runner] Port over all the changes to the dart_runner cmx files", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-88", "text": "11783 completely strip bitcode\n\n11795 Add a good reference source for font metrics.\n\n11804 Incorporate View.setSystemGestureExclusionRects code review feedback from #11441\n\n11808 Annotate nullability on FlutterEngine to make swift writing more ergonomic\n\n11835 [CFE/VM] Fix merge/typo for bump to kernel version 29\n\n11839 Remove ENABLE_BITCODE from Scenarios test app\n\n11842 Fix RTL justification with newline by passing in full justify tracking var\n\n11847 Add a sample unit test target to flutter runner\n\n11849 Support building standalone far packages with autogen manifests\n\n11875 [flutter_runner] Add common libs to the test far", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-89", "text": "11875 [flutter_runner] Add common libs to the test far\n\n11877 Finish plumbing message responses on method channels\n\n11880 Handle new navigation platform messages\n\n11893 Add @Keep annotation\n\n11899 Improve input method and Unicode character display(#30661)\n\n12011 Cherry-picks for 1.9.1\n\n12016 [flutter_runner] Kernel platform files can now be built in topaz\n\n12023 Fix multi span text ruler cache lookup failure.\n\n12026 [flutter_runner] Plumb Flutter component arguments to the Dart entrypoint\n\n12034 [flutter_runner] Refactor our build rules to make them more inline with topaz", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-90", "text": "12048 [flutter_runner] Generate symbols for the Dart VM profiler\n\n12054 [flutter_runner] Port the accessibility bridge from Topaz\n\n12076 Add a method to flutter_window_controller to destroy the current window.\n\n12080 Don\u2019t quote generic font families\n\n12081 Add GradientRadial paintStyle implementation\n\n12087 Don\u2019t launch the observatory by default on each embedder unit-test invocation.\n\n12204 Don\u2019t disable toString in release mode for dart:ui classes\n\n12205 Don\u2019t load Roboto by default\n\n12218 Namespace patched SDK names to not conflict with Topaz\n\n12222 Do not generate kernel platform files on topaz tree", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-91", "text": "12222 Do not generate kernel platform files on topaz tree\n\n12226 [web_ui] add missing dispose handler for MethodCalls to flutter/platform_view\n\n12227 [web_ui] PersistedPlatformView attribute update handling to enable resizing\n\n12228 pin and auto-install chrome version\n\n12229 Improve check to render (or not) a DRRect when inner falls outside of outer on RecordingCanvas\n\n12249 Editable text fix\n\n12253 Implement Base32Decode\n\n12256 Do not assume Platform.script is a Dart source file during training.\n\n12257 Re-enable ThreadChecker and fix associated failures\n\n12258 Refactor and polish the \u2018felt\u2019 tool", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-92", "text": "12258 Refactor and polish the \u2018felt\u2019 tool\n\n12269 a11y: expose max character count for text fields\n\n12273 Clean up after AppLifecycleTests\n\n12274 Store screenshot test output as Cirrus artifacts; do fuzzy comparison of non-matching screenshot pixels\n\n12275 Shuffle test order and repeat test runs once.\n\n12281 optionally skip builds\n\n12282 [flutter_runner] Change the path to artifacts\n\n12287 Adds PluginRegistry to the C++ client wrapper API\n\n12288 Include firefox in check to quote font families\n\n12289 Fix flutter runner paths\n\n12303 Add a build command to felt", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-93", "text": "12303 Add a build command to felt\n\n12306 Fix the declaration of setSystemGestureExclusionRects to match the PlatformMessageHandler interface\n\n12307 Cleanup in web_ui\n\n12308 [flutter] Remove old A11y API\u2019s.\n\n12318 Update canvaskit backend\n\n12319 Add \u201ctype\u201d to getDisplayRefreshRate protocol\n\n12320 Fix continuous event polling in the GLFW event loop\n\n12323 README for the felt tool\n\n12330 Ensure DRRects without corners also draw.\n\n12336 Check for index bounds in RTL handling for trailing whitespace runs.\n\n12340 [flutter_runner] Do not use pre-builts just yet", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-94", "text": "12342 Update test to verify that secondary isolate gets shutdown before root isolate exits.\n\n12343 [flutter_runner] Remove usages of shared snapshots from CC sources\n\n12345 [flutter_runner] Port over the tuning advice for vulkan surface provider\n\n12346 [flutter_runner] Move from runner context to component context\n\n12347 [flutter_runner][async] Migrate dart/flutter to new async-loop APIs\n\n12348 [flutter_runner] Port the new compilation trace from topaz\n\n12349 [flutter_runner] Explicitly set\n\ntrace_skia\n\nto false\n\n12350 [flutter_runner] Port vulkan surface changes\n\n12355 skip flaky test\n\n12363 Track \u201cmouse leave\u201d event", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-95", "text": "12363 Track \u201cmouse leave\u201d event\n\n12375 Sync dart_runner\n\n12395 Update \u2013dart-vm-flags whitelist to include \u2013write-service-info and \u2013sample-buffer-duration\n\n12403 Don\u2019t send pointer events when the framework isn\u2019t ready yet\n\n12410 Send TYPE_VIEW_FOCUSED for views with input focus.\n\n12412 SkSL precompile\n\n12426 Store fallback font names as a vector instead of a set.\n\n12431 Interpret negative radii as 0 in recording_canvas.dart\n\n12432 Work around Samsung keyboard issue\n\n12434 delete golden files; switch to flutter/goldens", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-96", "text": "12434 delete golden files; switch to flutter/goldens\n\n12435 add dart:html, dart:js, and dart:js_util to the copy of the Dart SDK used for analysis\n\n12443 Force exit felt tool on sigint, sigterm\n\n12446 Add support for JIT release mode\n\n12447 Reflect selection changes in Firefox for text editing\n\n12448 Make kDoNotResizeDimension public so framework can use it directly\n\n12450 Adds support for 5 mouse buttons\n\n12453 Adding Link SemanticsFlag\n\n12454 Add .mskp file to binary format\n\n12470 [web_ui] Check if a pointer is already down for the specific device\n\n12479 Refactoring text_editing.dart", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-97", "text": "12479 Refactoring text_editing.dart\n\n12563 Remove use of the blobs snapshot format from unittests\n\n12565 Remove references to topaz\n\n12573 [flutter_runner] Refactor thread_application pair to ActiveApplication\n\n12618 Add isFocusable to SemanticsFlag\n\n12681 Create a package-able incremental compiler\n\n12695 Add onUnregistered callback in \u2018Texture\u2019 and \u2018FlutterTexture\u2019\n\n12698 [web_ui] Fixing invalid state bug for text editing\n\n12699 Adding \u2018pub get\u2019 to the \u2018compile_xxxx.sh\u2019 in the Scenario app\n\n12700 Add missing flag for embedder.\n\n12701 Cleanup: Made a macro to assert ARC is enabled.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-98", "text": "12706 Check for a null input method subtype\n\n12708 Cleanup: Turned on NS_ASSUME_NONNULL_BEGIN for FlutterViewController.\n\n12710 Set transparent background in textarea elements\n\n12725 Expanded channel buffer resize to method channels.\n\n12728 Remove unused import in the scenario app\n\n12730 Stop setting the accessibility text if a node has SCOPES_ROUTE set.\n\n12733 [flutter_runner] Make rd and rx uniform\n\n12746 Send AccessibilityEvent.TYPE_VIEW_FOCUSED when input focus is set.\n\n12754 Fix Metal builds by accounting for the updated SubmitFrame signature.\n\n12775 Added some thread asserts to the code and made ios_surface_ safe since", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-99", "text": "12777 Fix Metal builds.\n\n12780 Restart all modern Samsung keyboard IMM\n\n12783 Add a unit-test to verify that root surface transformation affects platform view coordinates.\n\n12785 Fix bug in package script and add dev_compiler to list\n\n12793 Fixing selection issues in Firefox\n\n12797 add option for bulk-updating screenshots; update screenshots (Work in progress\n\n12798 [flutter_runner] Update the cmx files to include TZ support\n\n12799 Disable EmbedderTest::CanLaunchAndShutdownMultipleTimes.\n\n12800 Prettify all CMX files\n\n12801 do not wrap font family name", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-100", "text": "12801 do not wrap font family name\n\n12802 Build gen_snapshot with a 64-bit host toolchain even if the target platform is 32-bit\n\n12808 Added an embedder example\n\n12813 Unblock SIGPROF on flutter_tester start\n\n12816 Enable sanitizer build variants.\n\n12821 Update buildroot to pull in ubsan updates.\n\n12931 remove references to package:_chrome\n\n12958 Adding deviceId to KeyEventChannel enconding method\n\n12960 Fix typo on channel buffer debug output.\n\n12974 Support empty strings and vectors in standard codec\n\n12980 Made _printDebug only happen on debug builds of the engine for now.\n\n12982 Color matrix doc", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-101", "text": "12982 Color matrix doc\n\n12986 Prevent default when Tab is clicked\n\n12988 Use the standard gen_snapshot target unless the platform requires host_targeting_host\n\n12989 Unpublicize kDoNotResizeDimension\n\n12991 Compile sanitizer suppressions list and file bugs as necessary.\n\n12999 Started setting our debug background task id to invalid\n\n13001 Missing link flag\n\n13004 Allow embedders to disable causal async stacks in the Dart VM\n\n13005 Auto-formatter fixes for BUILD.gn files\n\n13008 Integration with more of Skia\u2019s SkShaper/SkParagraph APIs\n\n13009 Fixing Link Semantics Typo", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-102", "text": "13009 Fixing Link Semantics Typo\n\n13015 Fire PlatformViewController FlutterView callbacks\n\n13042 Add \u201cfelt clean\u201d command\n\n13043 Add a task runner for the Win32 embedding\n\n13044 Support keyboard types on mobile browsers\n\n13047 Allow embedders to specify arbitrary data to the isolate on launch.\n\n13049 Ignore thread leaks from Dart VM in tsan instrumented builds.\n\n13053 Set the Cirrus badge to only display status of the master branch.\n\n13056 Put Metal renderer selection behind runtime flag and plist opt-in.\n\n13071 [dart_aot_runner] Add support for generating dart_aot snapshots", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-103", "text": "13074 [dart_aot_runner] Add rules to generate dart_aot binaries\n\n13082 java imports/style\n\n13085 Print more output when gen_package fails\n\n13086 Gen package output corrected\n\n13088 felt: use rest args for specifying test targets\n\n13089 cleanup gen_package.py\n\n13090 Snapshot the felt tool for faster start-up\n\n13091 Remove persistent cache unittest timeout\n\n13094 Integrate more SkParagraph builder patches\n\n13096 [dart_aot_runner] Use the host_toolchain to build kernels\n\n13097 Update felt README\n\n13101 [dart_aot_runner] Generate vmservice aotsnapshots", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-104", "text": "13103 [dart_aot_runner] Complete the port of dart_aot_runner\n\n13121 Change IO thread shader cache strategy\n\n13122 refactoring chrome_installer\n\n13123 Upgrades the ICU version to 64.2\n\n13124 Allow embedders to specify a render task runner description.\n\n13125 add the dart:__interceptors library to the dart sdk\n\n13126 [frontend_server] Include bytecode generation in the training run.\n\n13143 Add flutter_tester binary to the CIPD package\n\n13144 Document //flutter/runtime/dart_vm\n\n13151 Remove incomplete static thread safety annotations.\n\n13153 Make the Dart isolate constructor private.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-105", "text": "13153 Make the Dart isolate constructor private.\n\n13154 Fix an output file path for the frontend server package_incremental script\n\n13157 Fix type error in SkVertices\n\n13159 Move surface-based SceneBuilder implementation under surface/\n\n13162 Document //flutter/runtime/dart_isolate.h\n\n13175 Remove redundant call to updateEditingState in sendKeyEvent\n\n13176 Add repeatCount to FlutterKeyEvent\n\n13177 Update compiler to Clang 10.\n\n13182 If we get a \u2018down\u2019 event, add that device to the active devices.\n\n13185 Adding firefox_installer.dart\n\n13192 Use window.devicePixelRatio in the CanvasKit backend", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-106", "text": "13192 Use window.devicePixelRatio in the CanvasKit backend\n\n13193 Custom compositor layers must take into account the device pixel ratio.\n\n13196 Document //flutter/runtime/dart_snapshot.h\n\n13207 Wrap the text in text editing to fix selections.\n\n13209 Preserve stdout colors of subprocesses run by felt\n\n13212 Add trace events around custom compositor callbacks.\n\n13218 Specify a human readable reason for an error from the embedder API.\n\n13232 Avoid dereferencing IO manager weak pointers on the UI thread\n\n13237 Do not attempt to drain the SkiaUnrefQueue in the destructor\n\n13238 Allow embedders to update preferrred locales.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-107", "text": "13238 Allow embedders to update preferrred locales.\n\n13239 Hold a reference to the Skia unref queue in UIDartState\n\n13240 Update CanvasKit to 0.7.0 and flesh out painting\n\n13241 Ignore *.obj files when gathering licenses\n\n13242 Update harfbuzz to 2.6.2, Roll buildroot to a518e\n\n13255 Fix NPE in accessibility bridge\n\n13261 Updated license script to ignore testdata directories\n\n13265 Ensure we call into Engine from the UI taskrunner in Shell::EngineHasLivePorts()\n\n13269 Send flag modified events to the framework\n\n13270 Add recipe changelog\n\n13274 Fix decode feature detection in HtmlCodec", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-108", "text": "13274 Fix decode feature detection in HtmlCodec\n\n13275 Flesh out the CanvasKit backend some more\n\n13292 Disable flaky test ShellTest_ReportTimingsIsCalled.\n\n13295 Avoid accessing the Cocoa view on the GPU or IO task runners.\n\n13311 [recipe] Upload opt flutter_tester\n\n13314 Guarding EAGLContext used by Flutter\n\n13319 Add FlutterEngineRunsAOTCompiledDartCode to the embedder API.\n\n13321 Pass LinearTextFlag to SkFont - iOS13 letter spacing\n\n13337 Bump dart/language_model to 9fJQZ0TrnAGQKrEtuL3-AXbUfPzYxqpN_OBHr9P4hE4C", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-109", "text": "13342 Intercept SystemSound.play platform message before it\u2019s sent.\n\n13345 Expose platform view ID on embedder semantics node\n\n13360 Turn on RasterCache based on view hierarchy\n\n13361 Expand on CanvasKit backend more\n\n13364 [flutter_runner] Remove the checks for libdart profiler symbols\n\n13367 Delay metal drawable acquisition till frame submission.\n\n13391 Implement basic Picture.toImage via BitmapCanvas\n\n13395 fix fml_unittes is not run during presubmit\n\n13397 [flutter_runner] Don\u2019t build far files twice\n\n13401 Reformat BUILD.gn files to comply with the format checker presubmit script", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-110", "text": "13405 Make sure root surface transformations survive resetting the matrix directly in Flow.\n\n13406 Fix the dry run mode of the GN format checker script\n\n13407 Kick luci\n\n13419 [dart_runner] Common libs need to exist for aot runner\n\n13424 Add isRunningInRobolectricTest back\n\n13440 Switch to Cirrus Dockerfile as CI\n\n13444 Remove usage of yaml module from CIPD script\n\n13448 Duplicate the directory fd in fml::VisitFiles\n\n13451 Fix mDNS for iOS13\n\n13460 [dart] Makes the intl services available\n\n13461 CIPD needs the directory to be relative", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-111", "text": "13461 CIPD needs the directory to be relative\n\n13464 [recipe] Upload sky_engine to CIPD\n\n13468 Pass the automaticallyRegisterPlugins flag to the FlutterEngine constructor in FlutterActivityTest\n\n13478 use check_output instead of check_call\n\n13479 Print the output\n\n13630 Fix bug where Enter doesn\u2019t add new line in multi-line fields\n\n13642 Issues/39832 reland\n\n13643 Ensure that the CAMetalLayer FBO attachments can be read from.\n\n13649 Add \u2018Cough\u2019 test font and support multiple test fonts.\n\n13695 Fix Class.forName unchecked call warning\n\n13697 Moves pointer event sanitizing to engine.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-112", "text": "13697 Moves pointer event sanitizing to engine.\n\n13708 Ensure that the device pixel ratio is taken into account with window metrics in physical pixels.\n\n13710 Fix picture raster cache throttling\n\n13711 Imagefilter wrapper object\n\n13719 Fix NPE in splash screen lookup\n\n13727 Add line boundary information to LineMetrics.\n\n13728 Prefer SchedulerBinding.addTimingsCallback\n\n13731 Expose the platform view mutator stack to custom compositors.\n\n13735 Cleanup obsolete \u2013strong option of front-end server\n\n13736 libtxt: pass an RTL bool flag instead of a bidiFlags enum to measureText", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-113", "text": "13742 Only specify \u2013no-link-platform when not specifying \u2013aot, roll dart-lang sdk\n\n13744 Create a new picture recorder even when the embedder supplied render target is recycled.\n\n13747 Move TextRange from the framework to dart:ui.\n\n13760 Implement Path.computeMetrics in the CanvasKit backend\n\n13762 Turn on RasterCache based on view hierarchy\n\n13765 Change wordBoundary to take dynamic temporarily\n\n13768 Add ImageFilter and BackdropFilter to CanvasKit backend\n\n13772 Move Path and PathMetrics from canvas.dart into their own files. No delta\n\n13780 Allow passing hot reload debugging flags through\n\n13781 Create a WeakPtrFactory for use on the UI thread in VsyncWaiter", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-114", "text": "13782 Document the coordinate space of points in FlutterPointerEvent.\n\n13784 Add Helvetica and sans-serif as fallback font families\n\n13785 Fix RendererContextSwitch result check in Rasterizer::MakeRasterSnapshot\n\n13786 Take devicePixelRatio into account when drawing shadows\n\n13795 Adds missing comma in EngineParagraphStyle.toString()\n\n13796 implement radial gradient in canvaskit backend\n\n13799 Update version of dart/language_model distributed with flutter engine to latest\n\n13803 [build] Make \u2013engine-version flag optional\n\n13805 Remove extra shadows from ParagraphStyle\n\n13812 RendererContextSwitch guard flutter\u2019s gl context rework.\n\n13829 [dart_runner] Initialize logging and tracing", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-115", "text": "13829 [dart_runner] Initialize logging and tracing\n\n13832 Remove unused import\n\n13848 Use Skia\u2019s matchStyleCSS3 to find bundled asset typefaces matching a font style\n\n13850 Fix test to account for pixel ratio transformations being framework responsibility.\n\n13851 Implement the rest of ui.Path methods for CanvasKit\n\n13869 Changing test runner and platform to be browser independent\n\n13881 Change edge conditions of getLineBoundary\n\n13902 Adding opacity -> alpha method to Color class\n\n13903 Implement basic text rendering support in CanvasKit backend\n\n13904 Fix withIn matcher distance function lookup\n\n13907 allow ignoring toString, hashCode, and == in api_conform_test", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-116", "text": "13908 Made a way to turn off the OpenGL operations on the IO thread for backgrounded apps\n\n13918 Add virtual destructor to GPUSurfaceSoftwareDelegate.\n\n13926 Add dev_compiler and frontend_server to package uploading rule\n\n13934 Ensure we use the base CompositorContext\u2019s AcquireFrame method when screenshotting\n\n13943 Made the thread checker print out the thread names on Apple platforms.\n\n13945 Update SwiftShader to 5d1e854.\n\n13962 Added auto-reviewer config file\n\n13975 Refactor to passing functions by const ref\n\n14082 add pointer data santizing in flutter web engine\n\nPlugins", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-117", "text": "Plugins\n\nWe have made significant improvements in our plugins.\nWe upgraded a set of plugins to support web development.\nAlso, to support Add to App scenarios,\nwe have a new set of APIs available for existing\nAndroid plugins to be upgraded to.\nIf you are currently maintaining an Android plugin.\nWe encourage you to check the\nMigrating your plugin to the new APIs documentation,\nand upgrade your plugins accordingly.\n\n1984 Remove Flutterfire plugins (moved to FirebaseExtended)\n\n2004 [cirrus] Use flutter create for all_plugins test\n\n2009 Fix unit test for sensors\n\n2036 video player version fix\n\n2055 Point opensource site at new location\n\n2084 [update] local_auth - intl version\n\n2112 Run flutter_plugin_tools format\n\n2141 BugFix: formatHint was meant for network streams.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-118", "text": "2141 BugFix: formatHint was meant for network streams.\n\n2154 Use stable Flutter image as base\n\n2161 Rename instrumentation_adapter plugin to e2e plugin\n\n2205 s/flutter_android_lifecycle/flutter_plugin_android_lifecycle/\n\n2230 Forbid \u2026 implements UrlLauncherPlatform\n\n2231 [cleanup] Remove AndroidX warning\n\n2236 Use package import to import files inside lib/ directory.\n\n2250 Run the publish with the pub version from flutter stable\n\n2260 Make setMockInitialValues handle non-prefixed keys\n\n2267 Bump google_maps_flutter pubspec version to match CHANGELOG\n\n2271 [infra] Ignore analyzer issues in CI\n\n2280 Add google_sign_in_web plugin.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-119", "text": "2280 Add google_sign_in_web plugin.\n\nPlugin: Android Alarm Manager\n\nWe added the ability to get id in the callback in the Android Alarm Manager plugin.\n\n1985 [android_alarm_manager] Added ability to get id in the callback\n\nPlugin: Android Intent\n\nWe made several improvements in the Android Intent plugin\nincluding adding the ability to pass intent flags\n(contributed by a community member!),\nand upgrading it to the new plugin API.\n\n2000 [android_intent] add flags option\n\n2045 [android_intent] Add action_application_details_settings\n\n2143 [android_intent] Migrate to the new embedding\n\n2188 [android_intent] Bump the Flutter SDK min version\n\n2202 [android_intent] componentName must be provided before resolveActivity is called", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-120", "text": "2221 [android_intent]remove AndroidX constraint\n\n2268 [android_intent] Add missing DartDocs\n\nPlugin: Battery\n\nGeneral bug fix in the Battery plugin.\n\n2189 [battery] relax the example app minimal required Flutter version\n\nPlugin: Camera\n\nWe upgraded the Camera plugin to the\nnew plugin API, and made some bug fixes.\n\n2057 [Camera] Fixes NullPointerException\n\n2123 [camera] Fix event type check\n\n2219 [camera]remove androidx constraint\n\nPlugin: Connectivity\n\nGeneral bug fixes in the Connectivity plugin.\n\n2212 [connectivity]remove AndroidX constraint\n\n2262 [connectivity] add more documentations, delete example/README\n\nPlugin: e2e", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-121", "text": "Plugin: e2e\n\nGeneral bug fixes in the e2e plugin.\n\n2022 [instrumentation_adapter] Update README instructions\n\n2023 [instrumentation_adapter] update boilerplate to use @Rule instead of FlutterTest\n\n2024 [instrumentation_adapter] update CODEOWNERS\n\n2051 [instrumentation_adapter] update for release\n\n2075 [instrumentation_adapter] Migrate example to AndroidX\n\n2178 [e2e] update README\n\n2190 [e2e] Update to support new embedder\n\n2233 [e2e] update README\n\nPlugin: Google Maps Flutter\n\nWe have made several improvements in the Google Maps plugin including adding support for displaying the traffic layer.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-122", "text": "We have made several improvements in the Google Maps plugin including adding support for displaying the traffic layer.\n\n1702 [google_maps_flutter]Marker drag event\n\n1767 [google_maps_flutter] Adds support for displaying the traffic layer\n\n1784 [google_maps_flutter] Allow (de-)serialization of CameraPosition\n\n1933 [google_maps_flutter] Avoid unnecessary redraws\n\n2053 [google_maps_flutter] Fix analyzer failures relating to prefer_const_constructors\n\n2065 [google_maps_flutter] Prefer const constructors.\n\n2076 [google_maps_flutter] Clone cached elements in GoogleMap\n\n2108 [google_maps_flutter] Add Projection methods to google_maps\n\n2113 [google_maps_flutter] Avoid AbstractMethod crash", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-123", "text": "2113 [google_maps_flutter] Avoid AbstractMethod crash\n\n2242 [google_maps_flutter] Cast error.code to unsigned long to avoid using NSInteger as %ld format warnings.\n\nPlugin: Google Sign In\n\nWe made some bug fixes in Google Sign in plugin.\nMeanwhile, we converted it to a federated plugin\nto help it scale more efficiently to multiple platforms.\nFor more information, refer to Federated plugins.\n\n2059 [google_sign_in] Fix chained async methods in error handling zones\n\n2127 [google_sign_in] Fix deprecated API usage issue by upgrading CocoaPod to 5.0\n\n2244 [google_sign_in] Move plugin to its subdir to allow for federated implementations\n\n2252 [google_sign_in] Handle new style URLs in GoogleUserCircleAvatar", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-124", "text": "2266 [google_sign_in] Port plugin to use the federated Platform Interface\n\nPlugin: Image Picker\n\nGeneral bug fixes in the Image Picker plugin.\n\n2070 [image_picker] swap width and height when source image orientation is left or right\n\n2293 [image_picker]fix a crash when a non-image file is picked.\n\nPlugin: In App Purchase\n\nGeneral bug fixes in the In App Purchase plugin.\n\n2014 [In_App_Purchase] Avoids possible NullPointerException with background registrations.\n\n2016 [In_App_Purchase] Improve testability\n\n2027 [in_app_purchase] Remove skipped driver test\n\n2215 [in_app_purchase] remove AndroidX constraint\n\nPlugin: Local Auth", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-125", "text": "Plugin: Local Auth\n\nGeneral bug fixes in the Local Auth plugin.\n\n2047 [local_auth] Avoid user confirmation on face unlock\n\n2111 [local_auth] Api to stop authentication\n\nPlugin: Package Info\n\nGeneral bug fixes in the Package Info plugin.\n\n2218 [package_info]remove AndroidX constraint\n\nPlugin: Path Provider\n\nIn the Path Provider plugin, we added getApplicationLibraryDirectory, which is contributed by a community member!\n\n1953 [path_provider] add getApplicationLibraryDirectory\n\n1993 [pathprovider] Fix fall through bug\n\n2288 [path_provider] Add missing DartDocs\n\nPlugin: Share\n\nDocumentation update in the Share plugin.\n\n2297 [share] README update", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-126", "text": "2297 [share] README update\n\nPlugin: Shared Preferences\n\nGeneral bug fixes in the Shared Preferences plugin.\n\n2241 [Shared_preferences]suppress warnings\n\n2296 [shared_preferences] Add missing DartDoc\n\nPlugin: Url launcher\n\nWe upgraded the Url launcher plugin to the new plugin API,\nand fixed some bugs. Meanwhile,\nwe have converted the Url launcher into a federated plugin\nto help it scale more efficiently to multiple platforms.\nFor more information, refer to Federated plugins.\n\n2038 [url_launcher] Removed reference to rootViewController during initialization\n\n2136 [url_launcher_web] Fix README.md pubspec example\n\n2217 [url_launcher] Add url_launcher_platform_interface package", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-127", "text": "2220 [url_launcher]remove AndroidX constraint\n\n2228 [url_launcher] Use url_launcher_platform_interface to handle calls\n\n2237 [url_launcher] Migrate url_launcher_web to the platform interface\n\n2274 [url_launcher] DartDoc and test improvements\n\nPlugin: Video Player\n\nWe upgraded the Video Player plugin to the new plugin API,\nand made some bug fixes. Meanwhile,\nwe have converted it into a federated plugin to help it\nscale more efficiently to multiple platforms.\nFor more information, refer to Federated plugins.\n\n1813 [video-player] add support for content uris as urls\n\n1998 [video_player] Fix deprecated member use\n\n2124 [video_player] Move [player dispose] to onUnregistered", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-128", "text": "2158 [video_player] Basic test for VideoPlayerController initialization\n\n2273 [video_player] Add platform interface\n\n2286 [video_player] Improve DartDocs and test coverage\n\nPlugin: Webview Flutter\n\nWe upgraded the Webview Flutter plugin to the new plugin API,\nand made some bug fixes.\n\n1996 [webview_flutter] Allow underscores anywhere for Javascript Channel name\n\n2257 [webview_flutter] Add async NavigationDelegates\n\nTooling", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-129", "text": "Tooling\n\nFlutter tooling is another big investment in this release. We launched a new version of DartPad that allows you to play with Flutter directly in your browser without installing anything, released a new feature \u201cHot UI\u201d (in preview) that allows you to interact with widgets directly in the IDE, enhanced Dart DevTools with a new visual layout view, enabled simultaneous multi-device debugging in Visual Studio Code, and added support for \u201cgolden\u201d image testing.\n\nIn addition to the PRs listed below, please also check out the following releases for the IntelliJ and Android Studio Flutter plugin, the VS Code Flutter plugin and Dart DevTools:\n\nVS Code\n\n10/1/2019: dartcode.org/releases/v3-5/\n\n11/1/2019: dartcode.org/releases/v3-6/\n\n12/5/2019: dartcode.org/releases/v3-7/", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-130", "text": "Flutter IntelliJ and Android Studio plugin\n\n10/1/2019: Flutter IntelliJ Plugin M40 Release\n\n11/1/2019: Flutter IntelliJ Plugin M41 Release\n\n12/5/2019: Flutter IntelliJ Plugin M42 Release\n\nDevTools\n\n10/2/2019: New Dart DevTools Release 0.1.8\n\n10/17/2019: New Dart DevTools Release 0.1.9\n\n11/8/2019: New Dart DevTools Release 0.1.11\n\n12/6/2019: New Dart DevTools Release 0.1.12\n\nTooling PRs\n\n37508 build bundle with assemble", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-131", "text": "Tooling PRs\n\n37508 build bundle with assemble\n\n37642 Unit test for build.dart::GenSnapshot\n\n37832 add \u2013exit and \u2013match-host-platform defaults to devicelab runner\n\n37845 echo error messages to stderr\n\n38560 refactor cocoapods validator to detect broken install\n\n38576 flutter_tools/version: git log.showSignature=false\n\n38632 Flutter Plugin Tool supports multi-platform plugin config\n\n38654 [flutter_tool] Remove some async file io\n\n38869 Store file hashes per build configuration.\n\n38894 [flutter_tool] Move http request close under try-catch\n\n38907 Throw error when hot reload enters bad state", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-132", "text": "38907 Throw error when hot reload enters bad state\n\n38920 [flutter_tool] Handle crashes from doctor validators\n\n38925 [flutter_tool] Only send one crash report per run\n\n38932 Add build warning for non-debug desktop builds\n\n39000 Dont throw StateError when calling assemble\n\n39005 [flutter_tool] Teach crash reporter about HttpException\n\n39013 Update package versions to latest\n\n39052 Make forward calls run interactively\n\n39136 [flutter_tool] Some additional input validation for \u2018version\u2019\n\n39140 Move commands into their own shard\n\n39147 Downgrade the AndroidX warning\n\n39274 Use output dir instead of specific paths in assemble rules", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-133", "text": "39274 Use output dir instead of specific paths in assemble rules\n\n39280 [flutter_tool] Use a timeout for xcode showBuildSettings\n\n39358 surface errors from build runner\n\n39445 [flutter_tool] Add onError callback to asyncGuard. Use it in Doctor\n\n39524 Register flutterVersion service in flutter_tools.\n\n39530 keep symbols for profile\n\n39541 Handle single unsupported device\n\n39555 Use feature flags to control build command visibility\n\n39558 Filter error message from skip build script checks\n\n39579 [flutter_tools] Add a timeout to another showBuildSettings command\n\n39654 Use persisted build information to automatically clean old outputs\n\n39699 Detecting when installing over MingW\u2019s Git Bash, fixing paths", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-134", "text": "39781 Add lib/generated_plugin_registrant.dart to gitignore\n\n39782 Allow specifying a project for Xcode getInfo\n\n39899 [flutter_tool] process.dart cleanup\n\n39997 Remove visibleForTesting annotation; this constructor is used outside\u2026\n\n40029 [BUG] Process all children of intent-filter instead of just the first one to identify default activity\n\n40131 ensure we use pub from flutter SDK\n\n40159 [flutter_tool] Kill a timing-out process before trying to drain its streams\n\n40171 Place hot reload artifacts in a temp directory\n\n40195 Make Swift plugin template swift-format compliant\n\n40210 make sure we launch with dwds\n\n40259 remove io and isolate from libraries", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-135", "text": "40259 remove io and isolate from libraries\n\n40366 Place existing dill into hot reload temp directory to boost initialization time\n\n40368 ensure dart2js does not compile unsupported packages\n\n40397 Adds list required components when VS is not installed\n\n40410 Remove fluter tool usage of protobuf\n\n40435 [flutter_tool] Remove the synchronous -showBuildSettings\n\n40472 Dont kill other processes when starting desktop application\n\n40783 ensure debug builds are only accessible through run\n\n40795 Update toolchain description to request the latest version\n\n40968 add missing trailing commas in flutter_tools\n\n40988 [flutter_tool] Report rss high watermark in command analytics events\n\n41224 fix flutter error report correct local widget", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-136", "text": "41224 fix flutter error report correct local widget\n\n41304 [flutter_tools] Allows adding multiple signal handlers\n\n41401 Flutter build bundle without \u2013precompiled should always perform a debug build.\n\n41406 Retry devfs uploads in case they fail.\n\n41424 Don\u2019t update last compiled time when compilation is rejected\n\n41447 Switch to assemble API for dart2js\n\n41493 [flutter_tool] Report to analytics when the tool is killed by a signal\n\n41514 Ensure we find dart.exe on local engines\n\n41519 Make desktop stopApp only apply to processes Flutter started\n\n41583 Add debugging option to write vmservice address to file after starting\n\n41610 track unused inputs in build_runner", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-137", "text": "41610 track unused inputs in build_runner\n\n41621 change logging in mDNS discovery to verbose-mode only\n\n41652 [flutter_tools] Add more info to pub get failure event\n\n41687 Use processManager.run() instead of manually capturing streams in test_utils getPackages()\n\n41697 Handle missing .packages file in the flutter tool for prebuilt artifacts\n\n41735 handle empty entry in asset list and add more explicit validation\n\n41751 Add support for downloading x86 JIT release artifact\n\n41788 Reduce log verbosity by removing individual used files\n\n41832 Plumb \u2013enable-asserts through to frontend_server invocation in debug\u2026\n\n41862 Make output directory a build input", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-138", "text": "41862 Make output directory a build input\n\n41989 Flutter doctor should require java 1.8+\n\n42008 Restructure ProjectFileInvalidator.findInvalidated a bit\n\n42016 [flutter_tool] Re-work analytics events to use labels and values\n\n42026 Stop leaking iproxy processes\n\n42028 Make ProjectFileInvalidator.findInvalidated able to use the async FileStat.stat\n\n42187 Be more verbose when pub fails\n\n42209 Add error logging to flutter generate\n\n42243 Improve trailing whitespace message\n\n42252 catch argument error from Make\n\n42353 Add \u2013cache-sksl flag to drive and run", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-139", "text": "42353 Add \u2013cache-sksl flag to drive and run\n\n42354 Pass -Ddart.developer.causal_async_stacks=true to frontend_server invocations.\n\n42364 Wrap dwds in async guard, only catch known error types\n\n42373 Switch build commands to use process utils\n\n42376 Add option to precache unsigned mac binaries.\n\n42471 Pass build mode-specific bytecode generation options to frontend_server.\n\n42476 Refactor BuildMode into class, add jit_release configuration\n\n42491 Extra defensive programming for pub modification time assert\n\n42538 [flutter_tool] Improve yaml font map validation\n\n42597 Deflake wildcard asset test", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-140", "text": "42597 Deflake wildcard asset test\n\n42655 resident_web_runner doesn\u2019t close debug connection\n\n42656 Catch appInstanceId error\n\n42668 dispose devices on cleanupAtFinish() for run_cold.dart\n\n42698 Ensure we stop the status when browser connection is complete\n\n42791 fix type error in manifest asset bundle\n\n42813 Fix NPE in Chrome Device\n\n42972 Do not produce an error when encountering a new type in a service response.\n\n42977 switch dart2js build to depfile, remove Source.function\n\n43016 ensure we can disable \u2013track-widget-creation in debug mode\n\n43022 Enable dump-skp-on-shader-compilation in drive", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-141", "text": "43042 add samsungexynos7570 to list of known physical devices\n\n43080 Indent Kotlin code with 4 spaces\n\n43180 Adding missing break in plugin validation check\n\n43217 [flutter_tool] Update analytics policy, send event on disable\n\n43219 Add devfs for incremental compiler JavaScript bundle\n\n43225 Catch io.StdinException from failure to set stdin echo/line mode\n\n43281 Add compiler configuration to support dartdevc target\n\n43292 initial bootstrap script for incremental compiler support\n\n43381 [flutter_tool] Use engine flutter_runner prebuilts\n\n43390 catch ChromeDebugException from dwds\n\n43401 Handle permission error during flutter clean", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-142", "text": "43401 Handle permission error during flutter clean\n\n43402 Handle format error from vswhere\n\n43403 Handle version and option skew errors\n\n43436 Handle onError callback with optional argument\n\n43448 Don\u2019t html-escape in the plugin registrant templates.\n\n43471 flip track widget creation on by default\n\n43544 Catch AppConnectionException\n\n43546 Alias upgrade-packages => update-packages\n\n43577 set trace to true for desktop builds\n\n43586 Ensure Chrome is closed on tab close\n\n43598 Catch failed daemon startup error\n\n43599 catch failure to parse FLUTTER_STORAGE_BASE_URL", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-143", "text": "43602 Don\u2019t indefinitely persist file hashes, handle more error conditions\n\n43667 Added a null check for ranges in the sourceReport map.\n\n43725 Add reloadMethod RPC\n\n43753 pass \u2013no-gen-bytecode to aot kernel compiler invocations\n\n43764 Update create.dart\n\n43767 check if libimobiledevice executables exist\n\n43800 de-flake logger test\n\n43862 Ensure target platform is passed is always passed\n\n43870 check for instanceof instead of runtimeType\n\n43907 Serve correct mime type on release dev server\n\n43908 remove no-gen-bytecode flag\n\n43945 Remove Source.behavior, fix bug in depfile invalidation", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-144", "text": "43945 Remove Source.behavior, fix bug in depfile invalidation\n\n44017 Asset server fix for sourcemaps\n\n44027 Allow specifying device-vmservice-port and host-vmservice-port\n\n44032 Copy chrome preferences to seeded data dir\n\n44052 Remove flutter_tool services code\n\n44083 Add \u2013dart-define option\n\n44119 [flutter_tool] \u2013flutter_runner will download the debug symbols\n\n44146 Remove flutter.yaml migration code\n\n44200 Make ProjectFileInvalidator injectable\n\n44221 Use platform appropriate filepaths\n\n44227 [flutter_tool] Screenshot command must require device only for _kDeviceType\n\n44278 Do not pass obsolete \u2013strong option to front-end server", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-145", "text": "44279 link platform should be true for profile\n\n44360 [flutter_tool] Stream artifact downloads to files\n\n44447 implicit-casts:false on flutter_tools/lib\n\n44481 Provide specific field to accept depfiles in target class\n\n44488 Refactorings to testbed.run and testbed.test\n\n44574 Print a message when modifying settings that you may need to reload IDE/editor\n\n44608 Reduce some direct package:archive usage\n\n44753 Always link desktop platforms\n\n44868 Catch and display version check errors during doctor\n\n44933 [flutter_tool] Don\u2019t crash when failing to delete downloaded artifacts\n\n44966 Don\u2019t log stack traces to console on build failures", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-146", "text": "44966 Don\u2019t log stack traces to console on build failures\n\n45011 catch IOSDeviceNotFoundError in IOSDevice.startApp()\n\n45153 implicit-casts:false on flutter_tools\n\n45236 Improve time to development by initializing frontend_server concurrently with platform build\n\n45239 implicit-casts:false in fuchsia_remote_debug_protocol\n\n45303 Allow unknown fields in pubspec plugin section\n\n45317 de-null dartDefines in daemon mode\n\n45319 catch parse error from corrupt config\n\n45364 Allow a no-op default_package key for a plugin platform\n\n45407 Don\u2019t crash if the tool cannot delete asset directory", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "d57f1fe4ee7a-147", "text": "45407 Don\u2019t crash if the tool cannot delete asset directory\n\n46011 [flutter_tool] Do not continue with a no-op \u2018upgrade\u2019\n\nFull PR List\n\nSee the full list of merged PRs for the 1.12 release.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.12.13/index.html"} {"id": "2eeeb8828d8e-0", "text": "Flutter 1.17.0 release notes\n\nTools\n\nSDK\n\nRelease notes\n\n1.17.0 release notes\n\nMerged pull requests by label\n\nMerged PRs by labels for flutter/flutter", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-1", "text": "tool - 435 pull request(s)\nframework - 413 pull request(s)\nteam - 283 pull request(s)\nf: material design - 204 pull request(s)\na: tests - 67 pull request(s)\nf: cupertino - 53 pull request(s)\na: internationalization - 34 pull request(s)\nengine - 33 pull request(s)\nd: examples - 28 pull request(s)\na: accessibility - 25 pull request(s)\nplatform-ios - 19 pull request(s)\na: quality - 16 pull request(s)\na: text input - 15 pull request(s)\nd: api docs - 13 pull request(s)\ndocumentation - 11 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-2", "text": "documentation - 11 pull request(s)\nsevere: performance - 11 pull request(s)\nsevere: API break - 11 pull request(s)\nf: scrolling - 11 pull request(s)\nt: xcode - 10 pull request(s)\nwill affect goldens - 9 pull request(s)\nplatform-web - 9 pull request(s)\na: null-safety - 8 pull request(s)\na: fidelity - 7 pull request(s)\na: images - 7 pull request(s)\nwork in progress; do not review - 5 pull request(s)\nplatform-android - 5 pull request(s)\nCQ+1 - 4 pull request(s)\na: existing-apps - 4 pull request(s)\nsevere: new feature - 4 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-3", "text": "severe: new feature - 4 pull request(s)\nperf: memory - 4 pull request(s)\nf: routes - 4 pull request(s)\na: desktop - 3 pull request(s)\nperf: speed - 3 pull request(s)\na: triage improvements - 3 pull request(s)\na: typography - 3 pull request(s)\nteam: infra - 3 pull request(s)\na: error message - 3 pull request(s)\nf: focus - 3 pull request(s)\ncustomer: money (g3) - 3 pull request(s)\ncustomer: crowd - 2 pull request(s)\nsevere: regression - 2 pull request(s)\na: platform-views - 2 pull request(s)\na: animation - 2 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-4", "text": "a: animation - 2 pull request(s)\na: annoyance - 2 pull request(s)\nt: flutter doctor - 2 pull request(s)\nfound in release: 1.17 - 1 pull request(s)\nf: inspector - 1 pull request(s)\nf: gestures - 1 pull request(s)\nplatform-mac - 1 pull request(s)\ncustomer: quill (g3) - 1 pull request(s)\nplugin - 1 pull request(s)\ncustomer: peppermint - 1 pull request(s)\nsevere: crash - 1 pull request(s)\ncustomer: octopod - 1 pull request(s)\ncustomer: fun (g3) - 1 pull request(s)\ncustomer: fuchsia - 1 pull request(s)\np: framework - 1 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-5", "text": "p: framework - 1 pull request(s)\nt: flutter driver - 1 pull request(s)\ncustomer: dream (g3) - 1 pull request(s)\ncla: no - 1 pull request(s)\nteam: flakes - 1 pull request(s)\nteam: gallery - 1 pull request(s)\na: video - 1 pull request(s)\na: mouse - 1 pull request(s)\nwaiting for customer response - 1 pull request(s)\na: debugging - 1 pull request(s)\nfound in release: 1.18 - 1 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-6", "text": "Merged PRs by labels for flutter/engine", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-7", "text": "platform-android - 62 pull request(s)\nplatform-ios - 21 pull request(s)\nsevere: performance - 16 pull request(s)\nperf: speed - 13 pull request(s)\nplatform-web - 13 pull request(s)\nplatform-fuchsia - 6 pull request(s)\nperf: memory - 5 pull request(s)\naffects: engine - 3 pull request(s)\naffects: tests - 3 pull request(s)\ncode health - 3 pull request(s)\naffects: text input - 2 pull request(s)\nplatform-windows - 2 pull request(s)\nbug - 1 pull request(s)\nbug (regression) - 1 pull request(s)\ncrash - 1 pull request(s)\nperf: app size - 1 pull request(s)\nplatform-linux - 1 pull request(s)\nplatform-macos - 1 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-8", "text": "Merged PRs by labels for flutter/plugins\n\nsubmit queue - 3 pull request(s)\nwaiting for test harness - 3 pull request(s)\nin review - 2 pull request(s)\nbugfix - 1 pull request(s)\ndocumentation - 1 pull request(s)\nfeature - 1 pull request(s)\nwebview - 1 pull request(s)\n\nAll merged pull requests\n\nMerged PRs in flutter/flutter\nMerged PRs in flutter/engine\nMerged PRs in flutter/plugins\n\nMerged pull requests by label\n\nMerged PRs by labels for flutter/flutter\n\ntool - 435 pull request(s)\n\n50581 Implements \u2013machine flag for devices command (cla: yes, tool)\n\n51126 [flutter_tools] fix build for projects with watchOS companion app (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-9", "text": "52507 enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\n52791 Read custom app project name from gradle.properties (cla: yes, team, tool)\n\n53374 [gen_l10n] Fallback feature for untranslated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green)\n\n53381 Characters Package (a: text input, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)\n\n53422 Rename GPU thread to raster thread in API docs (a: tests, cla: yes, framework, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-10", "text": "53600 Restructure the Windows app template (cla: yes, team, tool)\n\n53715 Support old and new git release tag formats (cla: yes, tool)\n\n53765 [flutter_tools] re-enable debug extension (cla: yes, tool, waiting for tree to go green)\n\n53773 [flutter_tools] surgically remove outputs from shared directory (cla: yes, tool, waiting for tree to go green)\n\n53785 [flutter_tools] Don\u2019t generate native registrant classes if no pluginClass is defined (cla: yes, tool, waiting for tree to go green)\n\n53809 [flutter_tools] update to package vm_service: electric boogaloo (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-11", "text": "53824 [gen_l10n] Add option for deferred loading on the web (a: internationalization, cla: yes, team, tool, waiting for tree to go green)\n\n53848 [flutter_tools] don\u2019t compute hashes of well known artifacts (cla: yes, tool)\n\n53853 [flutter_tools] remove indirection around App.framework production (cla: yes, tool)\n\n53859 [flutter_tools] write SkSL file to local file (cla: yes, tool)\n\n53868 [gen_l10n] Add scriptCode handling (a: internationalization, cla: yes, severe: new feature, team, tool)\n\n53876 Update Windows and Linux plugin templates (cla: yes, tool)\n\n53882 Remove URL shortening from GitHub reporter similar issues URL (a: triage improvements, cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-12", "text": "53902 [flutter_tools] Launch DevTools with \u2018v\u2019 (cla: yes, tool, waiting for tree to go green)\n\n53928 [macos] build: add build-number and buid-name arguments (cla: yes, tool, waiting for tree to go green)\n\n53936 Sanitize error message sent to GitHub crash reporter (a: triage improvements, cla: yes, tool)\n\n53944 [flutter_tools] update asset manifest to use package_config instead of package_map (cla: yes, tool)\n\n53949 [flutter_tools] also listen to web stderr stream (cla: yes, tool)\n\n53951 Revert \u201c[flutter_tools] update to package vm_service: electric boogaloo\u201d (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-13", "text": "53954 [gen_l10n] Fix plural parsing for translated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green)\n\n53956 Revert \u201c[flutter_tools] surgically remove outputs from shared directory\u201d (cla: yes, tool)\n\n53957 [flutter_tools] Migrate to vm service 3 (reland): electric boogaloo (cla: yes, team, tool)\n\n53960 [flutter_tools] Refresh VM state before executing hot reload (cla: yes, tool, waiting for tree to go green)\n\n53962 [flutter_tools] surgically remove outputs from shared directory (cla: yes, tool)\n\n54083 Add a switch to use WebSockets for web debug proxy (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-14", "text": "54114 Revert \u201c[flutter_tools] Migrate to vm service 3 (reland): electric boogaloo\u201d (cla: yes, team, tool)\n\n54123 [flutter_tools] Use gzip level 1 for devfs transfer compression (cla: yes, tool, waiting for tree to go green)\n\n54131 flutter/flutter 1.17.0-dev.3.1 cherrypicks (CQ+1, cla: yes, framework, tool)\n\n54132 [flutter_tools] Migrate to package:vm_service 4: trigonometric boogaloo (cla: yes, team, tool)\n\n54133 [flutter_tools] ensure the tool can find SDK manager on windows (cla: yes, tool, waiting for customer response)\n\n54152 [flutter_tools] Remove fromPlatform from tests (cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-15", "text": "54154 Convert iOS simulator log reader to simctl, use unified logging filters (cla: yes, platform-ios, tool, waiting for tree to go green)\n\n54176 Fix newly reported prefer_const_constructors lints. (a: internationalization, cla: yes, d: examples, team, tool)\n\n54185 [gen_l10n] Handle single, double quotes, and dollar signs in strings (cla: yes, team, tool, waiting for tree to go green)\n\n54208 [flutter_tools] migrate engine location check (a: null-safety, cla: yes, tool)\n\n54217 Fix frameworkVersionFor for flutter doctor and usage (cla: yes, tool, waiting for tree to go green)\n\n54228 [flutter_tools] allow passing non-config inputs (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-16", "text": "54233 [flutter_tools] ensure build fails if asset files are missing (cla: yes, tool)\n\n54294 [flutter_tools] remove extra same repo check (cla: yes, tool)\n\n54299 [flutter_tools] migrate devfs web to package_config (a: null-safety, cla: yes, tool)\n\n54301 [flutter_tools] Remove packageMap usage and update package_config (a: null-safety, cla: yes, tool)\n\n54313 [flutter_tools] fix routing test (cla: yes, tool)\n\n54314 [gen_l10n] Expand integration tests (a: internationalization, cla: yes, tool, waiting for tree to go green)\n\n54320 [flutter_tools] make verbose macOS builds actually verbose (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-17", "text": "54328 [flutter_tools] use new output location for the apk (cla: yes, tool, waiting for tree to go green)\n\n54337 [flutter_tools] Move service methods to VmService extension methods (cla: yes, tool)\n\n54374 [flutter_tools] switch benchmark to isolate runnable (cla: yes, tool)\n\n54389 [flutter_tools] disable cache in devices test (cla: yes, tool)\n\n54407 Don\u2019t import plugins that don\u2019t support android in settings.gradle (a: accessibility, cla: yes, d: examples, team, tool, waiting for tree to go green)\n\n54414 [flutter_tools] attempt to fix benchmark mode test (cla: yes, tool)\n\n54428 Add .last_build_id to gitignore (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-18", "text": "54467 [flutter_tools] update compilation to use package config (a: null-safety, cla: yes, tool)\n\n54478 Fix environment leakage in doctor_test (cla: yes, team, team: flakes, team: infra, tool)\n\n54488 Remove Finder extended attributes from iOS project files (cla: yes, platform-ios, tool)\n\n54555 [flutter_tools] refactor FlutterManifest to be context-free (cla: yes, tool, waiting for tree to go green)\n\n54613 [flutter_tools] support enable-experiment in flutter analyze (a: null-safety, cla: yes, tool, waiting for tree to go green)\n\n54617 [flutter_tools] initial support for enable experiment, run, apk, ios, macos (a: null-safety, cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-19", "text": "54645 remove outdated build_runner instructions (cla: yes, tool, waiting for tree to go green)\n\n54679 [flutter_tools] Handle empty gzip file on Windows (cla: yes, tool)\n\n54682 [flutter_tools] update coverage collector to use vmservice api (cla: yes, tool, waiting for tree to go green)\n\n54691 Migrate Runner project base configuration (cla: yes, d: examples, t: xcode, team, tool)\n\n54692 [flutter_tools] support machine and coverage together but for real (cla: yes, tool, waiting for tree to go green)\n\n54700 [flutter_tools] remove runFromSource, move runInView to vm_service extension (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-20", "text": "54715 [flutter_tools] support any as a special web-hostname (cla: yes, tool, waiting for tree to go green)\n\n54717 [flutter_tools] don\u2019t elapse real time during fallback test (cla: yes, tool)\n\n54756 Fix/set mocks defaults (cla: yes, tool, waiting for tree to go green)\n\n54783 [flutter_tools] Fix roll dev script, add tests (cla: yes, team, tool, waiting for tree to go green)\n\n54786 [flutter_tools] fix response format of flutterVersion, flutterMemoryInfo (cla: yes, tool)\n\n54805 [flutter_tools] dont suppress analytics from re-entrant macos build (cla: yes, tool, waiting for tree to go green)\n\n54881 Add COM initializition to Windows template (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-21", "text": "54884 [flutter_tools] Provide global options with subcommand help text (cla: yes, tool)\n\n54909 [flutter_tools] fix multiple defines in flutter tooling, web (cla: yes, team, tool)\n\n54912 Move doctor into globals (cla: yes, team, tool)\n\n54916 Convert expression evaluation exceptions to errors (cla: yes, team, tool, waiting for tree to go green)\n\n54918 [flutter_tools] ensure EventPrinter handles a null parent (cla: yes, tool, waiting for tree to go green)\n\n54920 [flutter_tools] remove Isolate implementations of vm_service methods (cla: yes, tool)\n\n54923 [flutter_tools] default tree-shake-icons to enabled and improve performance (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-22", "text": "54924 CrashReportSender dependency injection (cla: yes, team, tool)\n\n54959 fixed flutter run for projects containing a watchOS companion (cla: yes, tool)\n\n54967 Revert \u201c[flutter_tools] fix multiple defines in flutter tooling, web\u201d (cla: yes, team, tool)\n\n54973 [flutter_tools] Reland: fix multiple dart defines (cla: yes, team, tool)\n\n54987 git pull \u2013ff-only (cla: yes, tool, waiting for tree to go green)\n\n54989 Support armv7s architecture (cla: yes, platform-ios, tool)\n\n55002 Move GitHubTemplateCreator into reporting library (cla: yes, team, tool)\n\n55003 Add flag to enable expression evaluation for web (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-23", "text": "55012 Even more vm service refactor (cla: yes, tool)\n\n55085 [flutter_tools] check if requireloader is defined (cla: yes, tool, waiting for tree to go green)\n\n55125 prettify the flutter web bootstrap file (cla: yes, tool)\n\n55141 Support tags in testWidgets (a: tests, cla: yes, framework, tool, waiting for tree to go green)\n\n55152 Support tags when running tests from command line (cla: yes, team, tool)\n\n55160 [flutter_tools] refactor Chrome launch logic to remove globals/statics (cla: yes, tool)\n\n55187 [flutter_tools] migrate windows to assemble (cla: yes, tool)\n\n55212 [flutter_tools] fix type error in symbolize (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-24", "text": "55244 [flutter_tools] remove PackageMap and finish PackageConfig migration (cla: yes, tool)\n\n55250 flutter_tools: Prefer using .of() over .from() when possible (cla: yes, tool)\n\n55253 Flutter 1.17.0.dev.3.2 cherrypicks (cla: yes, engine, framework, team, tool)\n\n55315 Add error message about missing unzip utility (cla: yes, tool)\n\n55341 [flutter_tools] migrate FlutterView to new vm_service (cla: yes, tool)\n\n55342 [flutter_tools] check first for stable tag, then dev tag (cla: yes, tool)\n\n55348 [flutter_tools] unpin package config and update (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-25", "text": "55353 remove intellij references to the v1 embedding jars now that the v2 embeddings are referenced via maven (cla: yes, tool)\n\n55385 [flutter_tools] fix version tag v stripping (cla: yes, tool)\n\n55412 [flutter_tools] remove globals from pub (cla: yes, tool)\n\n55413 Revert \u201c[flutter_tools] default tree-shake-icons to enabled and improve performance\u201d (cla: yes, team, tool)\n\n55417 [flutter_tools] fix performance of tree-shake-icons (cla: yes, severe: performance, tool)\n\n55420 [flutter_tools] fix package config invalidation (cla: yes, tool, waiting for tree to go green)\n\n55436 [flutter_tools] quality pass on windows build (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-26", "text": "55499 fixed flutter pub get failure in tests (cla: yes, tool, waiting for tree to go green)\n\n55510 [flutter_tools] precache and unpack updates for desktop release artifacts (cla: yes, tool)\n\n55513 [flutter_tools] Delete system temp entries on fatal signals (cla: yes, tool, waiting for tree to go green)\n\n55531 [flutter_tools] set test directory base as additional root, allow running without index.html (cla: yes, tool)\n\n55556 [flutter_tools] quality pass on Linux build (cla: yes, tool)\n\n55564 [flutter_tools] support \u2013enable-experiment in flutter test (cla: yes, team, tool)\n\n55577 Revert \u201c[flutter_tools] fix version tag v stripping\u201d (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-27", "text": "55594 [flutter_tools] enable flutter upgrade to support force pushed branches (cla: yes, tool, waiting for tree to go green)\n\n55602 [flutter_tools] fix version tag v stripping and support old \u201cdev\u201d and new \u201cpre\u201d tags (cla: yes, tool, waiting for tree to go green)\n\n55605 [flutter_tools] detect ipv6 in fuchsia server url (cla: yes, tool)\n\n55614 [flutter tools] Move _informUserOfCrash into crash_reporting.dart (cla: yes, tool, waiting for tree to go green)\n\n55617 [flutter_tools] remove trailing eth info from fuchsia package server (cla: yes, tool)\n\n55664 [flutter_tools] fix pm serve ipv6 linklocal addr issue (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-28", "text": "55699 [flutter_tools] allow pulling performance data from assemble (cla: yes, tool)\n\n55701 [flutter_tools] surface missing assets originating package (cla: yes, tool, waiting for tree to go green)\n\n55704 [flutter_tools] ensure etag headers are ascii (cla: yes, tool)\n\n55715 [flutter_tools] add \u2013dart-define option for fuchsia build (cla: yes, tool, waiting for tree to go green)\n\n55759 [flutter_tools] catch ProcessException and throw ToolExit during upgrade (cla: yes, tool, waiting for tree to go green)\n\n55762 Print stdout and stderr when the ssh command failed (cla: yes, tool, waiting for tree to go green)\n\n55772 Revert \u201c[flutter_tools] migrate FlutterView to new vm_service\u201d (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-29", "text": "55773 Remove v prefix in doctor version (cla: yes, tool)\n\n55774 [flutter_tools] reland migrate FlutterView to new vmservice (cla: yes, tool)\n\n55780 [flutter_tools] support multiple fuchsia devices (cla: yes, tool)\n\n55788 Revert \u201c[flutter_tools] reland migrate FlutterView to new vmservice\u201d (cla: yes, tool)\n\n55790 Remove dead variable from xcode_backend (cla: yes, t: xcode, tool)\n\n55794 [flutter_tools] remove vm service (cla: yes, tool)\n\n55797 [flutter_tools] reland migrate FlutterViews to package:vm_service (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-30", "text": "55799 Check Xcode build setting FULL_PRODUCT_NAME for bundle name (cla: yes, t: xcode, team, tool)\n\n55808 Add iOS simulator log parse test (cla: yes, platform-ios, t: xcode, tool)\n\n55812 restore quit timeout, adjust some integration test behaviors (cla: yes, team, tool)\n\n55871 Flutter 1.17.0.dev.3.3 cherrypicks (cla: yes, engine, framework, team, tool)\n\n55887 Fix/use contains ignoring whitespace (cla: yes, tool)\n\n55909 [gen_l10n] Fix unintended breaking change introduced by output-dir option (a: internationalization, cla: yes, team, tool)\n\n55961 [flutter_tools] Lazily inject logger into web devices (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-31", "text": "56059 [flutter_tools] support bundling SkSL shaders in flutter build apk/appbundle (cla: yes, tool)\n\n56103 [flutter_tools] reduce initial cache size on web (cla: yes, tool, waiting for tree to go green)\n\n56146 Fixed a typo, gen_l10n_types.dart comment (a: internationalization, cla: yes, tool, waiting for tree to go green)\n\n56167 [flutter_tools] integrate l10n tool into build/run (cla: yes, tool)\n\n56173 [flutter_tools] support flutter run -d edge (cla: yes, tool)\n\n56240 fix the reload and restart service extension methods (cla: yes, tool, waiting for tree to go green)\n\n56330 Use androidSdk globals variable everywhere (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-32", "text": "56331 Inject logger and fs into printHowToConsumeAar, test without context (cla: yes, team, tool)\n\n56335 Gradle artifacts and tasks tests without context (cla: yes, team, tool)\n\n56342 Add split-debug and obfuscation to build aar (cla: yes, platform-android, tool, waiting for tree to go green)\n\n56373 [gen_l10n] Improve arb FormatException error message (a: internationalization, cla: yes, tool, waiting for tree to go green)\n\n56385 Revert \u201c[flutter_tools] remove flutter view cache\u201d (cla: yes, tool)\n\n56410 [flutter_tools] Restore base/platform.dart (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-33", "text": "56472 [flutter_tools] prevent wildcard assets from causing build invalidation issues (cla: yes, tool, waiting for tree to go green)\n\n56490 [gen_l10n] Optionally generate list of inputs/outputs (a: internationalization, cla: yes, tool, waiting for tree to go green)\n\n56502 Swap xcode_tests from MockProcessManager to FakeProcessManager (cla: yes, team, tool, waiting for tree to go green)\n\n56505 Swap xcodeproj_tests from MockProcessManager to FakeProcessManager (cla: yes, team, tool)\n\n56531 feature: add usermessage when miss platform project (cla: yes, tool)\n\n56564 [flutter_tools] ensure track-widget-creation can be changed on devcompiler (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-34", "text": "56605 Remove direct uses of LocalPlatform (cla: yes, team, tool)\n\n56618 Update Linux template for headless mode (cla: yes, tool, waiting for tree to go green)\n\n56620 Remove Runner target check, prefer schemes (cla: yes, t: xcode, team, tool, waiting for tree to go green)\n\n56630 [flutter tools] Fix an assert in IOSSimulator.getLogReader (cla: yes, tool)\n\n56633 [flutter_tools] enable tree-shake-icons by default for non-web targets (cla: yes, tool)\n\n56634 [flutter_tools] rename getSkSL file output ext to .sksl.json (cla: yes, tool)\n\n56685 typo fix on the FLUTTER_STORAGE_BASE_URL usage (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-35", "text": "56694 [flutter_tools] fix aar defaults test (cla: yes, tool)\n\n56703 Always remove the workspace settings when set to legacy build settings (cla: yes, tool, waiting for tree to go green)\n\n56706 [flutter_tools] Don\u2019t try to execute gradle wrapper out of /tmp (cla: yes, tool)\n\n56720 [flutter_tools] fix documentation on default built ios (cla: yes, tool)\n\n56786 [flutter_tools] cache-bust in service worker (cla: yes, team, tool, waiting for tree to go green)\n\n56800 Revert \u201c[flutter_tools] integrate l10n tool into build/run\u201d (cla: yes, tool)\n\n56924 [flutter_tools] hide tree-shake-icons (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-36", "text": "56928 Add mirror overrides to doctor output (a: triage improvements, cla: yes, t: flutter doctor, tool, waiting for tree to go green)\n\n56934 Revert \u201c[flutter_tools] hide tree-shake-icons\u201d (cla: yes, tool, waiting for tree to go green)\n\n56943 [flutter_tools] expand Regexp log match to include more AndroidRuntime failures (cla: yes, tool, waiting for tree to go green)\n\n56945 [flutter_tools] unblock fuchsia roll (cla: yes, tool, waiting for tree to go green)\n\n56946 [flutter_tools] introduce a BuildSystem interface (cla: yes, tool, waiting for tree to go green)\n\n56958 Updated dwds (and other packages) (cla: yes, d: examples, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-37", "text": "56959 Make initial daemon devices population fast (cla: yes, tool)\n\n56961 Remove dead definesCustomBuildConfigurations (cla: yes, team, tool, waiting for tree to go green)\n\n57005 Fix minor typo in \u2018flutter create \u2013list-samples\u2019 help text (cla: yes, tool, waiting for tree to go green)\n\n57027 Fix xcode_backend.sh to strip bitcode for archive build, if the project has bitcode disabled entirely (cla: yes, tool, waiting for tree to go green)\n\n57052 Flutter 1.17.1 cherrypicks (cla: yes, engine, framework, team, tool)\n\n57058 1.18.0-11.1.pre beta cherrypicks (cla: yes, engine, framework, team, tool, work in progress; do not review)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-38", "text": "57075 [flutter_tools] re-enable non-nullable test (cla: yes, team, tool, waiting for tree to go green)\n\n57077 [flutter_tools] do not set timestamp of package_config file (cla: yes, tool, waiting for tree to go green)\n\n57117 [flutter_tools] expose track-widget-creation to build aar (cla: yes, tool, waiting for tree to go green)\n\n57135 [flutter_tools] Support profile and release builds on Linux (cla: yes, tool, waiting for tree to go green)\n\n57143 Disable DartDev when launching flutter_tools (cla: yes, tool, waiting for tree to go green)\n\n57145 [Add2App Android] Fix the issue of Hotreload broken on latest Dev release with Android device (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-39", "text": "57161 Remove empty Supporting Files group from Swift app template (cla: yes, tool, waiting for tree to go green)\n\n57162 throw more specific toolexit when git fails during upgrade (cla: yes, tool, waiting for tree to go green)\n\n57173 [flutter_tools] allow adb to fail to un forward without crashing (cla: yes, tool, waiting for tree to go green)\n\n57182 [flutter_tools] fix period in URL for androidX incompat (cla: yes, tool, waiting for tree to go green)\n\n57184 [flutter_tools] ensure package_config is re-created if pub get is run (cla: yes, tool, waiting for tree to go green)\n\n57238 Switch to CMake for Linux desktop (cla: yes, tool)\n\n57268 Remove license statements in template files. (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-40", "text": "57274 Desktop default window size (cla: yes, tool, waiting for tree to go green)\n\n57321 Update packages (cla: yes, team, tool, waiting for tree to go green)\n\n57328 Update flutter_gallery_assets to ^0.2.0 (cla: yes, team, tool)\n\n57345 Protect the deletion of the local engine temp dir in case it is alrea\u2026 (cla: yes, tool, waiting for tree to go green)\n\n57349 Device manager choose running device (cla: yes, tool, waiting for tree to go green)\n\n57355 [flutter tools] Improve messages when we fail to connect to the Observatory (cla: yes, tool, waiting for tree to go green)\n\n57392 [flutter_tools] check for Runner.sln when parsing for plugins (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-41", "text": "57400 [flutter_tools] handle missing null check in manifest parser (cla: yes, tool)\n\n57415 Fix CMake invocation for 3.10 compat (cla: yes, tool)\n\n57445 [flutter_tools] remove globals/context for android testing (cla: yes, tool, waiting for tree to go green)\n\n57446 [flutter_tools] minor cleanups to try catch (cla: yes, tool)\n\n57447 [flutter_tools] put system clock on globals (cla: yes, tool)\n\n57448 [flutter_tools] remove zone level overrides of verbose and daemon logging (cla: yes, tool)\n\n57450 [flutter_tools] fix incorrect comment on web runner (cla: yes, tool, waiting for tree to go green)\n\n57452 Add Linux GTK artifacts to unpack list (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-42", "text": "57498 Temporarily allow pluginClass: none on desktop (cla: yes, tool)\n\n57506 [flutter_tools] chunk the hashing of large files (cla: yes, tool, waiting for tree to go green)\n\n57510 [flutter_tools] reland: integrate l10n tool into hot reload/restart/build (cla: yes, tool)\n\n57515 Remove TRANSFORM from Linux CMake files (cla: yes, tool)\n\n57532 Always show device discovery diagnostics in \u201cflutter devices\u201d (cla: yes, tool, waiting for tree to go green)\n\n57538 Re-add line to Linux template CMakeLists.txt (cla: yes, tool)\n\n57590 Update the flutter script\u2019s locking mechanism and follow_links (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-43", "text": "57601 Add Android private keystore to project gitignore (cla: yes, tool, waiting for tree to go green)\n\n57611 Revert \u201c[flutter_tools] remove globals/context for android testing\u201d (cla: yes, tool)\n\n57614 [flutter_tools] reland: remove globals from android device/testing (cla: yes, tool)\n\n57688 Change release archive check to warning (cla: yes, tool, waiting for tree to go green)\n\n57690 [flutter_tools] hide all development tools (cla: yes, tool, waiting for tree to go green)\n\n57701 Allow FLUTTER_APPLICATION_PATH to be null for misconfigured Xcode projects (cla: yes, t: xcode, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-44", "text": "57703 [flutter_tools] ensure emulator command does not crash with missing avdmanager (cla: yes, tool, waiting for tree to go green)\n\n57749 Add release and profile support for Windows (cla: yes, tool)\n\n57813 [flutter_tools] add vm service method to pull SkSL (cla: yes, tool, waiting for tree to go green)\n\n57829 [flutter_tools] forward flutter format to dart format and deprecate (cla: yes, tool, waiting for tree to go green)\n\n57830 [flutter_tools] validate android arch and build number (cla: yes, tool, waiting for tree to go green)\n\n57871 [flutter_tools] rename output LICENSE file to NOTICES and support loading either (cla: yes, framework, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-45", "text": "57873 [flutter_tools] URI encode dart-define values (cla: yes, tool, waiting for tree to go green)\n\n57874 [flutter_tools] throw if asked to build release for x86_64 (cla: yes, tool, waiting for tree to go green)\n\n57907 flutter.gradle: collect list of Android plugins from .flutter-plugins-dependencies (cla: yes, tool)\n\n57963 [flutter_tools] Support latest IntelliJ via Jetbrain toolbox (cla: yes, t: flutter doctor, tool)\n\n58011 write test to convince self of lack of timing issue (cla: yes, tool)\n\n58018 Prevent building non-android plugins in build aar (cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-46", "text": "58030 Remove invalid local from macos_assemble.sh (cla: yes, tool, waiting for tree to go green)\n\n58039 [flutter_tools] Put a heap size limit on the frontend_server (cla: yes, tool, waiting for tree to go green)\n\n58050 Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review)\n\n58064 print checksum differences when detected by \u2013verify-only (cla: yes, tool)\n\n58069 Fix Linux plugin template build visibility (cla: yes, tool)\n\n58123 Revert \u201cwrite test to convince self of lack of timing issue\u201d (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-47", "text": "58137 Change iOS device discovery from polling to long-running observation (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)\n\n58174 Start from a clean slate when bundling Linux build (cla: yes, tool)\n\n58188 [flutter_tools] only copy cached dill after startup (cla: yes, tool)\n\n58189 Update Windows template version (cla: yes, tool)\n\n58193 Revert \u201c[flutter_tools] always initialize the resident runner from di\u2026 (cla: yes, tool, waiting for tree to go green)\n\n58208 Revert \u201cRevert \u201c[flutter_tools] always initialize the resident runner from di\u2026\u201d (cla: yes, tool, waiting for tree to go green)\n\n58215 Fix extraneous spaces printed by flutter tool if the lock isn\u2019t waited on. (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-48", "text": "58257 Detect USB/network interface from iOS devices (cla: yes, platform-ios, t: xcode, tool)\n\n58284 Send text error in JSON and print in tools (cla: yes, framework, tool)\n\n58328 [flutter_tools] deprecate flutter generate and codegen (cla: yes, team, tool, waiting for tree to go green)\n\n58332 [flutter_tools] cleanup to devfs Operations (cla: yes, tool)\n\n58335 [flutter_tools] do not include material icon incorrectly (cla: yes, tool)\n\n58372 Fix non-local-engine Linux release builds (cla: yes, tool, waiting for tree to go green)\n\n58390 use Expand-Archive and Compress-Archive in windows os utils (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-49", "text": "58421 Fix typo in error message for flutter doctor (cla: yes, tool, waiting for tree to go green)\n\n58444 Remove outdated disable_input_output_paths from example project Podfiles (cla: yes, d: examples, platform-ios, team, tool, waiting for tree to go green)\n\n58454 Revert \u201c[flutter_tools] only copy cached dill after startup\u201d (cla: yes, tool)\n\n58455 [flutter_tools] reland: copy dill after startup (cla: yes, tool)\n\n58474 [flutter tools] Don\u2019t return success if we trigger runZoned\u2019s error callback (cla: yes, tool, waiting for tree to go green)\n\n58522 Build iOS apps using Swift Packages (cla: yes, d: examples, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-50", "text": "58525 Revert \u201c[flutter_tools] Put a heap size limit on the frontend_server\u201d (cla: yes, tool, waiting for tree to go green)\n\n58533 [flutter_tools] add flag for sound-null-safety, unify with experiments (a: null-safety, cla: yes, tool)\n\n58538 Don\u2019t elapse real time during IOSDevice.startApp tests (cla: yes, team, tool, waiting for tree to go green)\n\n58539 [flutter_tools] Allow the tool to suppress compilation errors. (cla: yes, tool)\n\n58541 Fake out DeviceManager.getDevices in test (cla: yes, team, tool, waiting for tree to go green)\n\n58544 Use fake command in analytics test (cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-51", "text": "58549 Revert \u201cBuild iOS apps using Swift Packages\u201d (cla: yes, d: examples, team, tool)\n\n58551 [flutter_tools] iOS VM Service logs should include stderr (cla: yes, tool, waiting for tree to go green)\n\n58557 [flutter_tools] remove handling of error that is fixed (cla: yes, tool, waiting for tree to go green)\n\n58607 Revert \u201c[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58618 Revert \u201cDon\u2019t elapse real time during IOSDevice.startApp tests\u201d (cla: yes, tool)\n\n58622 Don\u2019t elapse real time during IOSDevice.startApp tests (cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-52", "text": "58644 Add FakeAsync to delay tests (cla: yes, team, tool)\n\n58645 Move create project build tests to permeable command shard (cla: yes, team, tool)\n\n58646 Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58649 Add per-test timeout to Cirrus tool general tests (cla: yes, team, tool, waiting for tree to go green)\n\n58653 [flutter_tools] avoid serving files outside of expected paths (cla: yes, tool, waiting for tree to go green)\n\n58656 Add the ability to ignore lines depending on comments (cla: yes, team, tool)\n\n58670 LG debugging/logcat fixed (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-53", "text": "58688 [flutter_tools] unbreak g3 roll (tool, waiting for tree to go green)\n\n58703 [flutter_tools] use -f when fetching tags (cla: yes, tool)\n\n58711 [flutter_tools] unbreak g3 usage of installHook (cla: yes, tool, waiting for tree to go green)\n\n58713 Don\u2019t require a specific Windows 10 SDK (cla: yes, tool)\n\n58719 Revert \u201cuse Expand-Archive and Compress-Archive in windows os utils\u201d (cla: yes, tool)\n\n58732 Revert \u201cflutter.gradle: collect list of Android plugins from .flutter-plugins-dependencies\u201d (cla: yes, tool)\n\n58743 [flutter_tools] write sksl on exit (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-54", "text": "58798 [flutter_tools] don\u2019t use verbose when in doctor or help command (cla: yes, tool)\n\n58804 [flutter_tools] minor cleanup to vm service connection (cla: yes, tool, waiting for tree to go green)\n\n58812 [flutter tools] Change the desktop device names and IDs (cla: yes, tool)\n\n58815 Support work profiles and multiple Android users for run, install, attach, drive (cla: yes, platform-android, tool, waiting for tree to go green)\n\n58817 [flutter_tools] remove deprecation warning on flutter format (cla: yes, tool, waiting for tree to go green)\n\n58830 [flutter_tools] disable dartdev when calling snapshots directly (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-55", "text": "58842 [flutter_tools] fix capitalization in build commands (cla: yes, tool, waiting for tree to go green)\n\n58871 [flutter_tools] use correct sdk path for analysis (cla: yes, tool)\n\n58872 Revert \u201cSend text error in JSON and print in tools\u201d (cla: yes, framework, tool)\n\n58875 [flutter_tools] inject output preferences at the top level (cla: yes, tool)\n\n58879 [flutter_tools] support bundle-sksl-path on all desktop and mobile targets (cla: yes, tool)\n\n58887 [flutter_tools] only restrict devices based on arch + buildMode, not emulator status (cla: yes, tool, waiting for tree to go green)\n\n58890 [flutter_tools] change service worker load to NOTICES (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-56", "text": "58891 [flutter_tools] rename library to be less absurd (cla: yes, tool, waiting for tree to go green)\n\n58994 Send text error in JSON and print in tools (cla: yes, framework, tool, waiting for tree to go green)\n\n59001 fix analysis on master (cla: yes, tool)\n\n59002 Revert \u201cSend text error in JSON and print in tools\u201d (cla: yes, framework, tool)\n\n59009 Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green)\n\n59012 Release cache lock for commands after required artifacts are downloaded (cla: yes, tool, waiting for tree to go green)\n\n59018 Send text error in JSON and print in tools (cla: yes, framework, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-57", "text": "59023 add a help link to the default module template readme (cla: yes, tool, waiting for tree to go green)\n\n59025 Revert \u201cBuild iOS apps using Swift Packages\u201d (cla: yes, d: examples, team, tool)\n\n59026 [flutter_tools] Fix slow ios_device_start_prebuilt_test (cla: yes, tool, waiting for tree to go green)\n\n59035 Revert \u201c[flutter_tools] use correct sdk path for analysis\u201d (cla: yes, tool)\n\n59044 Move iOS Podfile logic into tool (cla: yes, platform-ios, team, tool, waiting for tree to go green)\n\n59046 Cleanup devicelab framework duplicate (a: tests, cla: yes, engine, framework, team, tool)\n\n59080 Remove use of BundleUtilities in Linux build (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-58", "text": "59081 [flutter_tools] Reland: use correct sdk path for analysis (cla: yes, tool)\n\n59083 [flutter_tools] include dart-defines in cached kernel name (cla: yes, tool, waiting for tree to go green)\n\n59087 [flutter_tools] create NotifyingLogger at the top level when running flutter run \u2013machine or flutter attach \u2013machine (cla: yes, tool)\n\n59175 [flutter_tools] remove globals from proxy validator (cla: yes, tool)\n\n59184 [flutter_tools] remove globals from compilers (cla: yes, team, tool)\n\n59197 Revert \u201c[flutter_tools] inject output preferences at the top level\u201d (cla: yes, tool)\n\n59201 Add iOS Podfile migration warning to support federated plugins (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-59", "text": "59209 Support .flutter-plugins-dependencies (cla: yes, platform-ios, team, tool, waiting for tree to go green)\n\n59210 Do not depend on embedded $dartUriBase (tool)\n\n59215 [flutter_tools] Update roll_dev.dart (cla: yes, team, tool, waiting for tree to go green)\n\n59217 Deprecate make-host-app-editable (a: existing-apps, cla: yes, tool, waiting for tree to go green)\n\n59250 Don\u2019t crash on requests for invalid package URLs (cla: yes, tool, waiting for tree to go green)\n\n59283 [versions] Update all the versions (cla: yes, team, tool)\n\n59285 Remove Fuchsia BUILD.gn files (a: internationalization, a: tests, cla: yes, framework, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-60", "text": "59287 Switch Linux to the GTK embedding (cla: yes, tool)\n\n59291 [flutter_tools] ensure generated entrypoint matches test and web entrypoint language version (cla: yes, team, tool)\n\n59294 flutter.gradle: collect list of Android plugins from .flutter-plugins-dependencies (cla: yes, tool, waiting for tree to go green)\n\n59343 CMake fix for Linux projects without plugins (cla: yes, tool, waiting for tree to go green)\n\n59365 Remove flutter_goldens_client package dependency from tool (cla: yes, team, tool, waiting for tree to go green)\n\n59369 [flutter_tools] move mingit path addition back to flutter.bat (cla: yes, tool, waiting for tree to go green)\n\n59484 Word substitutions (cla: yes, framework, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-61", "text": "59487 [flutter_tools] deprecate build aot (cla: yes, tool)\n\n59497 More word substitutions (cla: yes, tool, waiting for tree to go green)\n\n59507 Add --platforms to flutter create -t plugin command (cla: yes, tool, waiting for tree to go green)\n\n59508 Remove last references to ideviceinstaller (cla: yes, platform-ios, team, tool, waiting for tree to go green)\n\n59512 [flutter_tools] update libimobiledevice (cla: yes, tool)\n\n59539 [flutter_tools] For l10n with deferred loading, use loadLibrary for non-web too (cla: yes, team, tool)\n\n59568 [flutter_tools] fix the post message event attribute used to skip waiting (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-62", "text": "59571 [flutter_tools] add toggle b and service extension to change platform brightness (cla: yes, framework, tool)\n\n59607 Specify encoding for vswhere output (cla: yes, tool)\n\n59624 [flutter_tools] make expando on vm service null safe to handle web stuff (cla: yes, tool, waiting for tree to go green)\n\n59626 [flutter_tools] handle NPE in list views method (cla: yes, tool)\n\n59630 Fix Linux shell window default size (cla: yes, tool)\n\n59632 Don\u2019t crash when pubspec isn\u2019t a map (cla: yes, tool, waiting for tree to go green)\n\n59695 Change iOS device discovery from polling to long-running observation (cla: yes, tool)\n\n59706 [flutter_tools] maintain file manifest for create (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-63", "text": "59709 Clean up PollingDeviceDiscovery dispose (cla: yes, tool, waiting for tree to go green)\n\n59714 Use a HeaderBar for Linux applications. (cla: yes, tool)\n\n59717 Manual engine roll to update format of compileExpression RPC response (cla: yes, engine, tool, waiting for tree to go green)\n\n59773 [flutter_tools] add missing null-safety flags (cla: yes, tool)\n\n59774 Revert \u201cManual engine roll to update format of compileExpression RP\u2026 (cla: yes, engine, tool)\n\n59786 [flutter_tools] make parent logger optional (cla: yes, tool)\n\n59789 Make flutter and dart scripts invoke their batch file equivalents on Windows (cla: yes, tool)\n\n59802 Remove Linux shell window_configuration.cc (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-64", "text": "59804 Roll the engine from 965fbbe to b5f5e63 (cla: yes, engine, tool, waiting for tree to go green)\n\n59809 Add integration tests for structured error (cla: yes, tool, waiting for tree to go green)\n\n59810 Revert \u201cflutter.gradle: collect list of Android plugins from .flutter-plugins-dependencies\u201d (cla: yes, tool)\n\n59813 Revert \u201cAdd the ability to ignore lines depending on comments\u201d (cla: yes, tool)\n\n59822 [flutter_tools] track null safety usage (cla: yes, tool, waiting for tree to go green)\n\n59826 Enabled expression evaluation in flutter for web by default (cla: yes, tool, waiting for tree to go green)\n\n59832 [versions] update all versions (cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-65", "text": "59867 Replace ANDROID_HOME user messages with ANDROID_SDK_ROOT (cla: yes, platform-android, team, tool, waiting for tree to go green)\n\n59874 Parse build ios framework build mode from params (a: existing-apps, cla: yes, platform-ios, tool, waiting for tree to go green)\n\n59896 gitignore .last_build_id file in the repo (cla: yes, d: examples, team, tool, waiting for tree to go green)\n\n59907 port devicelab from idevice_id -> xcdevices (cla: yes, team, tool)\n\n59996 [flutter_tools] android test cleanups (cla: yes, tool, waiting for tree to go green)\n\n59997 [flutter_tools] cleanup fuchsia tests (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-66", "text": "59999 [flutter_tools] cleanup iOS test (tool, waiting for tree to go green)\n\n60017 Fix typo in Linux CMake template (cla: yes, tool, waiting for tree to go green)\n\n60018 [flutter_tools] switch linux desktop feature on (cla: yes, tool, waiting for tree to go green)\n\n60041 Use assemble build system directly for build ios-framework (cla: yes, team, tool)\n\n60060 [flutter_tools] fix root directory tests (cla: yes, tool)\n\n60102 [flutter_tools] add null safety argument to unbreak frob (cla: yes, tool)\n\n60111 Add null safety options to build ios-framework (a: existing-apps, a: null-safety, cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-67", "text": "60116 [flutter_tools] Add support for web in plugin template. (cla: yes, tool, waiting for tree to go green)\n\n60119 [flutter_tools] separate target platform, host platform, and architecture (cla: yes, tool)\n\n60127 [versions] update all versions and fix tool tests (cla: yes, team, tool)\n\n60144 [flutter_tools] more test fixes (cla: yes, tool)\n\n60147 Revert \u201c[flutter_tools] separate target platform, host platform, and architecture\u201d (cla: yes, tool)\n\n60156 [flutter_tools] even more test fixes (cla: yes, tool)\n\n60159 Make flutter create . on plugins also regenerates files for platforms already supported (cla: yes, tool, waiting for tree to go green)\n\n60163 Consider the Linux template stable (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-68", "text": "60163 Consider the Linux template stable (cla: yes, tool)\n\n60172 [flutter_tools] start fixing command tests (cla: yes, tool)\n\n60185 [gen_l10n] Update the arb filename parsing logic (a: internationalization, cla: yes, team, tool)\n\n60200 [flutter_tools] Clean code analyze command (cla: yes, engine, tool, waiting for tree to go green)\n\n60221 [flutter_tools] de-flake integration tests (cla: yes, tool)\n\n60224 [flutter_tools] Update WebAssetServer to avoid context, fix tests (cla: yes, tool)\n\n60228 Make module run script names unique (a: existing-apps, cla: yes, platform-ios, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-69", "text": "60231 [flutter_tools] remove most use of global packages path (cla: yes, tool)\n\n60241 [flutter_tools] fix tests that depend on correct cache existance (cla: yes, tool)\n\n60263 [flutter_tools] last pass on general.shard unit tests (cla: yes, tool)\n\n60317 [flutter_tools] surface null safety/experiment flags in attach (cla: yes, tool, waiting for tree to go green)\n\n60381 Use ephemeral ports for iOS port forwarding (cla: yes, platform-ios, tool)\n\n60395 [flutter tools] Revert desktop device name changes and print the category instead (cla: yes, tool, waiting for tree to go green)\n\n60480 [flutter_tools] remove globals from base/android (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-70", "text": "60546 Fix daemon device discovery crash when Xcode isn\u2019t installed (cla: yes, severe: crash, t: xcode, tool, waiting for tree to go green)\n\n60551 Revert \u201c[flutter_tools] update libimobiledevice\u201d (cla: yes, tool)\n\n60569 Re-land \u201c[flutter_tools] update libimobiledevice\u201d (cla: yes, tool)\n\n60570 [flutter_tools] support sound null-safety mode for the web (cla: yes, tool)\n\n60611 1.17.5 CP: Fix daemon device discovery crash when Xcode isn\u2019t installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n60615 [flutter_tools] ensure flutter daemon can exit correctly (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-71", "text": "60617 [flutter_tool] fix ide-config crash because of no android key (cla: yes, tool)\n\n60623 Take screenshots of wirelessly paired iOS devices (platform-ios, tool)\n\n60629 Switch Windows to CMake (cla: yes, tool)\n\n60633 [flutter_tools] add null-safety flags to dill cache location (cla: yes, tool)\n\n60654 Only try the GDK X11 backend, as the FlView only currently supports X11 (cla: yes, tool)\n\n60658 [flutter_tools] fix crash if grouped doctor validator crashes (cla: yes, tool, waiting for tree to go green)\n\n60693 Typo sweep (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-72", "text": "60708 [flutter_tools] support starting in canvaskit with FLUTTER_WEB_USE_SKIA=true (tool, waiting for tree to go green)\n\n60787 [flutter_tools] remove some globals from flutter_tester device (cla: yes, tool)\n\n60927 [flutter_tools] fix crash if the platform section was a list (cla: yes, tool)\n\n60932 [flutter_tools] add sdk constraint to plugin/package templates (cla: yes, tool)\n\n60998 [flutter_tools] deprecate flutter version (cla: yes, tool, waiting for tree to go green)\n\n61003 [flutter_tools] make precache force blow away stamp files (cla: yes, tool)\n\n61034 Roll packages (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-73", "text": "61034 Roll packages (cla: yes, team, tool)\n\n61064 Handle git dependencies, roll packages to get transitive deps of flutter_gallery (cla: yes, team, tool, waiting for tree to go green)\n\n61066 Issue with comparison operator in generated service worker (cla: yes, tool, waiting for tree to go green)\n\n61103 [flutter_tools] ensure AppRunLogger is injected for run/attach machine (cla: yes, tool, waiting for tree to go green)\n\n61127 Test update_packages for git packages (cla: yes, tool, waiting for tree to go green)\n\n61129 [flutter_tools] fix recursive asset variant issue (cla: yes, tool, waiting for tree to go green)\n\nframework - 413 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-74", "text": "framework - 413 pull request(s)\n\n42940 Revise Action API (cla: yes, f: cupertino, f: material design, framework, team)\n\n50232 Docs \u2018a a\u2019 fix #1 (cla: yes, framework)\n\n50236 Docs \u2018that that\u2019 fix #2 (cla: yes, framework, waiting for tree to go green)\n\n50237 Docs \u2018that that\u2019 fix #3 (cla: yes, framework, waiting for tree to go green)\n\n50412 Make CircularProgressIndicator\u2019s animation match native (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n50673 Update AppBar MediaQuery documentation (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-75", "text": "50915 Implement barrierDismissible for showCupertinoDialog (a: internationalization, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n51465 Support New and Custom FAB Locations (cla: yes, f: material design, framework, waiting for tree to go green)\n\n51581 Fix outline button solid path when BorderSize.width is used (cla: yes, f: material design, framework, platform-web, waiting for tree to go green)\n\n51656 Set AA flag for painting images (a: images, cla: yes, framework, waiting for tree to go green, will affect goldens)\n\n52126 Autofill Part 1 (cla: yes, customer: peppermint, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-76", "text": "52507 enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\n52990 Update Highlight mode initial value calculation. (cla: yes, f: focus, framework, waiting for tree to go green)\n\n52995 Fix typo of showCupertinoModalPopup documentation comment (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n53381 Characters Package (a: text input, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)\n\n53422 Rename GPU thread to raster thread in API docs (a: tests, cla: yes, framework, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-77", "text": "53616 Improving A11y for Flutter Gallery Demos (a: accessibility, a: tests, cla: yes, f: material design, framework, team)\n\n53655 Pass showCheckboxColumn parameter to DataTable (a: quality, cla: yes, f: material design, framework, team)\n\n53837 Skip Audits (2) (a: tests, cla: yes, f: cupertino, framework, platform-web, team, waiting for tree to go green)\n\n53843 Fix FlutterError.onError in debug mode (cla: yes, framework)\n\n53875 Remove network images from cache on any exception during loading (a: images, cla: yes, framework)\n\n53878 Fix diagnostics crash in profile mode (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-78", "text": "53888 Add visualDensity and focus support to ListTile (a: desktop, cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n53916 Slider rebase work (cla: yes, f: material design, framework, team)\n\n53945 [Material] Add focus, highlight, and keyboard shortcuts to Slider (cla: yes, f: material design, framework, waiting for tree to go green)\n\n53959 Clear ImageCache on MemoryPressure (a: images, cla: yes, framework, waiting for tree to go green)\n\n53974 Remove strict repeat check from framework formatter (moved to engine) (cla: yes, framework)\n\n54110 Added \u2018barrierColor\u2019 and \u2018useSafeArea\u2019 parameters to the showDialog function. (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-79", "text": "54119 Reland \u201ciOS UITextInput autocorrection prompt (#45354)\u201d (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n54125 remove flutter_test quiver dep, use fake_async and clock instead (a: tests, cla: yes, framework, team)\n\n54128 fixes isAlwaysShown material scrollbar.dart (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54131 flutter/flutter 1.17.0-dev.3.1 cherrypicks (CQ+1, cla: yes, framework, tool)\n\n54140 iOS Text Selection Menu Overflow (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-80", "text": "54144 drop image package dependency for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54171 System mouse cursors (a: tests, cla: yes, f: material design, framework)\n\n54206 Updating codeowners for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54212 Reverse dependency between services and scheduler (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54218 [flutter_driver] Add SceneDisplayLag stats to timeline summary (a: tests, cla: yes, framework, waiting for tree to go green)\n\n54220 [benchmarks] Handle multiple begin/end trace events (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-81", "text": "54227 [windows] Adds support for keyboard mapping. (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54234 Fix right alignment TWB longestLine (a: typography, cla: yes, framework)\n\n54243 Add API to services package that overrides HTTP ban (cla: yes, framework)\n\n54258 [DecorationImage] adds scale property (cla: yes, framework, waiting for tree to go green)\n\n54286 Revert bindings dependency workaround (cla: yes, framework, waiting for tree to go green)\n\n54291 Minimal implementation of FlutterError.toString for release mode (cla: yes, framework, waiting for tree to go green)\n\n54305 Add missing properties to TextStyle.apply (a: typography, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-82", "text": "54306 Fix initial value for highlight mode on desktop platforms. (cla: yes, framework)\n\n54317 PageStorage sample (cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green)\n\n54322 Skip Audit - Material Library (a: quality, a: tests, cla: yes, f: material design, framework, platform-web, team, waiting for tree to go green)\n\n54394 replace simple empty Container with w & h with SizedBox (a: accessibility, cla: yes, f: cupertino, f: material design, framework)\n\n54442 Add null check in TextStyle.apply for TextBaseline (cla: yes, framework, waiting for tree to go green)\n\n54479 Enable gesture recognizer in selectable rich text (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-83", "text": "54480 Revert \u201c[flutter_driver] Add SceneDisplayLag stats to timeline summar\u2026 (a: tests, cla: yes, framework, team)\n\n54481 Make TextFormFieldState.didChange change text fields value (cla: yes, f: material design, framework)\n\n54490 [flutter_driver] Reland add SceneDisplayLag stats to timeline summary (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54493 Use scheduleTask for adding licenses (cla: yes, framework, waiting for tree to go green)\n\n54519 Revert \u201cAdd API to services package that overrides HTTP ban\u201d (cla: yes, framework)\n\n54522 Reland \u201cAdd API to services package that overrides HTTP ban (#54243)\u201d (cla: yes, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-84", "text": "54640 Allow WIllPopCallback to return null or false to veto the pop. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54670 Updated Nested SingleChildScrollView test for clarity (cla: yes, framework, waiting for tree to go green)\n\n54674 Add searchFieldStyle (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54698 Allow headers to be passed to the WebSocket connection for VMServiceFlutterDriver (a: tests, cla: yes, framework, waiting for tree to go green)\n\n54706 Wire in focusNode, focusColor, autofocus, and dropdownColor to DropdownButtonFormField (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54714 [Material] Added BottomNavigationBarTheme (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-85", "text": "54741 [flutter_driver] Fix browser check (a: tests, cla: yes, framework, waiting for tree to go green)\n\n54779 Revert \u201cReland \u201cAdd API to services package that overrides HTTP ban (#54243)\u201d\u201d (cla: yes, framework)\n\n54798 ToDo Audit - Cupertino+ Library (a: accessibility, cla: yes, d: examples, f: cupertino, framework, team, waiting for tree to go green)\n\n54902 Paste shows only when content on clipboard (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n54919 Add MediaQueryData.navigationMode and allow controls to be focused when disabled. (cla: yes, customer: fun (g3), f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-86", "text": "54978 Expose current day as a parameter to showDatePicker. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54981 disable hit testing if the CompositedTransformFollower is hidden when\u2026 (cla: yes, framework)\n\n54985 Step 2: SnackBarBehavior.floating offset fix by default (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55001 FlutterErrorDetails.context docs fix (a: error message, a: tests, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)\n\n55044 Created method to report ImageChunkEvents (cla: yes, framework, waiting for tree to go green)\n\n55064 Step 3: Removes temporary flag for SnackBarBehavior.floating offset fix (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-87", "text": "55069 Prioritize scrolling away nested overscroll (a: fidelity, a: quality, cla: yes, customer: crowd, f: scrolling, framework, platform-ios, waiting for tree to go green)\n\n55141 Support tags in testWidgets (a: tests, cla: yes, framework, tool, waiting for tree to go green)\n\n55221 [ExpansionTile] adds padding property (cla: yes, f: material design, framework)\n\n55230 Make Action.enabled be isEnabled(Intent intent) instead. (cla: yes, framework, team)\n\n55246 Handle surrogate pairs in RenderEditable (cla: yes, framework)\n\n55253 Flutter 1.17.0.dev.3.2 cherrypicks (cla: yes, engine, framework, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-88", "text": "55257 Add DragTarget callback onAcceptDetails, plus helper class DragTarget\u2026 (cla: yes, framework, waiting for tree to go green)\n\n55260 Fine tune the Y offset of OutlineInputBorder\u2019s floating label (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55303 Fixed a typo in the docs. (cla: yes, framework, waiting for tree to go green)\n\n55333 Use kIsWeb instead of private _kIsBrowser in text_input.dart (cla: yes, framework, waiting for tree to go green)\n\n55336 Adding tabSemanticsLabel to CupertinoLocalizations (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-89", "text": "55408 Fix InputDecorator intrinsic height reporting (a: text input, cla: yes, f: material design, f: scrolling, framework, severe: regression, waiting for tree to go green)\n\n55414 LayoutBuilder: skip calling builder when constraints are the same (cla: yes, framework, team)\n\n55415 Customizable obscuringCharacter (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n55416 Fix link to material spec (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55469 Fix compute intrinsic size for wrap (cla: yes, framework)\n\n55482 Enable configuring minHeight for LinearProgressIndicator and update default to match spec (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-90", "text": "55484 Revert \u201cFix FlutterError.onError in debug mode (#53843)\u201d (a: tests, cla: yes, f: material design, framework)\n\n55494 Add onSecondaryTap to gesture recognizer and gesture detector. (a: tests, cla: yes, framework, waiting for tree to go green)\n\n55500 Relands Fix FlutterError.onError in debug mode (cla: yes, framework, waiting for tree to go green)\n\n55527 Animation sheet recorder (a: tests, cla: yes, framework, waiting for tree to go green, will affect goldens)\n\n55599 Default to use V2 Slider (cla: yes, f: material design, framework)\n\n55600 Fix focus traversal regions to account for transforms. (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-91", "text": "55636 Prevent use of TextInputType.text when also using TextInputAction.newLine via assert (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n55651 Fix behavior change due to incorrect initial floating setting (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55761 Add a property to Material icon button to customize the splash radius (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55763 [timeline] Sort timeline events before summarizing (a: tests, cla: yes, framework)\n\n55769 Revert \u201c[timeline] Sort timeline events before summarizing (#55763)\u201d (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-92", "text": "55771 [timeline] Sort timeline events before summarizing (a: tests, cla: yes, framework, waiting for tree to go green)\n\n55775 TextField enabled fix (a: text input, cla: yes, f: material design, framework, waiting for tree to go green)\n\n55789 ToDo Audit - Material Library+ (cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n55793 Skip Audit - Painting Library (a: images, a: tests, a: typography, cla: yes, framework, platform-web, team, will affect goldens)\n\n55829 allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-93", "text": "55832 Prevent ModalBottomSheet from rebuilding its child (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55857 Removed useV2 Slider flag (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55871 Flutter 1.17.0.dev.3.3 cherrypicks (cla: yes, engine, framework, team, tool)\n\n55902 Fix default opacity assignments for unselected and selected icons in NavigationRail (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55911 Text field height fix (a: text input, cla: yes, f: inspector, f: material design, framework, waiting for tree to go green)\n\n55936 Fixed #55858 (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-94", "text": "55939 Implementation of the Material Date Range Picker. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55977 Add clipBehavior to widgets with clipRect (cla: yes, f: material design, framework, severe: API break, team, will affect goldens)\n\n55998 Fixes the navigator pages update crashes when there is still route wa\u2026 (cla: yes, f: routes, framework, severe: API break, waiting for tree to go green)\n\n56084 Step 1 of 3: Add opt-in fixing Dialog border radius to match Material Spec (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n56090 Step 1 of 3: Add opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-95", "text": "56091 Ensure *_kn.arb files are properly escaped with gen_localizations (a: internationalization, cla: yes, f: cupertino, f: material design, framework)\n\n56190 [ExpansionTile] Wire through expandedCrossAxisAlignment, and expandedAlignment properties to the expanded tile (cla: yes, f: material design, framework, waiting for tree to go green)\n\n56407 fixup! Update grammar in basic.dart #56251 (cla: yes, framework, waiting for tree to go green)\n\n56409 InteractiveViewer Widget (cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n56428 Eagerly wait for the driver extension on FlutterDriver.connect() (a: tests, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-96", "text": "56430 Allow waitUntilFirstFrameRasterized without a root widget (a: tests, cla: yes, framework, waiting for tree to go green)\n\n56494 Wire up autofocus for OutlineButton (cla: yes, f: material design, framework)\n\n56521 Have the physics enforce the scroll position. (cla: yes, framework)\n\n56549 Expose includeSemantics option to RawKeyboardListener (cla: yes, framework)\n\n56582 Update Tab semantics in Cupertino to be the same as Material (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green)\n\n56611 Nested InkWells only show the innermost splash (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-97", "text": "56614 Revert \u201cPaste shows only when content on clipboard (#54902)\u201d (cla: yes, f: cupertino, f: material design, framework)\n\n56641 Add 2 new keyboard types and infer keyboardType from autofill hints (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n56645 Localized new strings added in the redesigned Material Date Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)\n\n56689 Bring back paste button hide behavior (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56710 [web] Unskip TextStyle web tests (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-98", "text": "56732 fix pushAndRemoveUntil incorrectly removes the routes below the first\u2026 (cla: yes, f: routes, framework, waiting for tree to go green)\n\n56794 [web & desktop] Hide all characters in a TextField, when obscureText is true on web & desktop (cla: yes, f: material design, framework, platform-mac, platform-web, waiting for tree to go green)\n\n56806 Revert \u201cBring back paste button hide behavior\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56859 Fix wrong link in description on the platform system channel (cla: yes, framework, waiting for tree to go green)\n\n56895 [Material] Use titleTextStyle from dialog theme for SimpleDialog (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-99", "text": "56906 more docs about diagnostics in release mode (cla: yes, framework)\n\n56922 Bring back paste button hide behavior 2 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56951 Revert \u201cBring back paste button hide behavior 2\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56952 Add more documentation to addTimingsCallback (cla: yes, framework, waiting for tree to go green)\n\n56956 ThemeData.brightness == ThemeData.colorScheme.brightness (cla: yes, f: material design, framework, waiting for tree to go green)\n\n56968 setState() will call scheduleFrame() in post-frame callback now. (a: accessibility, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-100", "text": "57033 Allow updating textAlignVertical (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57036 fix push replacement reports wrong previous route to navigator observer (cla: yes, f: routes, framework, waiting for tree to go green)\n\n57037 Making DropdownButtonFormField to re-render if parent widget changes (cla: yes, f: material design, found in release: 1.17, found in release: 1.18, framework, severe: regression, waiting for tree to go green)\n\n57047 Added Dartpad and Image examples to Slider and RangeSlider docs (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57052 Flutter 1.17.1 cherrypicks (cla: yes, engine, framework, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-101", "text": "57053 Updated gen_missing_localizations to copy the english strings instead of using \u2018TBD\u2019. (cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n57058 1.18.0-11.1.pre beta cherrypicks (cla: yes, engine, framework, team, tool, work in progress; do not review)\n\n57065 Remove deprecated child parameter for NestedScrollView\u2019s overlap managing slivers (cla: yes, f: scrolling, framework, severe: API break, waiting for tree to go green)\n\n57085 Remove redundant transform from showInViewport (cla: yes, framework, waiting for tree to go green)\n\n57094 MouseCursor uses a special class instead of null to defer (cla: yes, framework)\n\n57136 update initial route documentation (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-102", "text": "57139 Bring back paste button hide behavior 3 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n57167 Remove obsolete UpdateCounted prefix (cla: yes, framework, waiting for tree to go green)\n\n57172 Add option for ExpansionTile to maintain the state of its children when collapsed (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57189 Honor the InputDecoratorTheme in the text input fields used by the Date Pickers (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57195 Fix NavigationRail class docs (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)\n\n57201 correctly dispose listeners by image widget (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-103", "text": "57240 [web] Update test skip description. (a: tests, cla: yes, framework, platform-web)\n\n57244 Make Tooltip recover gracefully when context is destroyed. (cla: yes, f: material design, framework)\n\n57247 Improve error message when using popuntil with bad predicate (cla: yes, framework, waiting for tree to go green)\n\n57261 Make _RenderButtonBarRow.constraints null aware (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57264 Prevent WhitelistingTextInputFormatter to return a empty string if the current value does not satisfy the formatter (a: text input, cla: yes, framework, waiting for tree to go green)\n\n57270 add missing deps to flutter_test BUILD.gn (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-104", "text": "57286 Revert \u201c Bring back paste button hide behavior 3\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, platform-web, team, waiting for tree to go green)\n\n57287 remove pending timers list code out of assert message (a: tests, cla: yes, framework)\n\n57291 [ExpansionTile] adds childrenPadding property (cla: yes, f: material design, framework)\n\n57299 add @factory to create* methods (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57319 Fix Autofill example (cla: yes, framework, waiting for tree to go green)\n\n57324 Fix Web asking for clipboard permissions (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-105", "text": "57327 Value Indicator uses Global position (cla: yes, f: material design, framework)\n\n57332 Add autofill support for TextFormField (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57339 fix route annoucement for first route and last route (cla: yes, framework, waiting for tree to go green)\n\n57412 Fixed a typo. (cla: yes, framework, waiting for tree to go green)\n\n57461 Fix segment hit test behavior for segmented control (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n57487 Fix typo in cupertino datepicker error (cla: yes, f: cupertino, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-106", "text": "57500 SnackBarAction.createState() should have return type State (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57511 Step 2 of 3: Change opt-in default for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n57516 Update platform_view.dart (cla: yes, framework, waiting for tree to go green)\n\n57519 Report the accurate local position in (sliding)segmented control hit testing (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n57521 Move paragraph on using Navigation Rail for wide viewports only closer to the top of the API docs. (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-107", "text": "57522 Add doc and test for Container\u2019s hitTest behavior (cla: yes, framework, waiting for tree to go green)\n\n57526 Update the requirements for applying the elevation overlay. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57534 Improve CupertinoDatePicker docs (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n57535 Slider value indicator gets disposed if it is activated (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57574 Have _warpToCurrentIndex() shortcut logic behave properly (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57588 New license page. (a: internationalization, cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-108", "text": "57605 fix navigator observer announcement order (cla: yes, framework, waiting for tree to go green)\n\n57628 Add mouse cursor API to widgets (phase 1) (cla: yes, f: material design, framework)\n\n57644 Adds physics to the TabBar (#57416) (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57670 Add code example for CustomScrollView on how to make it grow in two directions along its scroll axis (cla: yes, framework, waiting for tree to go green)\n\n57696 Functionality to check handlers set on platform channels (a: tests, cla: yes, framework, waiting for tree to go green)\n\n57733 #57730 - Support custom shapes for ListTiles (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-109", "text": "57736 [AppBarTheme] adds centerTitle property (cla: yes, f: material design, framework, severe: new feature, waiting for tree to go green)\n\n57745 Chips text scaling (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57751 Step 2 of 3: Change opt-in default for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n57809 Stopped all animation controllers after toggleable has been detached. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57821 fix a typo in trace events for the image cache (cla: yes, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-110", "text": "57838 Add sample code of GestureDetector with no children (cla: yes, d: api docs, d: examples, documentation, f: gestures, framework, waiting for tree to go green)\n\n57841 Deleted deprecated profile func and profile.dart (cla: yes, framework, waiting for tree to go green)\n\n57868 [CheckboxListTile] exposes contentPadding property of ListTile. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57871 [flutter_tools] rename output LICENSE file to NOTICES and support loading either (cla: yes, framework, team, tool)\n\n58016 Consistent American spelling of \u2018behavior\u2019 (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-111", "text": "58024 fix cupertino page route dismisses hero transition when swipe to the \u2026 (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n58037 [SwitchListTile] adds controlAffinity property (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58050 Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review)\n\n58094 Set upper limit on text scaling for AppBar.title (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58098 Added Documentation for AnimationController.repeat() (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-112", "text": "58117 Minor correction to documentation for buttonColor (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)\n\n58118 Add function to set structured error early (cla: yes, framework)\n\n58131 [flutter] allow loading either NOTICES or LICENSE (cla: yes, framework, waiting for tree to go green)\n\n58151 Error message when size has not been set in RenderBox\u2019s performLayout should be well versed (cla: yes, framework, waiting for tree to go green)\n\n58154 Allow null value for CheckboxListTile (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58202 Build routes even less (cla: yes, framework, waiting for tree to go green)\n\n58203 Various bits of trivial cleanup (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-113", "text": "58204 Error message improvements (cla: yes, framework, waiting for tree to go green)\n\n58206 Dedupe (and update) the \u2013track-widget-creation documentation (cla: yes, framework, waiting for tree to go green)\n\n58209 Pass MaterialButton.disabledElevation into RawMaterialButton (cla: yes, f: material design, framework)\n\n58210 [e2e] make test bindings friendlier to integration tests (a: tests, cla: yes, framework)\n\n58213 update build doc string to advocate avoiding doing tasks other than b\u2026 (cla: yes, d: api docs, framework, waiting for tree to go green)\n\n58258 Helpful assertion for isAlwaysShown error (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-114", "text": "58259 enable Navigator.of to accept a navigator element and return its stat\u2026 (cla: yes, framework, waiting for tree to go green)\n\n58272 Remove callback asserts on FocusableActionDetector (a: desktop, cla: yes, framework)\n\n58284 Send text error in JSON and print in tools (cla: yes, framework, tool)\n\n58344 Revert \u201cAdd clipBehavior to widgets with clipRect\u201d (cla: yes, f: material design, framework, team)\n\n58346 EditableText.bringIntoView calls showOnScreen (cla: yes, framework, waiting for tree to go green)\n\n58350 More information about our error message APIs. (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-115", "text": "58392 iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break)\n\n58430 [flutter_driver] make timeline request in chunks (a: tests, cla: yes, framework, perf: memory)\n\n58448 InkWell uses MaterialStateMouseCursor and defaults to clickable (cla: yes, f: material design, framework)\n\n58456 Update StandardCodec documentation with double alignment (cla: yes, documentation, framework, waiting for tree to go green)\n\n58482 Expose ComputePlatformResolvedLocale (a: internationalization, cla: yes, customer: money (g3), framework, waiting for tree to go green)\n\n58503 Do not assume imageCache is created when handleMemoryPressure is called (a: images, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-116", "text": "58511 Add material page, cupertino page, and transition page classes (cla: yes, framework)\n\n58514 add rasterizer start times to timeline summaries (a: tests, cla: yes, framework, waiting for tree to go green)\n\n58530 [Line Heights] Add textHeightBehavior to SelectableText. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58535 Make _RenderSlider not be a semantics container (a: accessibility, cla: yes, f: focus, f: material design, framework)\n\n58593 Add collapsed height param to SliverAppBar (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-117", "text": "58607 Revert \u201c[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58620 Make debugSemantics available to profile mode (a: accessibility, a: tests, cla: yes, framework, team)\n\n58621 Make it possible to remove nodes from traversal sort. (cla: yes, framework, waiting for tree to go green)\n\n58630 Updated Slider test (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58635 Remove DiagnosticableMixin in favor of Diagnosticable (cla: yes, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-118", "text": "58646 Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58650 Added MaterialStateProperty overlayColor to InkWell (cla: yes, f: material design, framework)\n\n58655 debug mode warning text alignment (a: tests, cla: yes, framework, waiting for tree to go green)\n\n58686 [PageTransitionsBuilder] Fix \u2018ZoomPageTransition\u2019 built more than once (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58708 Add shadowColor to AppBar and AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-119", "text": "58715 Fix custom physics application in TabBarView (a: quality, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)\n\n58723 Drop an unnecessary factory constructor (a: tests, cla: yes, framework, waiting for tree to go green)\n\n58746 add missing arguments for all constructors of ListView and GridView (cla: yes, framework, waiting for tree to go green)\n\n58754 Update build doc (cla: yes, framework, waiting for tree to go green)\n\n58771 [Flutter Driver] Update the comments regarding the default timeout of WaitFor and WaitForAbsent commands (a: tests, cla: yes, framework, waiting for tree to go green)\n\n58780 fix typo in bottom navigation bar docs (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-120", "text": "58808 Introduce inherited navigator observer and refactor hero controller (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n58820 Timeline summary contains CPU, GPU and Memory usage (a: tests, cla: yes, framework, severe: performance, waiting for tree to go green)\n\n58823 Add comments to flutter_driver for timeline class (a: tests, cla: yes, framework)\n\n58829 Step 3 of 3: Remove opt-in for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n58831 Step 3 of 3: Remove opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-121", "text": "58843 Restore some typography tests (cla: yes, f: material design, framework)\n\n58872 Revert \u201cSend text error in JSON and print in tools\u201d (cla: yes, framework, tool)\n\n58971 Update animation.dart - Staggered animations: TweenSequences example (cla: yes, framework)\n\n58994 Send text error in JSON and print in tools (cla: yes, framework, tool, waiting for tree to go green)\n\n59002 Revert \u201cSend text error in JSON and print in tools\u201d (cla: yes, framework, tool)\n\n59008 Update TextTheme.button.letterSpacing from 0.75 to 1.25 per spec (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-122", "text": "59010 Scale input decorator label width (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59014 Handle selection ranges where getBoxesForSelection returns an empty list (cla: yes, framework, waiting for tree to go green)\n\n59015 fix overscroll position if there is sliver before center sliver in cu\u2026 (cla: yes, f: scrolling, framework, waiting for tree to go green)\n\n59018 Send text error in JSON and print in tools (cla: yes, framework, tool, waiting for tree to go green)\n\n59046 Cleanup devicelab framework duplicate (a: tests, cla: yes, engine, framework, team, tool)\n\n59096 Fix docs for Focus.onKey event propagation (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-123", "text": "59108 fix paint order of ink feature (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59111 Remove shape code from Date Picker dialog (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59115 Modernize selection menu appearance (cla: yes, f: cupertino, f: material design, framework, platform-android, waiting for tree to go green)\n\n59117 Make the InkResponse\u2019s focus highlight honor the radius parameter (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59120 Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-124", "text": "59128 Fix typo in scroll_aware_image_provider.dart (cla: yes, framework, waiting for tree to go green)\n\n59156 Add sample code to PositionedTransition (cla: yes, framework)\n\n59162 Rebuild SliverAppBar when forceElevated changes (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59186 Opt out nnbd in packages/flutter (a: accessibility, cla: yes, f: cupertino, f: material design, framework)\n\n59187 Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-125", "text": "59191 [Material] Redesign Time Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)\n\n59196 [Widgets] Add DefaultTextHeightBehavior inherited widget. (cla: yes, framework, waiting for tree to go green)\n\n59219 Typo fixing sweep through packages/flutter. (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n59221 Revert \u201cPrevent WhitelistingTextInputFormatter to return a empty string if the current value does not satisfy the formatter (#57264)\u201d (a: text input, cla: yes, framework, waiting for tree to go green)\n\n59251 [DefaultTabController] adds interactive example (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-126", "text": "59273 Add instructions for updating a localized string (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59279 First pass at keyboard navigation for the Material Date Picker (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59285 Remove Fuchsia BUILD.gn files (a: internationalization, a: tests, cla: yes, framework, team, tool, waiting for tree to go green)\n\n59290 Reverse the semantics order of modal barrier and modal scope (cla: yes, framework)\n\n59310 Dismiss modal routes with a keyboard shortcut (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59317 Implement Comparable (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-127", "text": "59342 Add support for horizontal and vertical double-arrow system cursors (cla: yes, framework, waiting for tree to go green)\n\n59347 Revert \u201c[Widgets] Add DefaultTextHeightBehavior inherited widget.\u201d (cla: yes, framework)\n\n59350 Re-land \u201c[Widgets] Add DefaultTextHeightBehavior inherited widget.\u201d (cla: yes, framework, waiting for tree to go green)\n\n59358 Implement delayed key event synthesis support for framework (a: tests, cla: yes, framework, waiting for tree to go green)\n\n59360 More useful error messages when you use Stack without a textDirection. (cla: yes, framework, waiting for tree to go green)\n\n59363 Add material state mouse cursor to TextField (a: text input, cla: yes, customer: octopod, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-128", "text": "59364 Reland non-breaking \u201cAdd clipBehavior to widgets with clipRect #55977\u201d (cla: yes, f: material design, framework, team)\n\n59379 Handle backspace edgecase in trailing whitespace formatter. (cla: yes, framework, waiting for tree to go green)\n\n59405 [AppBar] adds toolbarHeight property to customize AppBar height (cla: yes, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n59436 Removed an unused static local key from ScrollAction. (cla: yes, framework, waiting for tree to go green)\n\n59474 Add link to ListTile replacement guide in layout error message (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59478 InteractiveViewer mouse scale bug (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-129", "text": "59481 [MergeableMaterial] adds dividerColor property (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59484 Word substitutions (cla: yes, framework, team, tool, waiting for tree to go green)\n\n59500 Update recipes location. (cla: yes, framework, team)\n\n59503 Revert \u201cBuild routes even less\u201d (cla: yes, framework, waiting for tree to go green)\n\n59514 Replace collection\u2019s SetEquality with flutter\u2019s own (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n59521 Remove dependency on package:collection by moving mergeSort into foundation/collections.dart (cla: yes, framework)\n\n59561 Revert \u201cModernize selection menu appearance\u201d (a: internationalization, cla: yes, f: cupertino, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-130", "text": "59571 [flutter_tools] add toggle b and service extension to change platform brightness (cla: yes, framework, tool)\n\n59586 Keyboard navigation for the Material Date Picker grid (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59617 Reland modernize selection menu appearance (a: accessibility, a: internationalization, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n59620 Export characters (cla: yes, framework, waiting for tree to go green)\n\n59631 ReorderableListView should not reorder if there is only a single item present (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59641 [ExpansionPanelList] adds dividerColor property (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-131", "text": "59666 update _isolates_io.dart for better nnbd migration (cla: yes, framework)\n\n59677 Revert \u201cCharacters Package\u201d (cla: yes, f: material design, framework)\n\n59711 fix the widget span layout when text scale factor != 1 (cla: yes, framework, waiting for tree to go green)\n\n59778 Reland Characters Usage (cla: yes, f: material design, framework)\n\n59791 Fix doc for DecoratedBox (cla: yes, framework, waiting for tree to go green)\n\n59803 Add benchmark for Mouse region (web) (a: tests, cla: yes, framework, severe: performance, team, waiting for tree to go green)\n\n59807 Label unnecessarily ellided (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-132", "text": "59856 Make upscaling images opt-in (a: images, cla: yes, framework)\n\n59865 Fix the paste button label in the new version of the filtered text pasting test (cla: yes, f: material design, framework)\n\n59870 Revert \u201cDeprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter\u201d (a: tests, cla: yes, f: cupertino, f: material design, framework, team)\n\n59876 Re-land \u201cDeprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter\u201d (a: tests, cla: yes, f: cupertino, f: material design, framework, team)\n\n59877 Allow detection of images using more memory than necessary (a: debugging, a: error message, a: images, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-133", "text": "59883 Refactor mouse hit testing system: Direct mouse hit test (a: mouse, cla: yes, f: material design, framework, severe: performance, waiting for tree to go green)\n\n59888 Fix the layout calculation in sliver list where the scroll offset cor\u2026 (cla: yes, f: scrolling, framework, waiting for tree to go green)\n\n59900 Fix issue with stack traces getting mangled (a: tests, cla: yes, framework)\n\n59913 [EditableText] Inherit from DefaultTextHeightBehavior (cla: yes, framework)\n\n59937 Update tooltip_theme_test to unblock Dart SDK roll (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59961 Support GTK keycodes (cla: yes, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-134", "text": "59966 Added a filterQuality parameter to texture (a: quality, a: video, cla: yes, framework, waiting for tree to go green)\n\n59981 Revert \u201cImplement Comparable\" (cla: yes, f: material design, framework)\n\n59982 [flutter_driver] Fix tracing of startup events (a: tests, cla: yes, framework)\n\n59986 Revert \u201cfix the widget span layout when text scale factor != 1\u201d (cla: yes, framework)\n\n59992 Revert \u201c[PageTransitionsBuilder] Fix \u2018ZoomPageTransition\u2019 built more than once\u201d (cla: yes, f: material design, framework)\n\n60000 Revert \u201cFix outline button solid path when BorderSize.width is used\u201d (f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-135", "text": "60009 RTL caret position (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60021 reland \u201cfix the widget span layout when text scale factor != 1\u201d and h\u2026 (cla: yes, framework, waiting for tree to go green)\n\n60042 Fix newly added test to opt out of NNBD (cla: yes, f: material design, framework)\n\n60059 Expose the ElevationOverlay functions so applications can use the directly. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60096 Localized new strings added in the redesigned Material Time Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)\n\n60129 fix ink feature tries to get parent transformations when it is in the\u2026 (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-136", "text": "60136 Add more documentation on why tests might hang when using runAsync (a: tests, cla: yes, framework, waiting for tree to go green)\n\n60139 Fix a couple of doc typos. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60141 Tweaking Material Chip a11y semantics to match buttons (a: accessibility, cla: yes, customer: money (g3), f: material design, framework)\n\n60152 Remove unused physicalDepth code (a: tests, cla: yes, customer: fuchsia, framework, waiting for tree to go green)\n\n60219 Update inaccurate documentation for isUtf16Surrogate method (cla: yes, framework, waiting for tree to go green)\n\n60222 Doc Updates (cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-137", "text": "60245 [PageTransitionsBuilder] Reland Fix \u2018ZoomPageTransition\u2019 built more than once (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60248 Ensure FloatingActionButtonLocations are always within safe interactive areas (a: quality, cla: yes, customer: money (g3), f: material design, framework, waiting for tree to go green)\n\n60316 Don\u2019t access clipboard passively on iOS (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60320 Have AndroidViewController extend PlatformViewController and add support for hybrid platform views (cla: yes, framework, team, waiting for tree to go green)\n\n60329 [Semantics] Update bottom nav semantics tests to use matches semantics (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-138", "text": "60367 Do not return partial semantics from tester.getSemantics (a: tests, cla: yes, framework, waiting for tree to go green)\n\n60379 Do not call Picture.toImage on web during shader warm-up (cla: yes, framework, waiting for tree to go green)\n\n60383 [Material] Add property to theme dial label colors on Time Picker (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60394 Show hint when label is floating (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60396 Fixed a problem with date calculations that caused a test to fail in a non-US time zone. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60478 Fix remaining holes in stack trace demangling (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-139", "text": "60481 Adding ColorFiltered \u201cWidget of the week\u201d video to docs. (cla: yes, framework, waiting for tree to go green)\n\n60482 Fix docs for TabBar indicator (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)\n\n60497 Keyboard navigation fo the Material Date Range Picker (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60523 InteractiveViewer scroll direction (cla: yes, framework, waiting for tree to go green)\n\n60530 Revert \u201cfix paint order of ink feature (#59108)\u201d (cla: yes, f: material design, framework)\n\n60532 InteractiveViewer with a changing screen size (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-140", "text": "60536 Issues/58665 reland and prevent the material widget from absorbing gesture (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60545 Annotate RawMaterialButton as a Material > Button category. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60549 RangeSlider overlap properly (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60552 New license page with fix for zero licenses. (a: internationalization, f: material design, framework)\n\n60563 ListTile mouse pointer fix (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60586 Issues/58053 - Set default textBaseline to alphabetic in the Table widget (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-141", "text": "60611 1.17.5 CP: Fix daemon device discovery crash when Xcode isn\u2019t installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n60621 Add a flag to toggle navigator route update reporting (cla: yes, f: routes, framework, waiting for tree to go green)\n\n60645 Revert \u201cTweaking Material Chip a11y semantics to match buttons (#60141)\u201d (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60660 In layers_test create a canvas to start recording on the PictureRecorder (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-142", "text": "60684 Enable shouldCapTextScaleForTitle by default in AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60693 Typo sweep (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)\n\n60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60730 Remove superfluous GestureDetector. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60734 Add comment explain dispatchEvent override (a: tests, cla: yes, documentation, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-143", "text": "60764 Support customizing colors for rows in DataTable (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60832 Fix typo in popup_menu.dart (cla: yes, f: material design, framework)\n\n60836 Expose height and width factor in AnimatedAlign (a: animation, cla: yes, framework, waiting for tree to go green)\n\n60915 [AppBar] adds leadingWidth property to customize width of leading widget (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60916 Revert \u201cFix remaining holes in stack trace demangling\u201d (a: tests, cla: yes, framework)\n\n60925 fix semantics to only send relevant node update (a: accessibility, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-144", "text": "60929 Adding CupertinoApp Sample templates (cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)\n\n60930 Add embedderId to PointerEvent (cla: yes, framework)\n\n60934 Skip Audit - Scheduler and Services libraries (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n60936 Skip Audit - Widgets Library (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n60956 Assert valid composing TextRange (cla: yes, framework, waiting for tree to go green)\n\n60991 [Material] Misc fixes for time picker input mode (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-145", "text": "60996 Reland \u201cFix remaining holes in stack trace demangling\u201d\u201d (a: tests, cla: yes, framework)\n\n61000 Remove shouldCapTextScaleForTitle from AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green)\n\n61010 Revert \u201cAdd embedderId to PointerEvent (#60930)\u201d (cla: yes, engine, framework, team)\n\n61012 prevents sliver app bar from changing semantics tree when it is not n\u2026 (a: accessibility, f: material design, framework, waiting for tree to go green)\n\n61013 Re-land gesture detection for hybrid platform views (engine, framework, team)\n\n61019 InteractiveViewer pan axis locking (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-146", "text": "61033 Do not cache itemBuilder calls in a GridView (cla: yes, framework, waiting for tree to go green)\n\n61035 Fix bug where dispose message requires a map (cla: yes, framework)\n\n61102 Fix PointerAddedEvent handling in LiveTestWidgetsFlutterBinding (a: tests, cla: yes, framework)\n\n61109 Revert \u201cExpose height and width factor in AnimatedAlign \u201c (cla: yes, framework)\n\n61118 Fix #61102 line wrapping (a: tests, cla: yes, framework, waiting for tree to go green)\n\nteam - 283 pull request(s)\n\n42940 Revise Action API (cla: yes, f: cupertino, f: material design, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-147", "text": "52507 enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\n52791 Read custom app project name from gradle.properties (cla: yes, team, tool)\n\n53096 Devicelab tests (Chrome run, Web compile) for New Flutter Gallery (cla: yes, team, waiting for tree to go green)\n\n53358 Disable flutter_driver_screenshot_test_ios. (cla: yes, team, waiting for tree to go green)\n\n53374 [gen_l10n] Fallback feature for untranslated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-148", "text": "53381 Characters Package (a: text input, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)\n\n53422 Rename GPU thread to raster thread in API docs (a: tests, cla: yes, framework, team, tool, waiting for tree to go green)\n\n53600 Restructure the Windows app template (cla: yes, team, tool)\n\n53616 Improving A11y for Flutter Gallery Demos (a: accessibility, a: tests, cla: yes, f: material design, framework, team)\n\n53655 Pass showCheckboxColumn parameter to DataTable (a: quality, cla: yes, f: material design, framework, team)\n\n53809 [flutter_tools] update to package vm_service: electric boogaloo (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-149", "text": "53824 [gen_l10n] Add option for deferred loading on the web (a: internationalization, cla: yes, team, tool, waiting for tree to go green)\n\n53837 Skip Audits (2) (a: tests, cla: yes, f: cupertino, framework, platform-web, team, waiting for tree to go green)\n\n53868 [gen_l10n] Add scriptCode handling (a: internationalization, cla: yes, severe: new feature, team, tool)\n\n53879 Collect chrome://tracing data in Web benchmarks (cla: yes, team, work in progress; do not review)\n\n53880 Use no locale as synonym for nb (a: internationalization, cla: yes, customer: dream (g3), f: cupertino, f: material design, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-150", "text": "53888 Add visualDensity and focus support to ListTile (a: desktop, cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n53916 Slider rebase work (cla: yes, f: material design, framework, team)\n\n53951 Revert \u201c[flutter_tools] update to package vm_service: electric boogaloo\u201d (cla: yes, team, tool)\n\n53952 [web] Fix race condition in widget benchmarks (cla: yes, platform-web, team)\n\n53954 [gen_l10n] Fix plural parsing for translated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green)\n\n53957 [flutter_tools] Migrate to vm service 3 (reland): electric boogaloo (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-151", "text": "53963 revive the android_views test (cla: yes, team, waiting for tree to go green)\n\n53967 Temporarily mark web benchmarks as flaky (cla: yes, team)\n\n53969 Use \u201cmeasured_frame\u201d instead of \u201cCrRendererMain\u201d to detect process ID (cla: yes, team)\n\n53980 Test creation of Android AlertDialogs with a platform view context (cla: yes, team, waiting for tree to go green)\n\n54015 Update roll_dev to work with new version numbers (cla: yes, team)\n\n54023 disable MotionEvents test (cla: yes, team)\n\n54114 Revert \u201c[flutter_tools] Migrate to vm service 3 (reland): electric boogaloo\u201d (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-152", "text": "54122 disable the \u201cgpu\u201d tracing category (cla: yes, team)\n\n54125 remove flutter_test quiver dep, use fake_async and clock instead (a: tests, cla: yes, framework, team)\n\n54132 [flutter_tools] Migrate to package:vm_service 4: trigonometric boogaloo (cla: yes, team, tool)\n\n54144 drop image package dependency for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54150 Don\u2019t checkout master in roll_dev (cla: yes, team)\n\n54152 [flutter_tools] Remove fromPlatform from tests (cla: yes, team, tool, waiting for tree to go green)\n\n54155 [cleanup] Remove unused script (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-153", "text": "54163 Enable the android_views AlertDialog test (cla: yes, team)\n\n54176 Fix newly reported prefer_const_constructors lints. (a: internationalization, cla: yes, d: examples, team, tool)\n\n54181 Roll pinned xml and petitparser versions (cla: yes, team, waiting for tree to go green)\n\n54185 [gen_l10n] Handle single, double quotes, and dollar signs in strings (cla: yes, team, tool, waiting for tree to go green)\n\n54206 Updating codeowners for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54212 Reverse dependency between services and scheduler (a: tests, cla: yes, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-154", "text": "54214 re-enable android_view_test (cla: yes, team, waiting for tree to go green)\n\n54219 Remove escape dollar parameter in localizations_utils (a: internationalization, cla: yes, team, waiting for tree to go green)\n\n54227 [windows] Adds support for keyboard mapping. (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54236 Disable tracing for non-frame based Web benchmarks (cla: yes, team, waiting for tree to go green)\n\n54247 [versions] update versions (cla: yes, team)\n\n54312 fix and re-land \u201cre-enable android_view_test (#54214)\u201d (cla: yes, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-155", "text": "54317 PageStorage sample (cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green)\n\n54322 Skip Audit - Material Library (a: quality, a: tests, cla: yes, f: material design, framework, platform-web, team, waiting for tree to go green)\n\n54334 [versions] update all flutter versions (cla: yes, team, waiting for tree to go green)\n\n54387 Revert \u201cfix and re-land \u201cre-enable android_view_test (#54214)\u201d\u201d (cla: yes, team)\n\n54396 [web] Don\u2019t collect trace info in the color grid benchmark (cla: yes, platform-web, team)\n\n54401 Cleanup in gen_l10n files (a: internationalization, cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-156", "text": "54403 Reland re-enable android_view_test #54214 (cla: yes, team, waiting for tree to go green)\n\n54407 Don\u2019t import plugins that don\u2019t support android in settings.gradle (a: accessibility, cla: yes, d: examples, team, tool, waiting for tree to go green)\n\n54471 fix visual density prefer_const_constructors lint (cla: yes, team)\n\n54478 Fix environment leakage in doctor_test (cla: yes, team, team: flakes, team: infra, tool)\n\n54480 Revert \u201c[flutter_driver] Add SceneDisplayLag stats to timeline summar\u2026 (a: tests, cla: yes, framework, team)\n\n54490 [flutter_driver] Reland add SceneDisplayLag stats to timeline summary (a: tests, cla: yes, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-157", "text": "54494 Add A/B test mode to local devicelab runner (cla: yes, severe: performance, team, waiting for tree to go green)\n\n54497 [devicelab] Do not wait for connections after process has exited (cla: yes, team, waiting for tree to go green)\n\n54505 mark web benchmarks as not flaky (cla: yes, team)\n\n54522 Reland \u201cAdd API to services package that overrides HTTP ban (#54243)\u201d (cla: yes, framework, team, waiting for tree to go green)\n\n54617 [flutter_tools] initial support for enable experiment, run, apk, ios, macos (a: null-safety, cla: yes, team, tool)\n\n54618 Revert \u201c[devicelab] Do not wait for connections after process has exited\u201d (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-158", "text": "54676 print intermediate and raw A/B results when not silent (cla: yes, team)\n\n54678 Make Web shard count configurable via WEB_SHARD_COUNT (cla: yes, team, waiting for tree to go green)\n\n54691 Migrate Runner project base configuration (cla: yes, d: examples, t: xcode, team, tool)\n\n54697 fix APK location for devicelab (cla: yes, team)\n\n54703 fix run release test APK location (cla: yes, team)\n\n54783 [flutter_tools] Fix roll dev script, add tests (cla: yes, team, tool, waiting for tree to go green)\n\n54787 force upgraded package dependencies (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-159", "text": "54787 force upgraded package dependencies (cla: yes, team)\n\n54798 ToDo Audit - Cupertino+ Library (a: accessibility, cla: yes, d: examples, f: cupertino, framework, team, waiting for tree to go green)\n\n54883 Remove outliers in Web benchmarks to reduce noise; add visualization (cla: yes, team)\n\n54887 Specify the devicelab task simulator runtime to support ios_app_with_extensions (cla: yes, team)\n\n58499 [devicelab] mark ios transition_perf as non-flaky (cla: yes, team, waiting for tree to go green)\n\n58504 Revert \u201cRemove outdated disable_input_output_paths from example project Podfiles\u201d (cla: yes, d: examples, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-178", "text": "58513 benchmark updating many child layers (cla: yes, team)\n\n58522 Build iOS apps using Swift Packages (cla: yes, d: examples, team, tool, waiting for tree to go green)\n\n58524 Remove outdated disable_input_output_paths from example project Podfiles (cla: yes, d: examples, team, waiting for tree to go green)\n\n58538 Don\u2019t elapse real time during IOSDevice.startApp tests (cla: yes, team, tool, waiting for tree to go green)\n\n58541 Fake out DeviceManager.getDevices in test (cla: yes, team, tool, waiting for tree to go green)\n\n58544 Use fake command in analytics test (cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-179", "text": "58549 Revert \u201cBuild iOS apps using Swift Packages\u201d (cla: yes, d: examples, team, tool)\n\n58607 Revert \u201c[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58617 Remove already covered devicelab test: tiles_scroll_perf_iphonexs__timeline_summary (cla: yes, team)\n\n58620 Make debugSemantics available to profile mode (a: accessibility, a: tests, cla: yes, framework, team)\n\n58622 Don\u2019t elapse real time during IOSDevice.startApp tests (cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-180", "text": "58635 Remove DiagnosticableMixin in favor of Diagnosticable (cla: yes, framework, team, waiting for tree to go green)\n\n58644 Add FakeAsync to delay tests (cla: yes, team, tool)\n\n58645 Move create project build tests to permeable command shard (cla: yes, team, tool)\n\n58646 Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58648 Add iOS new gallery perf test (cla: yes, severe: performance, team, waiting for tree to go green)\n\n58649 Add per-test timeout to Cirrus tool general tests (cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-181", "text": "58656 Add the ability to ignore lines depending on comments (cla: yes, team, tool)\n\n58701 Increase delay to verify cause of flakiness (cla: yes, team, waiting for tree to go green)\n\n58747 Add Android device build/OS/API Level information to logs. (cla: yes, team)\n\n58783 fix typo in macrobenchmarks/lib/main (cla: yes, team)\n\n58799 Revert \u201cIncrease delay to verify cause of flakiness\u201d (cla: yes, team, waiting for tree to go green)\n\n58838 Turn off flaky indicator for flutter_gallery__back_button_memory and flutter_gallery__memory_nav (cla: yes, team)\n\n58986 Line break for devicelab/bin/run.dart help info (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-182", "text": "59009 Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green)\n\n59013 Make non-flaky tests as such (cla: yes, team, waiting for tree to go green)\n\n59025 Revert \u201cBuild iOS apps using Swift Packages\u201d (cla: yes, d: examples, team, tool)\n\n59044 Move iOS Podfile logic into tool (cla: yes, platform-ios, team, tool, waiting for tree to go green)\n\n59046 Cleanup devicelab framework duplicate (a: tests, cla: yes, engine, framework, team, tool)\n\n59120 Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-183", "text": "59184 [flutter_tools] remove globals from compilers (cla: yes, team, tool)\n\n59209 Support .flutter-plugins-dependencies (cla: yes, platform-ios, team, tool, waiting for tree to go green)\n\n59215 [flutter_tools] Update roll_dev.dart (cla: yes, team, tool, waiting for tree to go green)\n\n59257 fix tree (cla: yes, team)\n\n59267 Characters package (cla: yes, team, waiting for tree to go green)\n\n59276 Add \u2013device-id option for devicelab/bin/run.dart (cla: yes, team)\n\n59280 test flutter framework with null-safety (cla: yes, d: examples, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-184", "text": "59283 [versions] Update all the versions (cla: yes, team, tool)\n\n59285 Remove Fuchsia BUILD.gn files (a: internationalization, a: tests, cla: yes, framework, team, tool, waiting for tree to go green)\n\n59291 [flutter_tools] ensure generated entrypoint matches test and web entrypoint language version (cla: yes, team, tool)\n\n59364 Reland non-breaking \u201cAdd clipBehavior to widgets with clipRect #55977\u201d (cla: yes, f: material design, framework, team)\n\n59365 Remove flutter_goldens_client package dependency from tool (cla: yes, team, tool, waiting for tree to go green)\n\n59484 Word substitutions (cla: yes, framework, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-185", "text": "59500 Update recipes location. (cla: yes, framework, team)\n\n59508 Remove last references to ideviceinstaller (cla: yes, platform-ios, team, tool, waiting for tree to go green)\n\n59539 [flutter_tools] For l10n with deferred loading, use loadLibrary for non-web too (cla: yes, team, tool)\n\n59617 Reland modernize selection menu appearance (a: accessibility, a: internationalization, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n59784 [devicelab] fix concurrent hot reload test: stderr != failure (cla: yes, team)\n\n59803 Add benchmark for Mouse region (web) (a: tests, cla: yes, framework, severe: performance, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-186", "text": "59832 [versions] update all versions (cla: yes, team, tool, waiting for tree to go green)\n\n59867 Replace ANDROID_HOME user messages with ANDROID_SDK_ROOT (cla: yes, platform-android, team, tool, waiting for tree to go green)\n\n59870 Revert \u201cDeprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter\u201d (a: tests, cla: yes, f: cupertino, f: material design, framework, team)\n\n59876 Re-land \u201cDeprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter\u201d (a: tests, cla: yes, f: cupertino, f: material design, framework, team)\n\n59896 gitignore .last_build_id file in the repo (cla: yes, d: examples, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-187", "text": "59907 port devicelab from idevice_id -> xcdevices (cla: yes, team, tool)\n\n59932 Add SkSL shader warm-up tests to Flutter gallery (cla: yes, perf: speed, severe: performance, team, waiting for tree to go green)\n\n59961 Support GTK keycodes (cla: yes, framework, team)\n\n60015 Fix the paths in keyboard map templates (cla: yes, team)\n\n60041 Use assemble build system directly for build ios-framework (cla: yes, team, tool)\n\n60045 Check for Xcode 11 and Xcode 12 directory names in build_ios_framework_module_test (a: tests, cla: yes, platform-ios, team)\n\n60127 [versions] update all versions and fix tool tests (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-188", "text": "60185 [gen_l10n] Update the arb filename parsing logic (a: internationalization, cla: yes, team, tool)\n\n60228 Make module run script names unique (a: existing-apps, cla: yes, platform-ios, team, tool)\n\n60320 Have AndroidViewController extend PlatformViewController and add support for hybrid platform views (cla: yes, framework, team, waiting for tree to go green)\n\n60336 Heavy Widget construction and destruction performance test (a: tests, cla: yes, team)\n\n60407 benchmarks/macrobenchmarks platforme file update (cla: yes, team)\n\n60412 Simplify the animation control for macrobenchmarks test case (cla: yes, team)\n\n60415 restore imagefiltered_transform_animation_perf__timeline_summary benchmark (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-189", "text": "60490 Experiment with tester on the flutter_tools general shard (cla: yes, team)\n\n60504 Update new gallery HEAD commit (cla: yes, team)\n\n60507 Fix commit hash gallery (cla: yes, team)\n\n60553 Mark non-flaky test as such (cla: yes, team, waiting for tree to go green)\n\n60554 Web macrobenchmark: bench_mouse_region_grid_hover now tests hitTestDuration (cla: yes, team, waiting for tree to go green)\n\n60611 1.17.5 CP: Fix daemon device discovery crash when Xcode isn\u2019t installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-190", "text": "60638 fix pubspec dependencies (cla: yes, team)\n\n60652 Upgrade packages (team)\n\n60668 Roll tester version (cla: yes, team)\n\n60693 Typo sweep (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)\n\n60723 add a timeout to dashing (cla: yes, team)\n\n60774 await TimelineSummary.write***ToFile (a: tests, cla: yes, team)\n\n60929 Adding CupertinoApp Sample templates (cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-191", "text": "60934 Skip Audit - Scheduler and Services libraries (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n60936 Skip Audit - Widgets Library (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n61010 Revert \u201cAdd embedderId to PointerEvent (#60930)\u201d (cla: yes, engine, framework, team)\n\n61013 Re-land gesture detection for hybrid platform views (engine, framework, team)\n\n61025 benchmark memory usage for grid view of memory intensive widgets (cla: yes, perf: memory, team, waiting for tree to go green)\n\n61034 Roll packages (cla: yes, team, tool)\n\n61062 Mark new test as not flaky (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-192", "text": "61064 Handle git dependencies, roll packages to get transitive deps of flutter_gallery (cla: yes, team, tool, waiting for tree to go green)\n\n61128 Update tester to latest version (team)\n\nf: material design - 204 pull request(s)\n\n42940 Revise Action API (cla: yes, f: cupertino, f: material design, framework, team)\n\n50412 Make CircularProgressIndicator\u2019s animation match native (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n50673 Update AppBar MediaQuery documentation (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-193", "text": "50915 Implement barrierDismissible for showCupertinoDialog (a: internationalization, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n51465 Support New and Custom FAB Locations (cla: yes, f: material design, framework, waiting for tree to go green)\n\n51581 Fix outline button solid path when BorderSize.width is used (cla: yes, f: material design, framework, platform-web, waiting for tree to go green)\n\n52126 Autofill Part 1 (cla: yes, customer: peppermint, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-194", "text": "52507 enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\n53381 Characters Package (a: text input, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)\n\n53616 Improving A11y for Flutter Gallery Demos (a: accessibility, a: tests, cla: yes, f: material design, framework, team)\n\n53655 Pass showCheckboxColumn parameter to DataTable (a: quality, cla: yes, f: material design, framework, team)\n\n53880 Use no locale as synonym for nb (a: internationalization, cla: yes, customer: dream (g3), f: cupertino, f: material design, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-195", "text": "53888 Add visualDensity and focus support to ListTile (a: desktop, cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n53916 Slider rebase work (cla: yes, f: material design, framework, team)\n\n53945 [Material] Add focus, highlight, and keyboard shortcuts to Slider (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54110 Added \u2018barrierColor\u2019 and \u2018useSafeArea\u2019 parameters to the showDialog function. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54119 Reland \u201ciOS UITextInput autocorrection prompt (#45354)\u201d (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-196", "text": "54128 fixes isAlwaysShown material scrollbar.dart (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54140 iOS Text Selection Menu Overflow (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-ios)\n\n54171 System mouse cursors (a: tests, cla: yes, f: material design, framework)\n\n54322 Skip Audit - Material Library (a: quality, a: tests, cla: yes, f: material design, framework, platform-web, team, waiting for tree to go green)\n\n54394 replace simple empty Container with w & h with SizedBox (a: accessibility, cla: yes, f: cupertino, f: material design, framework)\n\n54481 Make TextFormFieldState.didChange change text fields value (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-197", "text": "54640 Allow WIllPopCallback to return null or false to veto the pop. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54674 Add searchFieldStyle (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54706 Wire in focusNode, focusColor, autofocus, and dropdownColor to DropdownButtonFormField (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54714 [Material] Added BottomNavigationBarTheme (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54902 Paste shows only when content on clipboard (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-198", "text": "54919 Add MediaQueryData.navigationMode and allow controls to be focused when disabled. (cla: yes, customer: fun (g3), f: material design, framework)\n\n54978 Expose current day as a parameter to showDatePicker. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54985 Step 2: SnackBarBehavior.floating offset fix by default (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55064 Step 3: Removes temporary flag for SnackBarBehavior.floating offset fix (cla: yes, f: material design, framework)\n\n55201 Migrating old Gallery to new Slider (cla: yes, f: material design, team)\n\n55221 [ExpansionTile] adds padding property (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-199", "text": "55260 Fine tune the Y offset of OutlineInputBorder\u2019s floating label (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55408 Fix InputDecorator intrinsic height reporting (a: text input, cla: yes, f: material design, f: scrolling, framework, severe: regression, waiting for tree to go green)\n\n55415 Customizable obscuringCharacter (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n55416 Fix link to material spec (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55482 Enable configuring minHeight for LinearProgressIndicator and update default to match spec (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-200", "text": "55484 Revert \u201cFix FlutterError.onError in debug mode (#53843)\u201d (a: tests, cla: yes, f: material design, framework)\n\n55599 Default to use V2 Slider (cla: yes, f: material design, framework)\n\n55636 Prevent use of TextInputType.text when also using TextInputAction.newLine via assert (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n55651 Fix behavior change due to incorrect initial floating setting (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55761 Add a property to Material icon button to customize the splash radius (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-201", "text": "55775 TextField enabled fix (a: text input, cla: yes, f: material design, framework, waiting for tree to go green)\n\n55782 Removing Deprecated flag for Gallery (cla: yes, f: material design, team, waiting for tree to go green)\n\n55789 ToDo Audit - Material Library+ (cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n55829 allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n55832 Prevent ModalBottomSheet from rebuilding its child (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-202", "text": "55857 Removed useV2 Slider flag (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55902 Fix default opacity assignments for unselected and selected icons in NavigationRail (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55911 Text field height fix (a: text input, cla: yes, f: inspector, f: material design, framework, waiting for tree to go green)\n\n55939 Implementation of the Material Date Range Picker. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55977 Add clipBehavior to widgets with clipRect (cla: yes, f: material design, framework, severe: API break, team, will affect goldens)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-203", "text": "56084 Step 1 of 3: Add opt-in fixing Dialog border radius to match Material Spec (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n56090 Step 1 of 3: Add opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green)\n\n56091 Ensure *_kn.arb files are properly escaped with gen_localizations (a: internationalization, cla: yes, f: cupertino, f: material design, framework)\n\n56190 [ExpansionTile] Wire through expandedCrossAxisAlignment, and expandedAlignment properties to the expanded tile (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-204", "text": "56409 InteractiveViewer Widget (cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n56494 Wire up autofocus for OutlineButton (cla: yes, f: material design, framework)\n\n56611 Nested InkWells only show the innermost splash (cla: yes, f: material design, framework, waiting for tree to go green)\n\n56614 Revert \u201cPaste shows only when content on clipboard (#54902)\u201d (cla: yes, f: cupertino, f: material design, framework)\n\n56641 Add 2 new keyboard types and infer keyboardType from autofill hints (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-205", "text": "56645 Localized new strings added in the redesigned Material Date Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)\n\n56689 Bring back paste button hide behavior (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56794 [web & desktop] Hide all characters in a TextField, when obscureText is true on web & desktop (cla: yes, f: material design, framework, platform-mac, platform-web, waiting for tree to go green)\n\n56806 Revert \u201cBring back paste button hide behavior\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56895 [Material] Use titleTextStyle from dialog theme for SimpleDialog (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-206", "text": "56922 Bring back paste button hide behavior 2 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56951 Revert \u201cBring back paste button hide behavior 2\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56956 ThemeData.brightness == ThemeData.colorScheme.brightness (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57033 Allow updating textAlignVertical (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57037 Making DropdownButtonFormField to re-render if parent widget changes (cla: yes, f: material design, found in release: 1.17, found in release: 1.18, framework, severe: regression, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-207", "text": "57047 Added Dartpad and Image examples to Slider and RangeSlider docs (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57053 Updated gen_missing_localizations to copy the english strings instead of using \u2018TBD\u2019. (cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n57139 Bring back paste button hide behavior 3 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n57172 Add option for ExpansionTile to maintain the state of its children when collapsed (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57189 Honor the InputDecoratorTheme in the text input fields used by the Date Pickers (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-208", "text": "57195 Fix NavigationRail class docs (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)\n\n57244 Make Tooltip recover gracefully when context is destroyed. (cla: yes, f: material design, framework)\n\n57261 Make _RenderButtonBarRow.constraints null aware (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57286 Revert \u201c Bring back paste button hide behavior 3\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, platform-web, team, waiting for tree to go green)\n\n57291 [ExpansionTile] adds childrenPadding property (cla: yes, f: material design, framework)\n\n57299 add @factory to create* methods (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-209", "text": "57324 Fix Web asking for clipboard permissions (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57327 Value Indicator uses Global position (cla: yes, f: material design, framework)\n\n57332 Add autofill support for TextFormField (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57500 SnackBarAction.createState() should have return type State (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57511 Step 2 of 3: Change opt-in default for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-210", "text": "57521 Move paragraph on using Navigation Rail for wide viewports only closer to the top of the API docs. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57526 Update the requirements for applying the elevation overlay. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57535 Slider value indicator gets disposed if it is activated (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57574 Have _warpToCurrentIndex() shortcut logic behave properly (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57576 Add Web Benchmarks for Flutter Gallery (Flutter Side) \u2014 1/4 (cla: yes, f: cupertino, f: material design, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-211", "text": "57588 New license page. (a: internationalization, cla: yes, f: material design, framework)\n\n57628 Add mouse cursor API to widgets (phase 1) (cla: yes, f: material design, framework)\n\n57644 Adds physics to the TabBar (#57416) (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57733 #57730 - Support custom shapes for ListTiles (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57736 [AppBarTheme] adds centerTitle property (cla: yes, f: material design, framework, severe: new feature, waiting for tree to go green)\n\n57745 Chips text scaling (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-212", "text": "57751 Step 2 of 3: Change opt-in default for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n57809 Stopped all animation controllers after toggleable has been detached. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57868 [CheckboxListTile] exposes contentPadding property of ListTile. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58016 Consistent American spelling of \u2018behavior\u2019 (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58024 fix cupertino page route dismisses hero transition when swipe to the \u2026 (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-213", "text": "58037 [SwitchListTile] adds controlAffinity property (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58050 Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review)\n\n58094 Set upper limit on text scaling for AppBar.title (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58117 Minor correction to documentation for buttonColor (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)\n\n58154 Allow null value for CheckboxListTile (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-214", "text": "58209 Pass MaterialButton.disabledElevation into RawMaterialButton (cla: yes, f: material design, framework)\n\n58258 Helpful assertion for isAlwaysShown error (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n58344 Revert \u201cAdd clipBehavior to widgets with clipRect\u201d (cla: yes, f: material design, framework, team)\n\n58448 InkWell uses MaterialStateMouseCursor and defaults to clickable (cla: yes, f: material design, framework)\n\n58530 [Line Heights] Add textHeightBehavior to SelectableText. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58535 Make _RenderSlider not be a semantics container (a: accessibility, cla: yes, f: focus, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-215", "text": "58593 Add collapsed height param to SliverAppBar (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58607 Revert \u201c[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58630 Updated Slider test (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58646 Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58650 Added MaterialStateProperty overlayColor to InkWell (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-216", "text": "58686 [PageTransitionsBuilder] Fix \u2018ZoomPageTransition\u2019 built more than once (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58708 Add shadowColor to AppBar and AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58715 Fix custom physics application in TabBarView (a: quality, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)\n\n58780 fix typo in bottom navigation bar docs (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58808 Introduce inherited navigator observer and refactor hero controller (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-217", "text": "58829 Step 3 of 3: Remove opt-in for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n58831 Step 3 of 3: Remove opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green)\n\n58843 Restore some typography tests (cla: yes, f: material design, framework)\n\n59008 Update TextTheme.button.letterSpacing from 0.75 to 1.25 per spec (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59010 Scale input decorator label width (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-218", "text": "59108 fix paint order of ink feature (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59111 Remove shape code from Date Picker dialog (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59115 Modernize selection menu appearance (cla: yes, f: cupertino, f: material design, framework, platform-android, waiting for tree to go green)\n\n59117 Make the InkResponse\u2019s focus highlight honor the radius parameter (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59120 Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-219", "text": "59160 Remove unused import which shares prefix name with a used import. (a: internationalization, cla: yes, f: cupertino, f: material design)\n\n59162 Rebuild SliverAppBar when forceElevated changes (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59186 Opt out nnbd in packages/flutter (a: accessibility, cla: yes, f: cupertino, f: material design, framework)\n\n59187 Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)\n\n59191 [Material] Redesign Time Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-220", "text": "59219 Typo fixing sweep through packages/flutter. (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n59251 [DefaultTabController] adds interactive example (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59273 Add instructions for updating a localized string (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59279 First pass at keyboard navigation for the Material Date Picker (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59310 Dismiss modal routes with a keyboard shortcut (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59317 Implement Comparable (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-221", "text": "59363 Add material state mouse cursor to TextField (a: text input, cla: yes, customer: octopod, f: material design, framework, waiting for tree to go green)\n\n59364 Reland non-breaking \u201cAdd clipBehavior to widgets with clipRect #55977\u201d (cla: yes, f: material design, framework, team)\n\n59405 [AppBar] adds toolbarHeight property to customize AppBar height (cla: yes, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n59474 Add link to ListTile replacement guide in layout error message (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59481 [MergeableMaterial] adds dividerColor property (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-222", "text": "59561 Revert \u201cModernize selection menu appearance\u201d (a: internationalization, cla: yes, f: cupertino, f: material design, framework)\n\n59586 Keyboard navigation for the Material Date Picker grid (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59617 Reland modernize selection menu appearance (a: accessibility, a: internationalization, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n59631 ReorderableListView should not reorder if there is only a single item present (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59641 [ExpansionPanelList] adds dividerColor property (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-223", "text": "59677 Revert \u201cCharacters Package\u201d (cla: yes, f: material design, framework)\n\n59778 Reland Characters Usage (cla: yes, f: material design, framework)\n\n59807 Label unnecessarily ellided (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59865 Fix the paste button label in the new version of the filtered text pasting test (cla: yes, f: material design, framework)\n\n59870 Revert \u201cDeprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter\u201d (a: tests, cla: yes, f: cupertino, f: material design, framework, team)\n\n59876 Re-land \u201cDeprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter\u201d (a: tests, cla: yes, f: cupertino, f: material design, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-224", "text": "59883 Refactor mouse hit testing system: Direct mouse hit test (a: mouse, cla: yes, f: material design, framework, severe: performance, waiting for tree to go green)\n\n59937 Update tooltip_theme_test to unblock Dart SDK roll (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59981 Revert \u201cImplement Comparable\" (cla: yes, f: material design, framework)\n\n59992 Revert \u201c[PageTransitionsBuilder] Fix \u2018ZoomPageTransition\u2019 built more than once\u201d (cla: yes, f: material design, framework)\n\n60000 Revert \u201cFix outline button solid path when BorderSize.width is used\u201d (f: material design, framework)\n\n60009 RTL caret position (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-225", "text": "60042 Fix newly added test to opt out of NNBD (cla: yes, f: material design, framework)\n\n60059 Expose the ElevationOverlay functions so applications can use the directly. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60096 Localized new strings added in the redesigned Material Time Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)\n\n60129 fix ink feature tries to get parent transformations when it is in the\u2026 (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60139 Fix a couple of doc typos. (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-226", "text": "60141 Tweaking Material Chip a11y semantics to match buttons (a: accessibility, cla: yes, customer: money (g3), f: material design, framework)\n\n60245 [PageTransitionsBuilder] Reland Fix \u2018ZoomPageTransition\u2019 built more than once (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60248 Ensure FloatingActionButtonLocations are always within safe interactive areas (a: quality, cla: yes, customer: money (g3), f: material design, framework, waiting for tree to go green)\n\n60316 Don\u2019t access clipboard passively on iOS (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60329 [Semantics] Update bottom nav semantics tests to use matches semantics (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-227", "text": "60383 [Material] Add property to theme dial label colors on Time Picker (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60394 Show hint when label is floating (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60396 Fixed a problem with date calculations that caused a test to fail in a non-US time zone. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60405 Date picker string translations (a: internationalization, cla: yes, f: cupertino, f: material design, waiting for tree to go green)\n\n60482 Fix docs for TabBar indicator (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-228", "text": "60497 Keyboard navigation fo the Material Date Range Picker (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60530 Revert \u201cfix paint order of ink feature (#59108)\u201d (cla: yes, f: material design, framework)\n\n60536 Issues/58665 reland and prevent the material widget from absorbing gesture (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60545 Annotate RawMaterialButton as a Material > Button category. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60549 RangeSlider overlap properly (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60552 New license page with fix for zero licenses. (a: internationalization, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-229", "text": "60563 ListTile mouse pointer fix (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60600 Fix and address Inconsistencies with Pashto support (a: internationalization, cla: yes, f: material design)\n\n60611 1.17.5 CP: Fix daemon device discovery crash when Xcode isn\u2019t installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n60645 Revert \u201cTweaking Material Chip a11y semantics to match buttons (#60141)\u201d (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60684 Enable shouldCapTextScaleForTitle by default in AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-230", "text": "60693 Typo sweep (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)\n\n60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60730 Remove superfluous GestureDetector. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60764 Support customizing colors for rows in DataTable (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60832 Fix typo in popup_menu.dart (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-231", "text": "60915 [AppBar] adds leadingWidth property to customize width of leading widget (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60991 [Material] Misc fixes for time picker input mode (cla: yes, f: material design, framework, waiting for tree to go green)\n\n61000 Remove shouldCapTextScaleForTitle from AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green)\n\n61012 prevents sliver app bar from changing semantics tree when it is not n\u2026 (a: accessibility, f: material design, framework, waiting for tree to go green)\n\na: tests - 67 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-232", "text": "a: tests - 67 pull request(s)\n\n52507 enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\n53422 Rename GPU thread to raster thread in API docs (a: tests, cla: yes, framework, team, tool, waiting for tree to go green)\n\n53616 Improving A11y for Flutter Gallery Demos (a: accessibility, a: tests, cla: yes, f: material design, framework, team)\n\n53837 Skip Audits (2) (a: tests, cla: yes, f: cupertino, framework, platform-web, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-233", "text": "54125 remove flutter_test quiver dep, use fake_async and clock instead (a: tests, cla: yes, framework, team)\n\n54144 drop image package dependency for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54171 System mouse cursors (a: tests, cla: yes, f: material design, framework)\n\n54206 Updating codeowners for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54212 Reverse dependency between services and scheduler (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54218 [flutter_driver] Add SceneDisplayLag stats to timeline summary (a: tests, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-234", "text": "54220 [benchmarks] Handle multiple begin/end trace events (a: tests, cla: yes, framework)\n\n54227 [windows] Adds support for keyboard mapping. (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54322 Skip Audit - Material Library (a: quality, a: tests, cla: yes, f: material design, framework, platform-web, team, waiting for tree to go green)\n\n54480 Revert \u201c[flutter_driver] Add SceneDisplayLag stats to timeline summar\u2026 (a: tests, cla: yes, framework, team)\n\n54490 [flutter_driver] Reland add SceneDisplayLag stats to timeline summary (a: tests, cla: yes, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-235", "text": "54698 Allow headers to be passed to the WebSocket connection for VMServiceFlutterDriver (a: tests, cla: yes, framework, waiting for tree to go green)\n\n54741 [flutter_driver] Fix browser check (a: tests, cla: yes, framework, waiting for tree to go green)\n\n54991 Mark ios_app_with_watch_companion as not flaky (a: tests, cla: yes, team)\n\n55001 FlutterErrorDetails.context docs fix (a: error message, a: tests, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)\n\n55141 Support tags in testWidgets (a: tests, cla: yes, framework, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-236", "text": "55484 Revert \u201cFix FlutterError.onError in debug mode (#53843)\u201d (a: tests, cla: yes, f: material design, framework)\n\n55494 Add onSecondaryTap to gesture recognizer and gesture detector. (a: tests, cla: yes, framework, waiting for tree to go green)\n\n55527 Animation sheet recorder (a: tests, cla: yes, framework, waiting for tree to go green, will affect goldens)\n\n55763 [timeline] Sort timeline events before summarizing (a: tests, cla: yes, framework)\n\n55769 Revert \u201c[timeline] Sort timeline events before summarizing (#55763)\u201d (a: tests, cla: yes, framework)\n\n55771 [timeline] Sort timeline events before summarizing (a: tests, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-237", "text": "55793 Skip Audit - Painting Library (a: images, a: tests, a: typography, cla: yes, framework, platform-web, team, will affect goldens)\n\n55936 Fixed #55858 (a: tests, cla: yes, framework)\n\n56428 Eagerly wait for the driver extension on FlutterDriver.connect() (a: tests, cla: yes, framework, waiting for tree to go green)\n\n56430 Allow waitUntilFirstFrameRasterized without a root widget (a: tests, cla: yes, framework, waiting for tree to go green)\n\n57240 [web] Update test skip description. (a: tests, cla: yes, framework, platform-web)\n\n57270 add missing deps to flutter_test BUILD.gn (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-238", "text": "57287 remove pending timers list code out of assert message (a: tests, cla: yes, framework)\n\n57696 Functionality to check handlers set on platform channels (a: tests, cla: yes, framework, waiting for tree to go green)\n\n58210 [e2e] make test bindings friendlier to integration tests (a: tests, cla: yes, framework)\n\n58430 [flutter_driver] make timeline request in chunks (a: tests, cla: yes, framework, perf: memory)\n\n58514 add rasterizer start times to timeline summaries (a: tests, cla: yes, framework, waiting for tree to go green)\n\n58620 Make debugSemantics available to profile mode (a: accessibility, a: tests, cla: yes, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-239", "text": "58655 debug mode warning text alignment (a: tests, cla: yes, framework, waiting for tree to go green)\n\n58723 Drop an unnecessary factory constructor (a: tests, cla: yes, framework, waiting for tree to go green)\n\n58771 [Flutter Driver] Update the comments regarding the default timeout of WaitFor and WaitForAbsent commands (a: tests, cla: yes, framework, waiting for tree to go green)\n\n58820 Timeline summary contains CPU, GPU and Memory usage (a: tests, cla: yes, framework, severe: performance, waiting for tree to go green)\n\n58823 Add comments to flutter_driver for timeline class (a: tests, cla: yes, framework)\n\n59046 Cleanup devicelab framework duplicate (a: tests, cla: yes, engine, framework, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-240", "text": "59120 Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n59285 Remove Fuchsia BUILD.gn files (a: internationalization, a: tests, cla: yes, framework, team, tool, waiting for tree to go green)\n\n59358 Implement delayed key event synthesis support for framework (a: tests, cla: yes, framework, waiting for tree to go green)\n\n59803 Add benchmark for Mouse region (web) (a: tests, cla: yes, framework, severe: performance, team, waiting for tree to go green)\n\n59870 Revert \u201cDeprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter\u201d (a: tests, cla: yes, f: cupertino, f: material design, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-241", "text": "59876 Re-land \u201cDeprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter\u201d (a: tests, cla: yes, f: cupertino, f: material design, framework, team)\n\n59900 Fix issue with stack traces getting mangled (a: tests, cla: yes, framework)\n\n59982 [flutter_driver] Fix tracing of startup events (a: tests, cla: yes, framework)\n\n60045 Check for Xcode 11 and Xcode 12 directory names in build_ios_framework_module_test (a: tests, cla: yes, platform-ios, team)\n\n60136 Add more documentation on why tests might hang when using runAsync (a: tests, cla: yes, framework, waiting for tree to go green)\n\n60152 Remove unused physicalDepth code (a: tests, cla: yes, customer: fuchsia, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-242", "text": "60336 Heavy Widget construction and destruction performance test (a: tests, cla: yes, team)\n\n60367 Do not return partial semantics from tester.getSemantics (a: tests, cla: yes, framework, waiting for tree to go green)\n\n60478 Fix remaining holes in stack trace demangling (a: tests, cla: yes, framework)\n\n60693 Typo sweep (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)\n\n60734 Add comment explain dispatchEvent override (a: tests, cla: yes, documentation, framework)\n\n60774 await TimelineSummary.write***ToFile (a: tests, cla: yes, team)\n\n60916 Revert \u201cFix remaining holes in stack trace demangling\u201d (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-243", "text": "60934 Skip Audit - Scheduler and Services libraries (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n60936 Skip Audit - Widgets Library (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n60996 Reland \u201cFix remaining holes in stack trace demangling\u201d\u201d (a: tests, cla: yes, framework)\n\n61102 Fix PointerAddedEvent handling in LiveTestWidgetsFlutterBinding (a: tests, cla: yes, framework)\n\n61118 Fix #61102 line wrapping (a: tests, cla: yes, framework, waiting for tree to go green)\n\nf: cupertino - 53 pull request(s)\n\n42940 Revise Action API (cla: yes, f: cupertino, f: material design, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-244", "text": "50915 Implement barrierDismissible for showCupertinoDialog (a: internationalization, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n52126 Autofill Part 1 (cla: yes, customer: peppermint, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n52507 enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\n52995 Fix typo of showCupertinoModalPopup documentation comment (cla: yes, f: cupertino, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-245", "text": "53837 Skip Audits (2) (a: tests, cla: yes, f: cupertino, framework, platform-web, team, waiting for tree to go green)\n\n53880 Use no locale as synonym for nb (a: internationalization, cla: yes, customer: dream (g3), f: cupertino, f: material design, team, waiting for tree to go green)\n\n54119 Reland \u201ciOS UITextInput autocorrection prompt (#45354)\u201d (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n54140 iOS Text Selection Menu Overflow (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-ios)\n\n54394 replace simple empty Container with w & h with SizedBox (a: accessibility, cla: yes, f: cupertino, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-246", "text": "54798 ToDo Audit - Cupertino+ Library (a: accessibility, cla: yes, d: examples, f: cupertino, framework, team, waiting for tree to go green)\n\n54902 Paste shows only when content on clipboard (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n55336 Adding tabSemanticsLabel to CupertinoLocalizations (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green)\n\n55415 Customizable obscuringCharacter (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-247", "text": "55636 Prevent use of TextInputType.text when also using TextInputAction.newLine via assert (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n56091 Ensure *_kn.arb files are properly escaped with gen_localizations (a: internationalization, cla: yes, f: cupertino, f: material design, framework)\n\n56582 Update Tab semantics in Cupertino to be the same as Material (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green)\n\n56614 Revert \u201cPaste shows only when content on clipboard (#54902)\u201d (cla: yes, f: cupertino, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-248", "text": "56641 Add 2 new keyboard types and infer keyboardType from autofill hints (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n56689 Bring back paste button hide behavior (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56806 Revert \u201cBring back paste button hide behavior\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56922 Bring back paste button hide behavior 2 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56951 Revert \u201cBring back paste button hide behavior 2\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-249", "text": "57139 Bring back paste button hide behavior 3 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n57286 Revert \u201c Bring back paste button hide behavior 3\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, platform-web, team, waiting for tree to go green)\n\n57461 Fix segment hit test behavior for segmented control (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n57487 Fix typo in cupertino datepicker error (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n57519 Report the accurate local position in (sliding)segmented control hit testing (cla: yes, f: cupertino, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-250", "text": "57534 Improve CupertinoDatePicker docs (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n57576 Add Web Benchmarks for Flutter Gallery (Flutter Side) \u2014 1/4 (cla: yes, f: cupertino, f: material design, team, waiting for tree to go green)\n\n58024 fix cupertino page route dismisses hero transition when swipe to the \u2026 (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n58050 Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-251", "text": "58258 Helpful assertion for isAlwaysShown error (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n58392 iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break)\n\n58607 Revert \u201c[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58646 Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-252", "text": "58808 Introduce inherited navigator observer and refactor hero controller (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n59115 Modernize selection menu appearance (cla: yes, f: cupertino, f: material design, framework, platform-android, waiting for tree to go green)\n\n59120 Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n59160 Remove unused import which shares prefix name with a used import. (a: internationalization, cla: yes, f: cupertino, f: material design)\n\n59186 Opt out nnbd in packages/flutter (a: accessibility, cla: yes, f: cupertino, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-253", "text": "59219 Typo fixing sweep through packages/flutter. (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n59514 Replace collection\u2019s SetEquality with flutter\u2019s own (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n59561 Revert \u201cModernize selection menu appearance\u201d (a: internationalization, cla: yes, f: cupertino, f: material design, framework)\n\n59617 Reland modernize selection menu appearance (a: accessibility, a: internationalization, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n59870 Revert \u201cDeprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter\u201d (a: tests, cla: yes, f: cupertino, f: material design, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-254", "text": "59876 Re-land \u201cDeprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter\u201d (a: tests, cla: yes, f: cupertino, f: material design, framework, team)\n\n60316 Don\u2019t access clipboard passively on iOS (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60405 Date picker string translations (a: internationalization, cla: yes, f: cupertino, f: material design, waiting for tree to go green)\n\n60611 1.17.5 CP: Fix daemon device discovery crash when Xcode isn\u2019t installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-255", "text": "60693 Typo sweep (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)\n\n60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60929 Adding CupertinoApp Sample templates (cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)\n\na: internationalization - 34 pull request(s)\n\n50915 Implement barrierDismissible for showCupertinoDialog (a: internationalization, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-256", "text": "53374 [gen_l10n] Fallback feature for untranslated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green)\n\n53824 [gen_l10n] Add option for deferred loading on the web (a: internationalization, cla: yes, team, tool, waiting for tree to go green)\n\n53868 [gen_l10n] Add scriptCode handling (a: internationalization, cla: yes, severe: new feature, team, tool)\n\n53880 Use no locale as synonym for nb (a: internationalization, cla: yes, customer: dream (g3), f: cupertino, f: material design, team, waiting for tree to go green)\n\n53954 [gen_l10n] Fix plural parsing for translated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-257", "text": "54176 Fix newly reported prefer_const_constructors lints. (a: internationalization, cla: yes, d: examples, team, tool)\n\n54219 Remove escape dollar parameter in localizations_utils (a: internationalization, cla: yes, team, waiting for tree to go green)\n\n54314 [gen_l10n] Expand integration tests (a: internationalization, cla: yes, tool, waiting for tree to go green)\n\n54401 Cleanup in gen_l10n files (a: internationalization, cla: yes, team)\n\n55336 Adding tabSemanticsLabel to CupertinoLocalizations (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green)\n\n55792 [gen_l10n] Output directory option (a: internationalization, cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-258", "text": "55909 [gen_l10n] Fix unintended breaking change introduced by output-dir option (a: internationalization, cla: yes, team, tool)\n\n56090 Step 1 of 3: Add opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green)\n\n56091 Ensure *_kn.arb files are properly escaped with gen_localizations (a: internationalization, cla: yes, f: cupertino, f: material design, framework)\n\n56146 Fixed a typo, gen_l10n_types.dart comment (a: internationalization, cla: yes, tool, waiting for tree to go green)\n\n56373 [gen_l10n] Improve arb FormatException error message (a: internationalization, cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-259", "text": "56490 [gen_l10n] Optionally generate list of inputs/outputs (a: internationalization, cla: yes, tool, waiting for tree to go green)\n\n56582 Update Tab semantics in Cupertino to be the same as Material (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green)\n\n56645 Localized new strings added in the redesigned Material Date Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)\n\n57511 Step 2 of 3: Change opt-in default for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n57588 New license page. (a: internationalization, cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-260", "text": "58482 Expose ComputePlatformResolvedLocale (a: internationalization, cla: yes, customer: money (g3), framework, waiting for tree to go green)\n\n58831 Step 3 of 3: Remove opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green)\n\n59160 Remove unused import which shares prefix name with a used import. (a: internationalization, cla: yes, f: cupertino, f: material design)\n\n59191 [Material] Redesign Time Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)\n\n59285 Remove Fuchsia BUILD.gn files (a: internationalization, a: tests, cla: yes, framework, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-261", "text": "59561 Revert \u201cModernize selection menu appearance\u201d (a: internationalization, cla: yes, f: cupertino, f: material design, framework)\n\n59617 Reland modernize selection menu appearance (a: accessibility, a: internationalization, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n60096 Localized new strings added in the redesigned Material Time Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)\n\n60185 [gen_l10n] Update the arb filename parsing logic (a: internationalization, cla: yes, team, tool)\n\n60405 Date picker string translations (a: internationalization, cla: yes, f: cupertino, f: material design, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-262", "text": "60552 New license page with fix for zero licenses. (a: internationalization, f: material design, framework)\n\n60600 Fix and address Inconsistencies with Pashto support (a: internationalization, cla: yes, f: material design)\n\nengine - 33 pull request(s)\n\n54111 Manual roll of engine 9b8dcc7ecffe..df257e59c241 (cla: no, engine)\n\n54383 Revert \u201cRoll engine 5b4b1f33c6d6..916f014d1cfb (24 commits)\u201d (cla: yes, engine)\n\n55253 Flutter 1.17.0.dev.3.2 cherrypicks (cla: yes, engine, framework, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-263", "text": "55521 Revert \u201cRoll engine 8fff8da38da2..a544b45f26cc (3 commits)\u201d (cla: yes, engine)\n\n55560 Revert \u201cRoll engine 8fff8da38da2..d2ec21221e29 (8 commits)\u201d (cla: yes, engine)\n\n55749 Roll engine 2b94311a7764..4f888d66250e (10 commits) (cla: yes, engine, work in progress; do not review)\n\n55871 Flutter 1.17.0.dev.3.3 cherrypicks (cla: yes, engine, framework, team, tool)\n\n55891 manual engine roll (4bcfae82c7c1 -> 0c35a3417) (cla: yes, engine)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-264", "text": "56677 Manual roll of engine 7e205b37e5\u20263953c3ccd1 (cla: yes, engine)\n\n56684 Manual roll of engine 9b905d3f03\u20267e205b37e5 (cla: yes, engine)\n\n57052 Flutter 1.17.1 cherrypicks (cla: yes, engine, framework, team, tool)\n\n57058 1.18.0-11.1.pre beta cherrypicks (cla: yes, engine, framework, team, tool, work in progress; do not review)\n\n58050 Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-265", "text": "58607 Revert \u201c[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58646 Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58692 Revert \u201cRoll Engine from 859d892f1fca to 2608f2ee9f54 (9 revisions)\u201d (cla: yes, engine)\n\n58736 Update engine hash for 1.19.0-4.0.pre (cla: yes, engine)\n\n59046 Cleanup devicelab framework duplicate (a: tests, cla: yes, engine, framework, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-266", "text": "59102 Update engine hash for 1.19.0-4.1.pre (cla: yes, engine)\n\n59334 Revert \u201cRoll Engine from 965fbbed1776 to d417772d7acd (21 revisions)\u201d (cla: yes, engine)\n\n59490 Revert \u201cRoll Engine from 965fbbed1776 to 801559ac4ed3 (50 revisions)\u201d (cla: yes, engine)\n\n59692 Revert \u201cRoll Engine from 965fbbed1776 to 237b5f32eff8 (95 revisions) \u2026 (cla: yes, engine)\n\n59717 Manual engine roll to update format of compileExpression RPC response (cla: yes, engine, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-267", "text": "59758 Update engine hash for flutter-1.20-candidate.1 (cla: yes, engine)\n\n59774 Revert \u201cManual engine roll to update format of compileExpression RP\u2026 (cla: yes, engine, tool)\n\n59804 Roll the engine from 965fbbe to b5f5e63 (cla: yes, engine, tool, waiting for tree to go green)\n\n60002 1.19 CP: [flutter_tools] move mingit path addition back to flutter.bat (#59369) (cla: yes, engine)\n\n60200 [flutter_tools] Clean code analyze command (cla: yes, engine, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-268", "text": "60611 1.17.5 CP: Fix daemon device discovery crash when Xcode isn\u2019t installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n60824 Update engine hash to cherry-pick version a751393 (cla: yes, engine)\n\n60955 Set engine version to head containing cherrypicks (cla: yes, engine)\n\n61010 Revert \u201cAdd embedderId to PointerEvent (#60930)\u201d (cla: yes, engine, framework, team)\n\n61013 Re-land gesture detection for hybrid platform views (engine, framework, team)\n\nd: examples - 28 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-269", "text": "d: examples - 28 pull request(s)\n\n52507 enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\n54176 Fix newly reported prefer_const_constructors lints. (a: internationalization, cla: yes, d: examples, team, tool)\n\n54317 PageStorage sample (cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green)\n\n54407 Don\u2019t import plugins that don\u2019t support android in settings.gradle (a: accessibility, cla: yes, d: examples, team, tool, waiting for tree to go green)\n\n54691 Migrate Runner project base configuration (cla: yes, d: examples, t: xcode, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-270", "text": "54798 ToDo Audit - Cupertino+ Library (a: accessibility, cla: yes, d: examples, f: cupertino, framework, team, waiting for tree to go green)\n\n55001 FlutterErrorDetails.context docs fix (a: error message, a: tests, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)\n\n55829 allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n56958 Updated dwds (and other packages) (cla: yes, d: examples, team, tool, waiting for tree to go green)\n\n57621 Remove MaterialControls from examples/flutter_view (cla: yes, d: examples, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-271", "text": "57838 Add sample code of GestureDetector with no children (cla: yes, d: api docs, d: examples, documentation, f: gestures, framework, waiting for tree to go green)\n\n58050 Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review)\n\n58444 Remove outdated disable_input_output_paths from example project Podfiles (cla: yes, d: examples, platform-ios, team, tool, waiting for tree to go green)\n\n58504 Revert \u201cRemove outdated disable_input_output_paths from example project Podfiles\u201d (cla: yes, d: examples, team)\n\n58522 Build iOS apps using Swift Packages (cla: yes, d: examples, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-272", "text": "58524 Remove outdated disable_input_output_paths from example project Podfiles (cla: yes, d: examples, team, waiting for tree to go green)\n\n58549 Revert \u201cBuild iOS apps using Swift Packages\u201d (cla: yes, d: examples, team, tool)\n\n58607 Revert \u201c[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58646 Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n59009 Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-273", "text": "59025 Revert \u201cBuild iOS apps using Swift Packages\u201d (cla: yes, d: examples, team, tool)\n\n59187 Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)\n\n59280 test flutter framework with null-safety (cla: yes, d: examples, team, waiting for tree to go green)\n\n59896 gitignore .last_build_id file in the repo (cla: yes, d: examples, team, tool, waiting for tree to go green)\n\n60222 Doc Updates (cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-274", "text": "60611 1.17.5 CP: Fix daemon device discovery crash when Xcode isn\u2019t installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60929 Adding CupertinoApp Sample templates (cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)\n\na: accessibility - 25 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-275", "text": "a: accessibility - 25 pull request(s)\n\n53616 Improving A11y for Flutter Gallery Demos (a: accessibility, a: tests, cla: yes, f: material design, framework, team)\n\n54394 replace simple empty Container with w & h with SizedBox (a: accessibility, cla: yes, f: cupertino, f: material design, framework)\n\n54407 Don\u2019t import plugins that don\u2019t support android in settings.gradle (a: accessibility, cla: yes, d: examples, team, tool, waiting for tree to go green)\n\n54798 ToDo Audit - Cupertino+ Library (a: accessibility, cla: yes, d: examples, f: cupertino, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-276", "text": "55336 Adding tabSemanticsLabel to CupertinoLocalizations (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green)\n\n56582 Update Tab semantics in Cupertino to be the same as Material (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green)\n\n56689 Bring back paste button hide behavior (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56806 Revert \u201cBring back paste button hide behavior\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56922 Bring back paste button hide behavior 2 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-277", "text": "56951 Revert \u201cBring back paste button hide behavior 2\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56968 setState() will call scheduleFrame() in post-frame callback now. (a: accessibility, cla: yes, framework, waiting for tree to go green)\n\n57139 Bring back paste button hide behavior 3 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n57286 Revert \u201c Bring back paste button hide behavior 3\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, platform-web, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-278", "text": "58050 Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review)\n\n58535 Make _RenderSlider not be a semantics container (a: accessibility, cla: yes, f: focus, f: material design, framework)\n\n58607 Revert \u201c[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58620 Make debugSemantics available to profile mode (a: accessibility, a: tests, cla: yes, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-279", "text": "58646 Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n59186 Opt out nnbd in packages/flutter (a: accessibility, cla: yes, f: cupertino, f: material design, framework)\n\n59219 Typo fixing sweep through packages/flutter. (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n59617 Reland modernize selection menu appearance (a: accessibility, a: internationalization, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n60141 Tweaking Material Chip a11y semantics to match buttons (a: accessibility, cla: yes, customer: money (g3), f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-280", "text": "60611 1.17.5 CP: Fix daemon device discovery crash when Xcode isn\u2019t installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n60925 fix semantics to only send relevant node update (a: accessibility, cla: yes, framework, waiting for tree to go green)\n\n61012 prevents sliver app bar from changing semantics tree when it is not n\u2026 (a: accessibility, f: material design, framework, waiting for tree to go green)\n\nplatform-ios - 19 pull request(s)\n\n54140 iOS Text Selection Menu Overflow (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-281", "text": "54154 Convert iOS simulator log reader to simctl, use unified logging filters (cla: yes, platform-ios, tool, waiting for tree to go green)\n\n54488 Remove Finder extended attributes from iOS project files (cla: yes, platform-ios, tool)\n\n54989 Support armv7s architecture (cla: yes, platform-ios, tool)\n\n55069 Prioritize scrolling away nested overscroll (a: fidelity, a: quality, cla: yes, customer: crowd, f: scrolling, framework, platform-ios, waiting for tree to go green)\n\n55808 Add iOS simulator log parse test (cla: yes, platform-ios, t: xcode, tool)\n\n58137 Change iOS device discovery from polling to long-running observation (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-282", "text": "58257 Detect USB/network interface from iOS devices (cla: yes, platform-ios, t: xcode, tool)\n\n58392 iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break)\n\n58444 Remove outdated disable_input_output_paths from example project Podfiles (cla: yes, d: examples, platform-ios, team, tool, waiting for tree to go green)\n\n59009 Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green)\n\n59044 Move iOS Podfile logic into tool (cla: yes, platform-ios, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-283", "text": "59209 Support .flutter-plugins-dependencies (cla: yes, platform-ios, team, tool, waiting for tree to go green)\n\n59508 Remove last references to ideviceinstaller (cla: yes, platform-ios, team, tool, waiting for tree to go green)\n\n59874 Parse build ios framework build mode from params (a: existing-apps, cla: yes, platform-ios, tool, waiting for tree to go green)\n\n60045 Check for Xcode 11 and Xcode 12 directory names in build_ios_framework_module_test (a: tests, cla: yes, platform-ios, team)\n\n60228 Make module run script names unique (a: existing-apps, cla: yes, platform-ios, team, tool)\n\n60381 Use ephemeral ports for iOS port forwarding (cla: yes, platform-ios, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-284", "text": "60623 Take screenshots of wirelessly paired iOS devices (platform-ios, tool)\n\na: quality - 16 pull request(s)\n\n50412 Make CircularProgressIndicator\u2019s animation match native (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n53655 Pass showCheckboxColumn parameter to DataTable (a: quality, cla: yes, f: material design, framework, team)\n\n54322 Skip Audit - Material Library (a: quality, a: tests, cla: yes, f: material design, framework, platform-web, team, waiting for tree to go green)\n\n55069 Prioritize scrolling away nested overscroll (a: fidelity, a: quality, cla: yes, customer: crowd, f: scrolling, framework, platform-ios, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-285", "text": "55829 allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n56084 Step 1 of 3: Add opt-in fixing Dialog border radius to match Material Spec (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n57751 Step 2 of 3: Change opt-in default for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n58392 iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-286", "text": "58715 Fix custom physics application in TabBarView (a: quality, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)\n\n58829 Step 3 of 3: Remove opt-in for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n59187 Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)\n\n59966 Added a filterQuality parameter to texture (a: quality, a: video, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-287", "text": "60248 Ensure FloatingActionButtonLocations are always within safe interactive areas (a: quality, cla: yes, customer: money (g3), f: material design, framework, waiting for tree to go green)\n\n60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60934 Skip Audit - Scheduler and Services libraries (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n60936 Skip Audit - Widgets Library (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green)\n\na: text input - 15 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-288", "text": "a: text input - 15 pull request(s)\n\n53381 Characters Package (a: text input, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)\n\n54140 iOS Text Selection Menu Overflow (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-ios)\n\n54902 Paste shows only when content on clipboard (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n55408 Fix InputDecorator intrinsic height reporting (a: text input, cla: yes, f: material design, f: scrolling, framework, severe: regression, waiting for tree to go green)\n\n55415 Customizable obscuringCharacter (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-289", "text": "55636 Prevent use of TextInputType.text when also using TextInputAction.newLine via assert (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n55775 TextField enabled fix (a: text input, cla: yes, f: material design, framework, waiting for tree to go green)\n\n55911 Text field height fix (a: text input, cla: yes, f: inspector, f: material design, framework, waiting for tree to go green)\n\n56090 Step 1 of 3: Add opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-290", "text": "57264 Prevent WhitelistingTextInputFormatter to return a empty string if the current value does not satisfy the formatter (a: text input, cla: yes, framework, waiting for tree to go green)\n\n57511 Step 2 of 3: Change opt-in default for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n58831 Step 3 of 3: Remove opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green)\n\n59221 Revert \u201cPrevent WhitelistingTextInputFormatter to return a empty string if the current value does not satisfy the formatter (#57264)\u201d (a: text input, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-291", "text": "59363 Add material state mouse cursor to TextField (a: text input, cla: yes, customer: octopod, f: material design, framework, waiting for tree to go green)\n\n60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\nd: api docs - 13 pull request(s)\n\n50673 Update AppBar MediaQuery documentation (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)\n\n54317 PageStorage sample (cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-292", "text": "55001 FlutterErrorDetails.context docs fix (a: error message, a: tests, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)\n\n55829 allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n57195 Fix NavigationRail class docs (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)\n\n57838 Add sample code of GestureDetector with no children (cla: yes, d: api docs, d: examples, documentation, f: gestures, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-293", "text": "58117 Minor correction to documentation for buttonColor (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)\n\n58213 update build doc string to advocate avoiding doing tasks other than b\u2026 (cla: yes, d: api docs, framework, waiting for tree to go green)\n\n59187 Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)\n\n60222 Doc Updates (cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green)\n\n60482 Fix docs for TabBar indicator (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-294", "text": "60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60929 Adding CupertinoApp Sample templates (cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)\n\ndocumentation - 11 pull request(s)\n\n54317 PageStorage sample (cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green)\n\n55001 FlutterErrorDetails.context docs fix (a: error message, a: tests, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-295", "text": "55829 allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n57838 Add sample code of GestureDetector with no children (cla: yes, d: api docs, d: examples, documentation, f: gestures, framework, waiting for tree to go green)\n\n58456 Update StandardCodec documentation with double alignment (cla: yes, documentation, framework, waiting for tree to go green)\n\n59187 Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-296", "text": "60222 Doc Updates (cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green)\n\n60482 Fix docs for TabBar indicator (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)\n\n60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60734 Add comment explain dispatchEvent override (a: tests, cla: yes, documentation, framework)\n\n60929 Adding CupertinoApp Sample templates (cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-297", "text": "severe: performance - 11 pull request(s)\n\n54494 Add A/B test mode to local devicelab runner (cla: yes, severe: performance, team, waiting for tree to go green)\n\n55181 Add performance tests for the new gallery (cla: yes, perf: speed, severe: performance, team, waiting for tree to go green)\n\n55417 [flutter_tools] fix performance of tree-shake-icons (cla: yes, severe: performance, tool)\n\n55486 Add DevTools memory test (cla: yes, perf: memory, severe: performance, team, waiting for tree to go green)\n\n56575 Roll new gallery version in the perf test (cla: yes, severe: performance, team, waiting for tree to go green)\n\n56638 Perf test with SkSL warm-up (cla: yes, perf: speed, severe: performance, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-298", "text": "58648 Add iOS new gallery perf test (cla: yes, severe: performance, team, waiting for tree to go green)\n\n58820 Timeline summary contains CPU, GPU and Memory usage (a: tests, cla: yes, framework, severe: performance, waiting for tree to go green)\n\n59803 Add benchmark for Mouse region (web) (a: tests, cla: yes, framework, severe: performance, team, waiting for tree to go green)\n\n59883 Refactor mouse hit testing system: Direct mouse hit test (a: mouse, cla: yes, f: material design, framework, severe: performance, waiting for tree to go green)\n\n59932 Add SkSL shader warm-up tests to Flutter gallery (cla: yes, perf: speed, severe: performance, team, waiting for tree to go green)\n\nsevere: API break - 11 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-299", "text": "severe: API break - 11 pull request(s)\n\n54806 Roll engine deef2663aca4..e6a2534b63ac (20 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens)\n\n54997 Roll engine e6a2534b63ac..f4d6ce13dcc4 (32 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens)\n\n55336 Adding tabSemanticsLabel to CupertinoLocalizations (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green)\n\n55977 Add clipBehavior to widgets with clipRect (cla: yes, f: material design, framework, severe: API break, team, will affect goldens)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-300", "text": "55998 Fixes the navigator pages update crashes when there is still route wa\u2026 (cla: yes, f: routes, framework, severe: API break, waiting for tree to go green)\n\n56390 Roll engine 33d236795015..4b7380b55f6d (3 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens)\n\n56582 Update Tab semantics in Cupertino to be the same as Material (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green)\n\n56740 Roll engine 9b905d3f03f2..9d8daf2383ea (19 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-301", "text": "57065 Remove deprecated child parameter for NestedScrollView\u2019s overlap managing slivers (cla: yes, f: scrolling, framework, severe: API break, waiting for tree to go green)\n\n57629 Roll Engine from 2d4e83921d31 to 9ce1e5c5c7e7 (27 revisions) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens)\n\n58392 iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break)\n\nf: scrolling - 11 pull request(s)\n\n55069 Prioritize scrolling away nested overscroll (a: fidelity, a: quality, cla: yes, customer: crowd, f: scrolling, framework, platform-ios, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-302", "text": "55408 Fix InputDecorator intrinsic height reporting (a: text input, cla: yes, f: material design, f: scrolling, framework, severe: regression, waiting for tree to go green)\n\n55829 allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n57065 Remove deprecated child parameter for NestedScrollView\u2019s overlap managing slivers (cla: yes, f: scrolling, framework, severe: API break, waiting for tree to go green)\n\n58392 iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-303", "text": "58715 Fix custom physics application in TabBarView (a: quality, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)\n\n59015 fix overscroll position if there is sliver before center sliver in cu\u2026 (cla: yes, f: scrolling, framework, waiting for tree to go green)\n\n59187 Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)\n\n59405 [AppBar] adds toolbarHeight property to customize AppBar height (cla: yes, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-304", "text": "59888 Fix the layout calculation in sliver list where the scroll offset cor\u2026 (cla: yes, f: scrolling, framework, waiting for tree to go green)\n\n60222 Doc Updates (cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green)\n\nt: xcode - 10 pull request(s)\n\n54691 Migrate Runner project base configuration (cla: yes, d: examples, t: xcode, team, tool)\n\n55790 Remove dead variable from xcode_backend (cla: yes, t: xcode, tool)\n\n55799 Check Xcode build setting FULL_PRODUCT_NAME for bundle name (cla: yes, t: xcode, team, tool)\n\n55808 Add iOS simulator log parse test (cla: yes, platform-ios, t: xcode, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-305", "text": "56620 Remove Runner target check, prefer schemes (cla: yes, t: xcode, team, tool, waiting for tree to go green)\n\n57701 Allow FLUTTER_APPLICATION_PATH to be null for misconfigured Xcode projects (cla: yes, t: xcode, tool, waiting for tree to go green)\n\n58137 Change iOS device discovery from polling to long-running observation (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)\n\n58257 Detect USB/network interface from iOS devices (cla: yes, platform-ios, t: xcode, tool)\n\n59009 Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-306", "text": "60546 Fix daemon device discovery crash when Xcode isn\u2019t installed (cla: yes, severe: crash, t: xcode, tool, waiting for tree to go green)\n\nwill affect goldens - 9 pull request(s)\n\n51656 Set AA flag for painting images (a: images, cla: yes, framework, waiting for tree to go green, will affect goldens)\n\n54806 Roll engine deef2663aca4..e6a2534b63ac (20 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens)\n\n54997 Roll engine e6a2534b63ac..f4d6ce13dcc4 (32 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-307", "text": "55527 Animation sheet recorder (a: tests, cla: yes, framework, waiting for tree to go green, will affect goldens)\n\n55793 Skip Audit - Painting Library (a: images, a: tests, a: typography, cla: yes, framework, platform-web, team, will affect goldens)\n\n55977 Add clipBehavior to widgets with clipRect (cla: yes, f: material design, framework, severe: API break, team, will affect goldens)\n\n56390 Roll engine 33d236795015..4b7380b55f6d (3 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-308", "text": "56740 Roll engine 9b905d3f03f2..9d8daf2383ea (19 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens)\n\n57629 Roll Engine from 2d4e83921d31 to 9ce1e5c5c7e7 (27 revisions) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens)\n\nplatform-web - 9 pull request(s)\n\n51581 Fix outline button solid path when BorderSize.width is used (cla: yes, f: material design, framework, platform-web, waiting for tree to go green)\n\n53837 Skip Audits (2) (a: tests, cla: yes, f: cupertino, framework, platform-web, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-309", "text": "53952 [web] Fix race condition in widget benchmarks (cla: yes, platform-web, team)\n\n54322 Skip Audit - Material Library (a: quality, a: tests, cla: yes, f: material design, framework, platform-web, team, waiting for tree to go green)\n\n54396 [web] Don\u2019t collect trace info in the color grid benchmark (cla: yes, platform-web, team)\n\n55793 Skip Audit - Painting Library (a: images, a: tests, a: typography, cla: yes, framework, platform-web, team, will affect goldens)\n\n56794 [web & desktop] Hide all characters in a TextField, when obscureText is true on web & desktop (cla: yes, f: material design, framework, platform-mac, platform-web, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-310", "text": "57240 [web] Update test skip description. (a: tests, cla: yes, framework, platform-web)\n\n57286 Revert \u201c Bring back paste button hide behavior 3\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, platform-web, team, waiting for tree to go green)\n\na: null-safety - 8 pull request(s)\n\n54208 [flutter_tools] migrate engine location check (a: null-safety, cla: yes, tool)\n\n54299 [flutter_tools] migrate devfs web to package_config (a: null-safety, cla: yes, tool)\n\n54301 [flutter_tools] Remove packageMap usage and update package_config (a: null-safety, cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-311", "text": "54467 [flutter_tools] update compilation to use package config (a: null-safety, cla: yes, tool)\n\n54613 [flutter_tools] support enable-experiment in flutter analyze (a: null-safety, cla: yes, tool, waiting for tree to go green)\n\n54617 [flutter_tools] initial support for enable experiment, run, apk, ios, macos (a: null-safety, cla: yes, team, tool)\n\n58533 [flutter_tools] add flag for sound-null-safety, unify with experiments (a: null-safety, cla: yes, tool)\n\n60111 Add null safety options to build ios-framework (a: existing-apps, a: null-safety, cla: yes, tool)\n\na: fidelity - 7 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-312", "text": "a: fidelity - 7 pull request(s)\n\n50412 Make CircularProgressIndicator\u2019s animation match native (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n55069 Prioritize scrolling away nested overscroll (a: fidelity, a: quality, cla: yes, customer: crowd, f: scrolling, framework, platform-ios, waiting for tree to go green)\n\n55829 allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-313", "text": "56084 Step 1 of 3: Add opt-in fixing Dialog border radius to match Material Spec (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n57751 Step 2 of 3: Change opt-in default for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n58392 iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break)\n\n58829 Step 3 of 3: Remove opt-in for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\na: images - 7 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-314", "text": "a: images - 7 pull request(s)\n\n51656 Set AA flag for painting images (a: images, cla: yes, framework, waiting for tree to go green, will affect goldens)\n\n53875 Remove network images from cache on any exception during loading (a: images, cla: yes, framework)\n\n53959 Clear ImageCache on MemoryPressure (a: images, cla: yes, framework, waiting for tree to go green)\n\n55793 Skip Audit - Painting Library (a: images, a: tests, a: typography, cla: yes, framework, platform-web, team, will affect goldens)\n\n58503 Do not assume imageCache is created when handleMemoryPressure is called (a: images, cla: yes, framework)\n\n59856 Make upscaling images opt-in (a: images, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-315", "text": "59877 Allow detection of images using more memory than necessary (a: debugging, a: error message, a: images, cla: yes, framework)\n\nwork in progress; do not review - 5 pull request(s)\n\n53879 Collect chrome://tracing data in Web benchmarks (cla: yes, team, work in progress; do not review)\n\n55126 web benchmarks: handle no outliers case (cla: yes, team, waiting for tree to go green, work in progress; do not review)\n\n55749 Roll engine 2b94311a7764..4f888d66250e (10 commits) (cla: yes, engine, work in progress; do not review)\n\n57058 1.18.0-11.1.pre beta cherrypicks (cla: yes, engine, framework, team, tool, work in progress; do not review)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-316", "text": "58050 Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review)\n\nplatform-android - 5 pull request(s)\n\n50111 fix memory leak of android view (a: platform-views, cla: yes, p: framework, perf: memory, platform-android, plugin, waiting for tree to go green)\n\n56342 Add split-debug and obfuscation to build aar (cla: yes, platform-android, tool, waiting for tree to go green)\n\n58815 Support work profiles and multiple Android users for run, install, attach, drive (cla: yes, platform-android, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-317", "text": "59115 Modernize selection menu appearance (cla: yes, f: cupertino, f: material design, framework, platform-android, waiting for tree to go green)\n\n59867 Replace ANDROID_HOME user messages with ANDROID_SDK_ROOT (cla: yes, platform-android, team, tool, waiting for tree to go green)\n\nCQ+1 - 4 pull request(s)\n\n54131 flutter/flutter 1.17.0-dev.3.1 cherrypicks (CQ+1, cla: yes, framework, tool)\n\n55401 Optimize fuchsia test script. (CQ+1, cla: yes, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-318", "text": "60611 1.17.5 CP: Fix daemon device discovery crash when Xcode isn\u2019t installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n60717 1.19 CP: Fix daemon device discovery crash when Xcode isn\u2019t installed (#60546) (CQ+1, cla: yes)\n\na: existing-apps - 4 pull request(s)\n\n59217 Deprecate make-host-app-editable (a: existing-apps, cla: yes, tool, waiting for tree to go green)\n\n59874 Parse build ios framework build mode from params (a: existing-apps, cla: yes, platform-ios, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-319", "text": "60111 Add null safety options to build ios-framework (a: existing-apps, a: null-safety, cla: yes, tool)\n\n60228 Make module run script names unique (a: existing-apps, cla: yes, platform-ios, team, tool)\n\nsevere: new feature - 4 pull request(s)\n\n53868 [gen_l10n] Add scriptCode handling (a: internationalization, cla: yes, severe: new feature, team, tool)\n\n55829 allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-320", "text": "57736 [AppBarTheme] adds centerTitle property (cla: yes, f: material design, framework, severe: new feature, waiting for tree to go green)\n\n59405 [AppBar] adds toolbarHeight property to customize AppBar height (cla: yes, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\nperf: memory - 4 pull request(s)\n\n50111 fix memory leak of android view (a: platform-views, cla: yes, p: framework, perf: memory, platform-android, plugin, waiting for tree to go green)\n\n55486 Add DevTools memory test (cla: yes, perf: memory, severe: performance, team, waiting for tree to go green)\n\n58430 [flutter_driver] make timeline request in chunks (a: tests, cla: yes, framework, perf: memory)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-321", "text": "61025 benchmark memory usage for grid view of memory intensive widgets (cla: yes, perf: memory, team, waiting for tree to go green)\n\nf: routes - 4 pull request(s)\n\n55998 Fixes the navigator pages update crashes when there is still route wa\u2026 (cla: yes, f: routes, framework, severe: API break, waiting for tree to go green)\n\n56732 fix pushAndRemoveUntil incorrectly removes the routes below the first\u2026 (cla: yes, f: routes, framework, waiting for tree to go green)\n\n57036 fix push replacement reports wrong previous route to navigator observer (cla: yes, f: routes, framework, waiting for tree to go green)\n\n60621 Add a flag to toggle navigator route update reporting (cla: yes, f: routes, framework, waiting for tree to go green)\n\na: desktop - 3 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-322", "text": "a: desktop - 3 pull request(s)\n\n53888 Add visualDensity and focus support to ListTile (a: desktop, cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n56160 Focus the last node when asked to focus previous and nothing is selected. (a: desktop, cla: yes, f: focus, waiting for tree to go green)\n\n58272 Remove callback asserts on FocusableActionDetector (a: desktop, cla: yes, framework)\n\nperf: speed - 3 pull request(s)\n\n55181 Add performance tests for the new gallery (cla: yes, perf: speed, severe: performance, team, waiting for tree to go green)\n\n56638 Perf test with SkSL warm-up (cla: yes, perf: speed, severe: performance, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-323", "text": "59932 Add SkSL shader warm-up tests to Flutter gallery (cla: yes, perf: speed, severe: performance, team, waiting for tree to go green)\n\na: triage improvements - 3 pull request(s)\n\n53882 Remove URL shortening from GitHub reporter similar issues URL (a: triage improvements, cla: yes, tool)\n\n53936 Sanitize error message sent to GitHub crash reporter (a: triage improvements, cla: yes, tool)\n\n56928 Add mirror overrides to doctor output (a: triage improvements, cla: yes, t: flutter doctor, tool, waiting for tree to go green)\n\na: typography - 3 pull request(s)\n\n54234 Fix right alignment TWB longestLine (a: typography, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-324", "text": "54305 Add missing properties to TextStyle.apply (a: typography, cla: yes, framework, waiting for tree to go green)\n\n55793 Skip Audit - Painting Library (a: images, a: tests, a: typography, cla: yes, framework, platform-web, team, will affect goldens)\n\nteam: infra - 3 pull request(s)\n\n54478 Fix environment leakage in doctor_test (cla: yes, team, team: flakes, team: infra, tool)\n\n54891 Mark ios_app_with_watch_companion as flaky (cla: yes, team, team: infra)\n\n54899 Pass in runtime to ios_app_with_watch_companion simctl create (cla: yes, team, team: infra)\n\na: error message - 3 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-325", "text": "a: error message - 3 pull request(s)\n\n55001 FlutterErrorDetails.context docs fix (a: error message, a: tests, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)\n\n59877 Allow detection of images using more memory than necessary (a: debugging, a: error message, a: images, cla: yes, framework)\n\n60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\nf: focus - 3 pull request(s)\n\n52990 Update Highlight mode initial value calculation. (cla: yes, f: focus, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-326", "text": "56160 Focus the last node when asked to focus previous and nothing is selected. (a: desktop, cla: yes, f: focus, waiting for tree to go green)\n\n58535 Make _RenderSlider not be a semantics container (a: accessibility, cla: yes, f: focus, f: material design, framework)\n\ncustomer: money (g3) - 3 pull request(s)\n\n58482 Expose ComputePlatformResolvedLocale (a: internationalization, cla: yes, customer: money (g3), framework, waiting for tree to go green)\n\n60141 Tweaking Material Chip a11y semantics to match buttons (a: accessibility, cla: yes, customer: money (g3), f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-327", "text": "60248 Ensure FloatingActionButtonLocations are always within safe interactive areas (a: quality, cla: yes, customer: money (g3), f: material design, framework, waiting for tree to go green)\n\ncustomer: crowd - 2 pull request(s)\n\n55069 Prioritize scrolling away nested overscroll (a: fidelity, a: quality, cla: yes, customer: crowd, f: scrolling, framework, platform-ios, waiting for tree to go green)\n\n59187 Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)\n\nsevere: regression - 2 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-328", "text": "severe: regression - 2 pull request(s)\n\n55408 Fix InputDecorator intrinsic height reporting (a: text input, cla: yes, f: material design, f: scrolling, framework, severe: regression, waiting for tree to go green)\n\n57037 Making DropdownButtonFormField to re-render if parent widget changes (cla: yes, f: material design, found in release: 1.17, found in release: 1.18, framework, severe: regression, waiting for tree to go green)\n\na: platform-views - 2 pull request(s)\n\n50111 fix memory leak of android view (a: platform-views, cla: yes, p: framework, perf: memory, platform-android, plugin, waiting for tree to go green)\n\n55609 Add benchmark for hybrid composition on Android (a: platform-views, cla: yes, t: flutter driver, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-329", "text": "a: animation - 2 pull request(s)\n\n60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60836 Expose height and width factor in AnimatedAlign (a: animation, cla: yes, framework, waiting for tree to go green)\n\na: annoyance - 2 pull request(s)\n\n59187 Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-330", "text": "60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\nt: flutter doctor - 2 pull request(s)\n\n56928 Add mirror overrides to doctor output (a: triage improvements, cla: yes, t: flutter doctor, tool, waiting for tree to go green)\n\n57963 [flutter_tools] Support latest IntelliJ via Jetbrain toolbox (cla: yes, t: flutter doctor, tool)\n\nfound in release: 1.17 - 1 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-331", "text": "found in release: 1.17 - 1 pull request(s)\n\n57037 Making DropdownButtonFormField to re-render if parent widget changes (cla: yes, f: material design, found in release: 1.17, found in release: 1.18, framework, severe: regression, waiting for tree to go green)\n\nf: inspector - 1 pull request(s)\n\n55911 Text field height fix (a: text input, cla: yes, f: inspector, f: material design, framework, waiting for tree to go green)\n\nf: gestures - 1 pull request(s)\n\n57838 Add sample code of GestureDetector with no children (cla: yes, d: api docs, d: examples, documentation, f: gestures, framework, waiting for tree to go green)\n\nplatform-mac - 1 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-332", "text": "platform-mac - 1 pull request(s)\n\n56794 [web & desktop] Hide all characters in a TextField, when obscureText is true on web & desktop (cla: yes, f: material design, framework, platform-mac, platform-web, waiting for tree to go green)\n\ncustomer: quill (g3) - 1 pull request(s)\n\n59187 Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)\n\nplugin - 1 pull request(s)\n\n50111 fix memory leak of android view (a: platform-views, cla: yes, p: framework, perf: memory, platform-android, plugin, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-333", "text": "customer: peppermint - 1 pull request(s)\n\n52126 Autofill Part 1 (cla: yes, customer: peppermint, f: cupertino, f: material design, framework, waiting for tree to go green)\n\nsevere: crash - 1 pull request(s)\n\n60546 Fix daemon device discovery crash when Xcode isn\u2019t installed (cla: yes, severe: crash, t: xcode, tool, waiting for tree to go green)\n\ncustomer: octopod - 1 pull request(s)\n\n59363 Add material state mouse cursor to TextField (a: text input, cla: yes, customer: octopod, f: material design, framework, waiting for tree to go green)\n\ncustomer: fun (g3) - 1 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-334", "text": "customer: fun (g3) - 1 pull request(s)\n\n54919 Add MediaQueryData.navigationMode and allow controls to be focused when disabled. (cla: yes, customer: fun (g3), f: material design, framework)\n\ncustomer: fuchsia - 1 pull request(s)\n\n60152 Remove unused physicalDepth code (a: tests, cla: yes, customer: fuchsia, framework, waiting for tree to go green)\n\np: framework - 1 pull request(s)\n\n50111 fix memory leak of android view (a: platform-views, cla: yes, p: framework, perf: memory, platform-android, plugin, waiting for tree to go green)\n\nt: flutter driver - 1 pull request(s)\n\n55609 Add benchmark for hybrid composition on Android (a: platform-views, cla: yes, t: flutter driver, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-335", "text": "customer: dream (g3) - 1 pull request(s)\n\n53880 Use no locale as synonym for nb (a: internationalization, cla: yes, customer: dream (g3), f: cupertino, f: material design, team, waiting for tree to go green)\n\ncla: no - 1 pull request(s)\n\n54111 Manual roll of engine 9b8dcc7ecffe..df257e59c241 (cla: no, engine)\n\nteam: flakes - 1 pull request(s)\n\n54478 Fix environment leakage in doctor_test (cla: yes, team, team: flakes, team: infra, tool)\n\nteam: gallery - 1 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-336", "text": "team: gallery - 1 pull request(s)\n\n52507 enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\na: video - 1 pull request(s)\n\n59966 Added a filterQuality parameter to texture (a: quality, a: video, cla: yes, framework, waiting for tree to go green)\n\na: mouse - 1 pull request(s)\n\n59883 Refactor mouse hit testing system: Direct mouse hit test (a: mouse, cla: yes, f: material design, framework, severe: performance, waiting for tree to go green)\n\nwaiting for customer response - 1 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-337", "text": "waiting for customer response - 1 pull request(s)\n\n54133 [flutter_tools] ensure the tool can find SDK manager on windows (cla: yes, tool, waiting for customer response)\n\na: debugging - 1 pull request(s)\n\n59877 Allow detection of images using more memory than necessary (a: debugging, a: error message, a: images, cla: yes, framework)\n\nfound in release: 1.18 - 1 pull request(s)\n\n57037 Making DropdownButtonFormField to re-render if parent widget changes (cla: yes, f: material design, found in release: 1.17, found in release: 1.18, framework, severe: regression, waiting for tree to go green)\n\nMerged PRs by labels for flutter/engine\n\nplatform-android - 62 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-338", "text": "platform-android - 62 pull request(s)\n\n17509 Implement repeat filtering logic in Android Embedder (affects: text input, cla: yes, platform-android)\n\n17588 set -e on assemble_apk.sh (cla: yes, platform-android, waiting for tree to go green)\n\n17948 Set SkSL asset manager in RunConfiguration ctor (cla: yes, platform-android, waiting for tree to go green)\n\n18042 Wire up channel for restoration data (cla: yes, platform-android)\n\n18193 Add fullscreen padding workarounds to v2 android embedding (bug (regression), cla: yes, platform-android)\n\n18645 Platform resolved locale and Android localization refactor (cla: yes, platform-android, platform-ios, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-339", "text": "18814 Allow texture sampling quality control (cla: yes, platform-android, platform-ios)\n\n18826 Revert \u201conDisplayPlatformView JNI\u201d (cla: yes, platform-android)\n\n18828 onDisplayPlatformView JNI (cla: yes, platform-android, waiting for tree to go green)\n\n18831 Reset AndroidExternalViewEmbedder state when starting a new frame (cla: yes, platform-android, waiting for tree to go green)\n\n18841 Run the rasterizer on the platform thread (cla: yes, platform-android, platform-ios)\n\n18849 Add RAII wrapper for EGLSurface (cla: yes, platform-android)\n\n18859 add onDisplayOverlaySurface JNI (cla: yes, platform-android)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-340", "text": "18865 Add a deprecation note to FlutterFragmentActivity (cla: yes, platform-android)\n\n18866 onBeginFrame JNI (cla: yes, platform-android, waiting for tree to go green)\n\n18867 onEndFrame JNI (cla: yes, platform-android, waiting for tree to go green)\n\n18875 Fix intent builder visibility (cla: yes, platform-android, waiting for tree to go green)\n\n18903 Put JNI functions under an interface (cla: yes, platform-android)\n\n18916 Add support for horizontalDoubleArrow and verticalDoubleArrow cursors (cla: yes, platform-android)\n\n18938 Move Surface and friends to flow/ (cla: yes, platform-android, platform-ios, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-341", "text": "18971 Revert \u201cAdd RAII wrapper for EGLSurface\u201d (cla: yes, platform-android)\n\n18977 Reland: Add RAII wrapper for EGLSurface (cla: yes, platform-android)\n\n18979 Call Shell::NotifyLowMemoryWarning on Android Trim and LowMemory events (cla: yes, platform-android)\n\n18985 Call destructor and fix check (cla: yes, platform-android)\n\n19023 Revert \u201cCall Shell::NotifyLowMemoryWarning on Android Trim and LowMemory events\u201d (cla: yes, platform-android)\n\n19026 Call Shell::NotifyLowMemory when backgrounded/memory pressure occurs on Android (cla: yes, platform-android, waiting for tree to go green)\n\n19033 Implement external view embedder on Android (cla: yes, platform-android)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-342", "text": "19040 add createOverlaySurface JNI (cla: yes, platform-android, waiting for tree to go green)\n\n19075 Revert add createOverlaySurface JNI #19040 (cla: yes, platform-android)\n\n19076 createOverlaySurface JNI method (cla: yes, platform-android, waiting for tree to go green)\n\n19111 Word substitutions (cla: yes, platform-android, waiting for tree to go green)\n\n19136 Revert method channel platform resolved locale (cla: yes, platform-android)\n\n19143 Creates a new RenderMode for FlutterView (cla: yes, platform-android)\n\n19212 Reland \u201cAdd GetBoundingRectAfterMutations to EmbeddedViewParams to calculate the final bounding rect for platform view #19170\u201d (cla: yes, platform-android, platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-343", "text": "19221 JNI glue for calling PlatformViewsController.createOverlaySurface (cla: yes, platform-android, waiting for tree to go green)\n\n19223 Fix the return type of CreateContext (cla: yes, platform-android, waiting for tree to go green)\n\n19226 Implement PlatformViewsController.createOverlaySurface (cla: yes, platform-android)\n\n19228 Revert \u201cImplement PlatformViewsController.createOverlaySurface\u201d (cla: yes, platform-android)\n\n19232 Use public accessor and move keep annotation (cla: yes, platform-android)\n\n19242 Android platform view static thread merging (cla: yes, platform-android, platform-ios, waiting for tree to go green)\n\n19245 Reland \u201cImplement PlatformViewsController.createOverlaySurface\u201d (cla: yes, platform-android, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-344", "text": "19257 EndFrame should be always called by rasterizer (cla: yes, platform-android, platform-ios)\n\n19258 Move OnDisplayPlatformView JNI call (cla: yes, platform-android)\n\n19261 Fix string format (cla: yes, platform-android)\n\n19266 Android native locale resolution algorithm (cla: yes, platform-android, waiting for tree to go green)\n\n19279 Initial work toward converting the FlutterView to use a FlutterImageView on demand (cla: yes, platform-android)\n\n19295 Position overlay layer views in PlatformViewsController.onDisplayOverlaySurface (cla: yes, platform-android)\n\n19319 Fix ImageReader \u201cunable to acquire a buffer item\u201d warnings in FlutterImageView (cla: yes, platform-android, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-345", "text": "19325 Fix hybrid composition bugs (cla: yes, platform-android, waiting for tree to go green)\n\n19339 Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)\n\n19344 Implement onDisplayPlatformView (cla: yes, platform-android, waiting for tree to go green)\n\n19402 Basic support for resizing overlay surfaces in hybrid composition (cla: yes, platform-android, waiting for tree to go green)\n\n19421 Update scenario UI screenshoots (cla: yes, platform-android)\n\n19426 Implement mutator stack on Android hybrid composition platform view (cla: yes, platform-android, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-346", "text": "19427 Synthesize touch events for hybrid views (cla: yes, platform-android)\n\n19435 Revert unintended change (cla: yes, platform-android, waiting for tree to go green)\n\n19482 FlutterView will handle dispatching all touch events to sub-views (cla: yes, platform-android)\n\n19484 Track motion events for reuse post gesture disambiguation (cla: yes, platform-android)\n\n19487 Switch to FlutterSurfaceView if no Android view is in the frame (cla: yes, platform-android, waiting for tree to go green)\n\n19555 Resubmit frame when the surface is switched (cla: yes, platform-android)\n\n19560 Add @Keep annotation to FlutterMutatorsStack (cla: yes, platform-android)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-347", "text": "19608 Propoagate Tap events on Android hybrid views (cla: yes, platform-android)\n\nplatform-ios - 21 pull request(s)\n\n18379 Remove currentLocale prepend on iOS (cla: yes, platform-ios)\n\n18645 Platform resolved locale and Android localization refactor (cla: yes, platform-android, platform-ios, waiting for tree to go green)\n\n18752 started polling the gpu usage (cla: yes, platform-ios)\n\n18814 Allow texture sampling quality control (cla: yes, platform-android, platform-ios)\n\n18816 Fixes UI freezes when multiple Flutter VC shared one engine (cla: yes, platform-ios)\n\n18841 Run the rasterizer on the platform thread (cla: yes, platform-android, platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-348", "text": "18938 Move Surface and friends to flow/ (cla: yes, platform-android, platform-ios, waiting for tree to go green)\n\n18950 fix iOS builds (cla: yes, platform-ios)\n\n18966 updated FlutterViewControllerTest tests names (cla: yes, platform-ios)\n\n19062 Instantiate image codec doc fix (cla: yes, platform-ios)\n\n19068 [iOS] handle text plugin negative range (cla: yes, platform-ios, waiting for tree to go green)\n\n19161 [iOS] text input methods to only call updateEditState once (cla: yes, platform-ios)\n\n19204 Revert \u201cAdd GetBoundingRectAfterMutations to EmbeddedViewParams to calculate the final bounding rect for platform view\u201d (cla: yes, platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-349", "text": "19212 Reland \u201cAdd GetBoundingRectAfterMutations to EmbeddedViewParams to calculate the final bounding rect for platform view #19170\u201d (cla: yes, platform-android, platform-ios)\n\n19242 Android platform view static thread merging (cla: yes, platform-android, platform-ios, waiting for tree to go green)\n\n19249 Made [SemanticsObject setAccessibilityContainer] a noop. (cla: yes, platform-ios)\n\n19257 EndFrame should be always called by rasterizer (cla: yes, platform-android, platform-ios)\n\n19289 Call Dart_NotifyLowMemory more on iOS (cla: yes, platform-ios, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-350", "text": "19339 Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)\n\n19556 Changed iOS channels to start cleaning up the accessibility handler when the bridge is deleted (cla: yes, platform-ios)\n\n19592 Only attempt surface creation in viewDidLayoutSubviews if the application is active. (cla: yes, platform-ios)\n\nsevere: performance - 16 pull request(s)\n\n17175 Enhance image_filter_layer caching to filter a cached child (cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\n17601 Read SkSLs from asset (cla: yes, perf: speed, severe: performance)\n\n17621 Optimize static content scrolling (cla: yes, perf: speed, severe: performance)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-351", "text": "17753 [fuchsia] Enable raster cache on Fuchsia (cla: yes, perf: speed, severe: performance)\n\n17914 Fix child caching in opacity_layer (cla: yes, perf: speed, severe: performance)\n\n18006 [fuchsia] set vsync_offset based on config file (cla: yes, severe: performance)\n\n18087 [profiling] CPU Profiling support for iOS (cla: yes, severe: performance)\n\n18132 Revert again \u201cRemove layer integral offset snapping\u201d (cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\n18164 Fix iOS platform view not deallocated (cla: yes, perf: memory, severe: performance)\n\n18225 Setup default font manager after engine created, to improve startup performance (cla: yes, perf: speed, severe: performance, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-352", "text": "18255 Restore integer snapping on OpacityLayer (cla: yes, perf: speed, severe: performance)\n\n18439 Roll buildroot to flutter/buildroot@a4f3c4d5023e080ee50596e6623d179e9c5f839b (cla: yes, perf: app size, perf: speed, severe: performance, waiting for tree to go green)\n\n18516 [profiling] Memory Profiling support for iOS (cla: yes, perf: memory, severe: performance)\n\n18829 Correct BM_ShellInitializationAndShutdown (cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\n18838 Avoid creating a vector when constructing Dart typed data objects for platform messages (cla: yes, perf: speed, severe: performance, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-353", "text": "18945 Add ui_benchmarks (affects: tests, cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\nperf: speed - 13 pull request(s)\n\n17175 Enhance image_filter_layer caching to filter a cached child (cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\n17601 Read SkSLs from asset (cla: yes, perf: speed, severe: performance)\n\n17621 Optimize static content scrolling (cla: yes, perf: speed, severe: performance)\n\n17753 [fuchsia] Enable raster cache on Fuchsia (cla: yes, perf: speed, severe: performance)\n\n17866 [web] Speedup color to css string 25% (cla: yes, perf: speed)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-354", "text": "17914 Fix child caching in opacity_layer (cla: yes, perf: speed, severe: performance)\n\n18132 Revert again \u201cRemove layer integral offset snapping\u201d (cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\n18225 Setup default font manager after engine created, to improve startup performance (cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\n18255 Restore integer snapping on OpacityLayer (cla: yes, perf: speed, severe: performance)\n\n18439 Roll buildroot to flutter/buildroot@a4f3c4d5023e080ee50596e6623d179e9c5f839b (cla: yes, perf: app size, perf: speed, severe: performance, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-355", "text": "18829 Correct BM_ShellInitializationAndShutdown (cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\n18838 Avoid creating a vector when constructing Dart typed data objects for platform messages (cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\n18945 Add ui_benchmarks (affects: tests, cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\nplatform-web - 13 pull request(s)\n\n17495 [web] Detect when the mouseup occurs outside of window (cla: yes, platform-web, waiting for tree to go green)\n\n17580 [web] Fix window.defaultRouteName (cla: yes, platform-web)\n\n17595 [web] Fix regression of pointer events on mobile browsers (cla: yes, platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-356", "text": "17615 [web] Combine duplicate platform message spy implementations (affects: tests, cla: yes, platform-web)\n\n17742 [web] Synthesize keyup event when the browser doesn\u2019t trigger a keyup (cla: yes, platform-web)\n\n17933 [web] Fix exception when getting boxes for rich text range (platform-web)\n\n17936 [web] Don\u2019t allow empty initial route (cla: yes, platform-web, waiting for tree to go green)\n\n18032 [web] Use correct shell operator to compare file limits (cla: yes, platform-web)\n\n18034 [web] First batch of unit tests for line breaker (cla: yes, platform-web)\n\n18040 [web] Add support for syncing unicode line break properties (cla: yes, platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-357", "text": "18795 [web] Line break algorithm using unicode properties (cla: yes, platform-web)\n\n18969 [web] Provide a hook to disable location strategy (cla: yes, platform-web)\n\n19586 [web][1/3] Start first batch of auto-generated (already passing) tests for line break (cla: yes, platform-web)\n\nplatform-fuchsia - 6 pull request(s)\n\n18625 Add tests & \u2013unopt to build_fuchsia_artifacts (cla: yes, platform-fuchsia)\n\n19003 Move fuchsia/scenic integration behind #define (affects: engine, cla: yes, code health, platform-fuchsia)\n\n19132 Add PlatformView support for Fuchsia (affects: engine, cla: yes, platform-fuchsia)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-358", "text": "19339 Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)\n\n19399 fuchsia: Fix profile build (cla: yes, platform-fuchsia)\n\n19500 fuchsia: Remove dead flutter_frontend_server code (cla: yes, code health, platform-fuchsia)\n\nperf: memory - 5 pull request(s)\n\n18164 Fix iOS platform view not deallocated (cla: yes, perf: memory, severe: performance)\n\n18516 [profiling] Memory Profiling support for iOS (cla: yes, perf: memory, severe: performance)\n\n18827 Record path memory usage in SkPictures (cla: yes, perf: memory)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-359", "text": "19067 Make upscaling opt in for image decoding (cla: yes, perf: memory)\n\n19283 Make Shell::NotifyLowMemoryWarning trace (cla: yes, perf: memory, waiting for tree to go green)\n\naffects: engine - 3 pull request(s)\n\n18492 fuchsia: Fix runtime_tests and shell_tests (affects: engine, bug, cla: yes, waiting for tree to go green)\n\n19003 Move fuchsia/scenic integration behind #define (affects: engine, cla: yes, code health, platform-fuchsia)\n\n19132 Add PlatformView support for Fuchsia (affects: engine, cla: yes, platform-fuchsia)\n\naffects: tests - 3 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-360", "text": "affects: tests - 3 pull request(s)\n\n17615 [web] Combine duplicate platform message spy implementations (affects: tests, cla: yes, platform-web)\n\n18945 Add ui_benchmarks (affects: tests, cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\n19339 Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)\n\ncode health - 3 pull request(s)\n\n19003 Move fuchsia/scenic integration behind #define (affects: engine, cla: yes, code health, platform-fuchsia)\n\n19219 Use FixtureTest to remove duplicate code (cla: yes, code health)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-361", "text": "19500 fuchsia: Remove dead flutter_frontend_server code (cla: yes, code health, platform-fuchsia)\n\naffects: text input - 2 pull request(s)\n\n17420 Make DPAD movement consider grapheme clusters (affects: text input, cla: yes)\n\n17509 Implement repeat filtering logic in Android Embedder (affects: text input, cla: yes, platform-android)\n\nplatform-windows - 2 pull request(s)\n\n18878 Refactor Win32FlutterWindow in preparation for UWP windowing implementation (cla: yes, platform-windows)\n\n19339 Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)\n\nbug - 1 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-362", "text": "bug - 1 pull request(s)\n\n18492 fuchsia: Fix runtime_tests and shell_tests (affects: engine, bug, cla: yes, waiting for tree to go green)\n\nbug (regression) - 1 pull request(s)\n\n18193 Add fullscreen padding workarounds to v2 android embedding (bug (regression), cla: yes, platform-android)\n\ncrash - 1 pull request(s)\n\n19280 skip ios safari tests on felt level (cla: yes, crash)\n\nperf: app size - 1 pull request(s)\n\n18439 Roll buildroot to flutter/buildroot@a4f3c4d5023e080ee50596e6623d179e9c5f839b (cla: yes, perf: app size, perf: speed, severe: performance, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-363", "text": "platform-linux - 1 pull request(s)\n\n19339 Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)\n\nplatform-macos - 1 pull request(s)\n\n19339 Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)\n\nMerged PRs by labels for flutter/plugins\n\nsubmit queue - 3 pull request(s)\n\n831 [google_maps_flutter] add zoom controls property (cla: yes, feature, submit queue)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-364", "text": "2634 [google_sign_in] Add serverAuthCode attribute to google_sign_in_platform_interface (cla: yes, submit queue, waiting for test harness)\n\n2743 reference apple sign in plugin from google sign in plugin (cla: yes, submit queue)\n\nwaiting for test harness - 3 pull request(s)\n\n2634 [google_sign_in] Add serverAuthCode attribute to google_sign_in_platform_interface (cla: yes, submit queue, waiting for test harness)\n\n2649 [google_sign_in_web] Ensure not-signed-in users are returned as null. (cla: yes, waiting for test harness)\n\n2817 [image_picker_for_web] Remove android directory. (cla: yes, waiting for test harness)\n\nin review - 2 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-365", "text": "in review - 2 pull request(s)\n\n2116 [google_sign_in] Add ability to return serverAuthCode (cla: yes, in review)\n\n2755 [image_picker] fixes for iOS which doesn\u2019t present camera/albums with more complex navigation (cla: yes, in review)\n\nbugfix - 1 pull request(s)\n\n2757 [url_launcher] Initialize previousAutomaticSystemUiAdjustment in launch (bugfix, cla: yes)\n\ndocumentation - 1 pull request(s)\n\n2766 [url_launcher] update README with enableJavaScript info (cla: yes, documentation, webview)\n\nfeature - 1 pull request(s)\n\n831 [google_maps_flutter] add zoom controls property (cla: yes, feature, submit queue)\n\nwebview - 1 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-366", "text": "webview - 1 pull request(s)\n\n2766 [url_launcher] update README with enableJavaScript info (cla: yes, documentation, webview)\n\nAll merged pull requests\n\nMerged PRs in flutter/flutter\n\nThere were 1526 pull requests.\n\n37145 Use state value in DropdownButtonFieldForm (cla: yes, f: material design, framework, passed first triage)\n\n38355 Add a diagnostic message in analyze.dart (a: tests, cla: yes, framework, team, team: infra)\n\n41299 Fixed preferredSize getter in TabBar (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-367", "text": "42100 Run secondary animation of previous route when using pushReplacement(\u2026 (a: animation, a: quality, cla: yes, f: routes, framework, severe: API break, waiting for tree to go green)\n\n42703 fixes sliver list child layout offset calculation (a: quality, cla: yes, customer: crowd, f: scrolling, framework, waiting for tree to go green)\n\n43457 Add macOS to TargetPlatform (a: desktop, cla: yes, framework, platform-mac)\n\n43547 Add Density API to ThemeData, implement for buttons. (cla: yes, f: material design, framework, team)\n\n43696 Avoid using FlutterError.fromParts when possible (a: tests, cla: yes, f: cupertino, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-368", "text": "44271 Support URL tunnelling (pass dwds UrlEncoder through to editors via daemon) (cla: yes, tool)\n\n44283 Fixing SliverOverlapAbsorber & SliverOverlapInjector child property (a: quality, cla: yes, d: examples, f: scrolling, framework, severe: API break, team, team: gallery, waiting for tree to go green)\n\n44471 Performance Improvement for SliverFillRemaining (a: quality, cla: yes, f: scrolling, framework, severe: performance, waiting for tree to go green)\n\n44474 Pre-Submit Tryjobs for Flutter Gold (a: fidelity, a: images, a: quality, a: tests, cla: yes, framework, team)\n\n44628 CupertinoDatepicker time/dateTime constraints (cla: yes, f: cupertino, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-369", "text": "44631 Improve MouseTracker lifecycle: Move checks to post-frame (a: desktop, a: tests, cla: yes, f: cupertino, f: gestures, f: material design, framework, severe: API break, waiting for tree to go green)\n\n44682 Add textScaleFactor to SelectableText (cla: yes, f: material design, framework, waiting for tree to go green)\n\n44856 gen_l10n.dart tool testing (a: internationalization, cla: yes, d: examples, f: cupertino, f: material design, team)\n\n44923 iOS smart quote/dash configuration (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-ios, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-370", "text": "44930 Navigator 2.0: Refactor the imperative api to continue working in the new navigation system (cla: yes, d: examples, f: cupertino, f: material design, f: routes, framework, team, team: gallery, waiting for tree to go green)\n\n44971 Add clip behaviour to Container (cla: yes, framework, waiting for tree to go green)\n\n45019 Keyboard scrolling of Scrollable (a: desktop, cla: yes, framework)\n\n45067 Set modal bottom sheet barrier color (cla: yes, f: material design, framework)\n\n45074 Set track color in Cupertino Switch and Adaptive Switch (cla: yes, f: cupertino, f: material design, framework)\n\n45079 Step 1 of 4: Make AlertDialog scrollable through opt-in AlertDialog.scrollable parameter (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-371", "text": "45102 Overridable default platform key bindings (cla: yes, f: cupertino, f: material design, framework)\n\n45130 Revert \u201cEnable iOS platform views for Flutter Gallery\u201d (cla: yes, d: examples, team, team: gallery, waiting for tree to go green)\n\n45175 implicit-casts:false in flutter_driver (a: accessibility, a: tests, cla: yes, framework)\n\n45241 implicit-casts:false in flutter_localizations (a: internationalization, cla: yes, f: material design)\n\n45248 Resume isolate before terminating tests to prevent flutter_tester leaks in integration tests (a: tests, cla: yes, tool)\n\n45267 Fix flutter run cache (cla: yes, tool)\n\n45318 serve source maps in release runner (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-372", "text": "45318 serve source maps in release runner (cla: yes, tool)\n\n45325 Fix comment in navigator.dart (cla: yes, framework, waiting for tree to go green)\n\n45327 Automatically caching viewport (cla: yes, framework)\n\n45354 iOS UITextInput autocorrection prompt (cla: yes, f: cupertino, f: material design, framework)\n\n45360 Suggest GitHub template when flutter tool crashes (a: triage improvements, cla: yes, team, tool)\n\n45373 License update (a: accessibility, a: internationalization, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\n45411 Add a FlutterDriver screenshot test to device lab. (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-373", "text": "45417 Fix run_release_test flakiness (a: tests, cla: yes, team, team: flakes, waiting for tree to go green)\n\n45431 Support \u2013fast-start for Android applications (as an opt-in) (cla: yes, d: examples, team, tool)\n\n45432 Use RenderSliverPadding to inset SliverFillViewport (cla: yes, framework)\n\n45438 Handle bare modifier flags on macOS (a: desktop, cla: yes, framework, platform-mac)\n\n45501 implicit-casts:false in flutter/lib/src/animation (cla: yes, framework)\n\n45502 implicit-casts:false in flutter/lib/src/cupertino (cla: yes, f: cupertino, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-374", "text": "45503 implicit-casts:false in flutter/lib/src/foundation (cla: yes, framework)\n\n45504 implicit-casts:false in flutter/lib/src/gestures (cla: yes, framework)\n\n45530 Implement screenshot test for flutter web. (a: tests, cla: yes, platform-web, team, tool)\n\n45531 Add additional properties callback in Inspector Serialization Delegate (cla: yes, framework)\n\n45567 implicit-casts:false in flutter/lib/src/material (cla: yes, f: material design, framework)\n\n45568 Register memory info command on vmservice for Android devices (cla: yes, tool)\n\n45572 Roll engine c89ac6347b7e..298e053bdc04 (3 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-375", "text": "45579 Add integration test for transitive plugin dependencies (cla: yes, team, waiting for tree to go green)\n\n45580 SliverOffstage Fix (cla: yes, f: scrolling, framework, waiting for tree to go green)\n\n45582 SliverVisibility (cla: yes, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n45586 Roll engine 298e053bdc04..05f8c8b24b92 (5 commits) (autoroller: commit, cla: yes)\n\n45588 Re-land \u201cAdd option to delay rendering the first frame (#45135)\u201d (a: tests, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-376", "text": "45597 Roll engine 05f8c8b24b92..96cba6c92a8a (5 commits) (autoroller: commit, cla: yes)\n\n45598 Implicit scrolling for pageview (cla: yes, framework)\n\n45603 Api Samples and Diagrams for 10 more classes / functions (cla: yes, d: api docs, d: examples, framework, from: study)\n\n45608 Retry Xcode builds if they fail due to concurrent builds running (a: build, cla: yes, tool)\n\n45616 Roll engine 96cba6c92a8a..e136d637a873 (2 commits) (autoroller: commit, cla: yes)\n\n45621 implicit-casts:false in flutter/lib/src/painting (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-377", "text": "45622 implicit-casts:false in flutter/lib/src/physics (cla: yes, framework)\n\n45628 [flutter_tool] Crash less when git fails during \u2018version\u2019 (cla: yes, tool)\n\n45633 update-packages run (cla: yes, team)\n\n45642 Roll engine e136d637a873..27fa60793bcb (1 commits) (autoroller: commit, cla: yes)\n\n45644 Add macOS tests (Part 1) (a: tests, cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n45646 Add variant testing to testWidgets (a: tests, cla: yes, framework)\n\n45648 Add more documentation around layers. (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-378", "text": "45649 [flutter_tool] add a vmservice API for hot ui requests (cla: yes, framework, tool)\n\n45652 Sample driver test working on Fuchsia (cla: yes, d: examples, team, tool)\n\n45654 Fixed incorrect offsetting when applying ShaderMasks (a: quality, cla: yes, framework, waiting for tree to go green, will affect goldens)\n\n45658 Clean up some things I noticed while doing another change (cla: yes, framework, waiting for tree to go green)\n\n45659 Roll engine 27fa60793bcb..5250d6315e7a (4 commits) (autoroller: commit, cla: yes)\n\n45663 Roll engine 5250d6315e7a..2c0eee43923f (2 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-379", "text": "45667 Roll engine 2c0eee43923f..e3e5f8dabc2e (1 commits) (autoroller: commit, cla: yes)\n\n45673 Cleanups to resident runner and flutter device classes (cla: yes, tool)\n\n45675 Roll engine e3e5f8dabc2e..18d74fe45b9c (1 commits) (autoroller: commit, cla: yes)\n\n45689 Roll engine 18d74fe45b9c..fad1b23c42b9 (1 commits) (autoroller: commit, cla: yes)\n\n45698 Revert \u201cTrack and use fallback TextAffinity for null affinity platform TextSelections.\u201d (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-380", "text": "45704 Provide debug output for Gold uploads on post-submit (a: error message, a: tests, cla: yes, framework)\n\n45708 Add Sliver video to RenderSliver (cla: yes, framework, waiting for tree to go green)\n\n45710 Set the LANG when invoking cocoapods (cla: yes, team, tool)\n\n45712 Feature: ExpandIcon should use the size parameter (cla: yes, f: material design, framework)\n\n45713 fix issues with incremental compiler support (cla: yes, tool)\n\n45716 Print clipBehavior while debugging ClipXXXLayer (cla: yes, framework)\n\n45717 Fix parameter name: handlePointerEvent (cla: yes, framework)\n\n45718 Relicense Shrine demo to match rest of repository (cla: yes, d: examples, team, team: gallery)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-381", "text": "45720 implicit-casts:false in flutter/lib/src/rendering (cla: yes, framework)\n\n45721 implicit-casts:false in flutter/lib/src/scheduler (cla: yes, framework)\n\n45722 implicit-casts:false in flutter/lib/src/semantics (a: accessibility, cla: yes, framework)\n\n45723 implicit-casts:false in flutter/lib/src/services (cla: yes, framework)\n\n45725 Roll engine fad1b23c42b9..35937eb31240 (3 commits) (autoroller: commit, cla: yes)\n\n45726 Eliminate commented-out code (cla: yes, framework)\n\n45728 implicit-casts:false in flutter/lib/src/widgets (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-382", "text": "45733 Make all of the driver interface public. (a: tests, cla: yes, framework, tool)\n\n45739 [flutter_tool] restructure ProjectFileInvalidator to no longer directly depend on context (cla: yes, tool)\n\n45740 Do not delete output directory during flutter build ios-framework (a: existing-apps, cla: yes, tool)\n\n45741 Roll engine 35937eb31240..4bdd15cd5438 (5 commits) (autoroller: commit, cla: yes)\n\n45743 Android log reader reads any recent logs (cla: yes, tool)\n\n45746 Roll engine 4bdd15cd5438..6c605f8a9624 (3 commits) (autoroller: commit, cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-383", "text": "45749 Fix buildCounter returns a widget when set to return null. (cla: yes, f: material design, framework)\n\n45750 Remove canTransitionFrom override from Material/CupertinoPageRoute (cla: yes, f: cupertino, f: material design, framework)\n\n45786 prevent VsCode from crashing on malformed packages.json file (cla: yes, tool)\n\n45787 implicit-casts:false in dev (a: accessibility, cla: yes, f: material design, team)\n\n45805 implicit-casts:false in examples (cla: yes, d: examples, f: cupertino, f: material design, team, team: gallery)\n\n45817 Roll engine 6c605f8a9624..8672e79af873 (2 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-384", "text": "45833 Add missing indentation to assets-images example in pubspec.yaml, fixing whitespace issue (cla: yes, team, tool, waiting for tree to go green)\n\n45835 Update iOS build signing error message (cla: yes, tool)\n\n45877 Always re-copy Framework/podspec for iOS module project (cla: yes, team, tool)\n\n45914 Update spline calculations (cla: yes, tool)\n\n45916 Revert \u201cRoll engine 6c605f8a9624..8672e79af873 (2 commits)\u201d (cla: yes, engine)\n\n45917 flutter_tools: Remove unused //ignore comments; change flutter-specific ones to \u201cignore_for_flutter\u201d (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-385", "text": "45918 Roll engine 6c605f8a9624..8672e79af873 (2 commits) (autoroller: commit, cla: yes)\n\n45920 update macOS configuration settings (cla: yes, tool)\n\n45924 Revert \u201cMake all of the driver interface public.\u201d (a: tests, cla: yes, framework, tool)\n\n45925 Throwing when goldctl cannot authorize/initialize (a: tests, cla: yes, framework, waiting for tree to go green)\n\n45934 use package-scheme imports for generated web entrypoint (cla: yes, tool)\n\n45937 Handle case where lastLogcatTimestamp is null (cla: yes, tool)\n\n45939 Revert \u201cRe-land \u201cAdd option to delay rendering the first frame (#45135)\u201d\u201d (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-386", "text": "45940 Deprecate UpdateLiveRegionEvent (a: accessibility, cla: yes, framework, severe: API break, waiting for tree to go green)\n\n45941 Re-land \u201cAdd option to delay rendering the first frame (#45135)\u201d (a: tests, cla: yes, framework, severe: API break, waiting for tree to go green)\n\n45942 RenderProxySliver (cla: yes, f: scrolling, framework, severe: new feature, team, waiting for tree to go green)\n\n45943 Fix null event crash in TapGestureRecognizer (cla: yes, framework, waiting for tree to go green)\n\n45944 Update PULL_REQUEST_TEMPLATE.md (cla: yes)\n\n45945 Simplify logging code in flutter_driver (a: tests, cla: yes, framework, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-387", "text": "45950 SliverFadeTransition (a: animation, cla: yes, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n45951 Flutter Web Driver Support (a: tests, cla: yes, d: examples, platform-web, t: flutter driver, team, team: gallery, tool)\n\n45952 Move dartdocs to devicelab vm. (cla: yes, team)\n\n45953 fix license lint (cla: yes, tool)\n\n45962 v1.12.13+hotfix.1 cherry-picks (cla: yes, engine, framework)\n\n45965 Revert \u201cupdate macOS configuration settings\u201d (cla: yes, tool)\n\n45966 Reland: Update macOS configuration settings (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-388", "text": "45977 Start fixing docs (a: accessibility, cla: yes, d: api docs, f: cupertino, f: material design, framework)\n\n45985 [Driver] correction of data returned by getWidgetDiagnostics (a: tests, cla: yes, framework, waiting for tree to go green)\n\n45986 Roll engine 8672e79af873..faa11214c09b (7 commits) (autoroller: commit, cla: yes)\n\n45996 Move technical_debt_cost to use a cloud vm. (cla: yes, team)\n\n45997 Add comments to package scheme fix (cla: yes, tool)\n\n45998 add printTrace when vscode package.json parsing fails (cla: yes, tool)\n\n45999 Remove record/replay/bug report functionality from the tool (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-389", "text": "46002 Roll engine faa11214c09b..1a96087747ac (1 commits) (autoroller: commit, cla: yes)\n\n46003 Fix symbol refs in the dynamic color doc (cla: yes, f: cupertino, framework)\n\n46006 [flutter_tool] Make Device.dispose() abstract (cla: yes, tool, waiting for tree to go green)\n\n46008 improve resetChanges() dartdoc (cla: yes, tool, waiting for tree to go green)\n\n46010 Made the behavior for caching large images modular. (cla: yes, framework)\n\n46011 [flutter_tool] Do not continue with a no-op \u2018upgrade\u2019 (cla: yes, tool)\n\n46014 Update dartdoc to 0.29.2 (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-390", "text": "46023 Roll engine 1a96087747ac..617938024315 (5 commits) (autoroller: commit, cla: yes)\n\n46035 Ensure that docker tag is legal (cla: yes, team)\n\n46037 Re-enable hostonly tests on non-master branches (cla: yes)\n\n46040 Enable Android embedding v2 on the beta, dev and stable channel (cla: yes, tool, waiting for tree to go green)\n\n46043 Roll engine 617938024315..90e28c027c0b (3 commits) (autoroller: commit, cla: yes)\n\n46049 Roll engine 90e28c027c0b..3e6d6bc612fd (1 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-391", "text": "46055 v1.12.13+hotfix.2 cherry-picks (cla: yes, engine, framework, team, tool)\n\n46059 Roll engine 3e6d6bc612fd..1cdfc99314df (1 commits) (autoroller: commit, cla: yes)\n\n46081 Update SliverPersistentHeader docs (cla: yes, framework)\n\n46083 Add a VisualDensity manual test (cla: yes, f: material design, framework, team, tool)\n\n46090 Add visual density to the gallery options (cla: yes, d: examples, team, team: gallery)\n\n46091 Add visualDensity to checkbox, radio, icon button, and chip. (cla: yes, f: material design, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-392", "text": "46092 Roll engine 1cdfc99314df..07aab98212cb (1 commits) (autoroller: commit, cla: yes)\n\n46095 Roll engine 07aab98212cb..fdaa7cf12175 (2 commits) (autoroller: commit, cla: yes)\n\n46100 only run codecov on master (cla: yes, waiting for tree to go green)\n\n46101 Remove flutterBuildPluginAsAarFeature flag (cla: yes, tool)\n\n46103 Name the docker_builder shard (cla: yes, waiting for tree to go green)\n\n46106 Remove mediaQuery bottom padding when the tab scaffold has an opaque tabBar (cla: yes, f: cupertino, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-393", "text": "46109 [flutter_tool] Print version info on a no-op upgrade. (cla: yes, tool)\n\n46113 Only schedule mouse tracking callback when there is a mouse (a: desktop, cla: yes, f: gestures, framework, waiting for tree to go green)\n\n46115 Adds floatLabelBehavior to InputDecoration (cla: yes, f: material design, framework, waiting for tree to go green)\n\n46121 Normalizes all of the \u201cSee also\u201d blocks in comments. (a: accessibility, cla: yes, f: cupertino, f: material design, framework)\n\n46124 Dispatch hover events to PlatformViewController (cla: yes, framework)\n\n46130 Add bitcode and architectures to App.framework build ios framework command (a: existing-apps, cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-394", "text": "46138 Revert \u201cSupport \u2013fast-start for Android applications (as an opt-in)\u201d (cla: yes, d: examples, team, tool)\n\n46140 [flutter_tool] Reland: support \u2013fast-start for Android applications (as an opt-in) (cla: yes, d: examples, team, tool)\n\n46168 Fixes Focus and FocusScope\u2019s assignment of canRequestFocus. (cla: yes, framework)\n\n46174 Manual roll engine fdaa7cf12175..ee4c2a53c7c6 (8 commits) (cla: yes, engine)\n\n46178 Roll engine fdaa7cf12175..ee4c2a53c7c6 (8 commits) (autoroller: commit, cla: yes)\n\n46179 fix release web builds where the target file is not under lib (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-395", "text": "46181 Mitigation for current tool test skips on CI (cla: yes, team, tool)\n\n46183 fix global key error (a: tests, cla: yes, f: cupertino, f: material design, framework, severe: API break, team, waiting for tree to go green)\n\n46184 Memory test on scrolling large images quickly (a: tests, cla: yes, perf: memory, severe: performance, team, waiting for tree to go green)\n\n46194 Roll engine ee4c2a53c7c6..0506c65f5915 (5 commits) (autoroller: commit, cla: yes)\n\n46200 Mark unused but desired private constructors as such (a: accessibility, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-396", "text": "46203 Reset the global variable before running a test. (cla: yes, framework)\n\n46204 v1.12.13+hotfix.3 cherry-picks (cla: yes, engine, framework, team, tool)\n\n46206 standardize target platform override behavior in tool and update gallery to support it (cla: yes, d: examples, team, team: gallery, tool)\n\n46210 prevent accidental calls to io.exit when asserts are active. (cla: yes, tool)\n\n46211 Roll engine 0506c65f5915..29998f07faf9 (6 commits) (autoroller: commit, cla: yes)\n\n46213 Detect and dump flaky LineMetrics test data (a: tests, cla: yes, framework, team: flakes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-397", "text": "46218 Roll engine 29998f07faf9..fd240d0d532a (2 commits) (autoroller: commit, cla: yes)\n\n46220 Roll engine fd240d0d532a..ed2d00ba02a4 (1 commits) (autoroller: commit, cla: yes)\n\n46241 Roll engine ed2d00ba02a4..5f6fa92a8fd3 (2 commits) (autoroller: commit, cla: yes)\n\n46242 Fix analytics regression (cla: yes, tool, waiting for tree to go green)\n\n46245 implicit-casts:false in flutter/test (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-398", "text": "46247 Add gen_l10n sorting tests (a: internationalization, cla: yes, severe: regression, team)\n\n46249 Roll engine 5f6fa92a8fd3..e7b69ced2e24 (1 commits) (autoroller: commit, cla: yes)\n\n46250 Add helpful message about how to use localizationsDelegates list (a: internationalization, cla: yes, team)\n\n46251 Move localization executables to bin folder (a: internationalization, cla: yes, f: cupertino, f: material design, framework, team)\n\n46252 Fix docker tag during upload as well (cla: yes, team)\n\n46265 Avoid NaN for shrinkwrapping viewports (cla: yes, framework)\n\n46281 Revert \u201cAdd a FlutterDriver screenshot test to device lab.\u201d (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-399", "text": "46282 Allow plugins that don\u2019t support the Android platform (cla: yes, team, tool)\n\n46285 Revert changes to TestPointer; MouseTracker no longer relies on Add events (a: tests, cla: yes, framework, waiting for tree to go green)\n\n46291 Add buildNumber param to \u201cflutter build aar\u201d command (cla: yes, team, tool, waiting for tree to go green)\n\n46569 Roll engine e7b69ced2e24..5b870a218f15 (3 commits) (autoroller: commit, cla: yes)\n\n46572 Roll engine 5b870a218f15..ff6fa47659c0 (1 commits) (autoroller: commit, cla: yes)\n\n46580 Fix typo in gradle_utils exit message (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-400", "text": "46585 Roll engine ff6fa47659c0..4beaa696fc59 (1 commits) (autoroller: commit, cla: yes)\n\n46601 [flutter_tools] Add violating plugin name to validation errors (cla: yes, tool, waiting for tree to go green)\n\n46612 Roll engine 4beaa696fc59..d9f856510d16 (1 commits) (autoroller: commit, cla: yes)\n\n46615 Try re-enabling all these tests. (cla: yes, team, tool, waiting for tree to go green)\n\n46617 [flutter_tool] Handling of certain unrecoverable filesystem errors (cla: yes, tool, waiting for tree to go green)\n\n46620 Reland \u201cAdd a FlutterDriver screenshot test to device lab. #45411\u201d (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-401", "text": "46623 Fix platform-specif test logic. (cla: yes, team, waiting for tree to go green)\n\n46626 Remove unused observer and raise the waiting time (a: tests, cla: yes, perf: memory, severe: performance, team, waiting for tree to go green)\n\n46627 Roll engine d9f856510d16..a614c0a2d45f (4 commits) (autoroller: commit, cla: yes)\n\n46629 Revert \u201cMade the behavior for caching large images modular.\u201d (cla: yes, framework)\n\n46630 Revert \u201cprevent accidental calls to io.exit when asserts are active.\u201d (cla: yes, tool)\n\n46632 v1.12.13+hotfix.4 cherry-picks (cla: yes, engine, framework, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-402", "text": "46639 [flutter_tool] Prevent accidental calls to io.exit in unit tests (cla: yes, tool)\n\n46640 install goldctl in docker build (cla: yes, team, waiting for tree to go green)\n\n46643 [flutter_tool] Ensure dependency constraint for templates created with a driver test are correct (cla: yes, tool)\n\n46645 Roll engine a614c0a2d45f..b9080c92b98a (1 commits) (autoroller: commit, cla: yes)\n\n46647 Add UniqueKey documentation regarding const constructor (cla: yes, d: api docs, framework)\n\n46648 Fix InputDecorator.isDense typo from true -> false (cla: yes, d: api docs, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-403", "text": "46655 Roll engine b9080c92b98a..2805da9e5dd2 (4 commits) (autoroller: commit, cla: yes)\n\n46657 Roll engine 2805da9e5dd2..12bf95fd49b7 (2 commits) (autoroller: commit, cla: yes)\n\n46660 s/v-sync/Vsync/g (a: tests, cla: yes, framework, waiting for tree to go green)\n\n46661 Add optional endian argument for WriteBuffer/ReadBuffer (cla: yes, framework, waiting for tree to go green)\n\n46667 Roll engine 12bf95fd49b7..140818a71532 (2 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-404", "text": "46685 Add enableDrag configuration for showModalBottomSheet (cla: yes, f: material design, framework)\n\n46688 Use FlutterLocalFileComparator when user permission denied on Cirrus (a: tests, cla: yes, framework, team, team: flakes, team: infra)\n\n46695 Revert \u201cRoll engine 12bf95fd49b7..140818a71532 (2 commits)\u201d (cla: yes, engine)\n\n46708 re-enable build runner tests for tools (cla: yes, team)\n\n46717 Add time to development benchmark for android (cla: yes, team)\n\n46719 Change video_demo slightly so it works on web. (cla: yes, d: examples, team, team: gallery, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-405", "text": "46720 Pass _caretPrototype to prevent cache miss (a: text input, cla: yes, framework, perf: speed, severe: performance, team)\n\n46725 More clarifications on mutating Widget\u2019s children (cla: yes, documentation, framework, waiting for tree to go green)\n\n46726 v1.12.13+hotfix.5 cherry-picks (cla: yes, engine, framework, team, tool)\n\n46729 fix NPE in web server device (cla: yes, tool)\n\n46741 v1.12.13+hotfix.6 cherry-picks (#45914) (cla: yes, engine, framework, team, tool)\n\n46748 Check and give execute permission to Gradle if needed (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-406", "text": "46787 Update require.js artifact location (cla: yes, tool, waiting for tree to go green)\n\n46796 remove test_api dependency from flutter_tools/base/io (cla: yes, tool)\n\n46801 Remove accentTextTheme from sliders and chips, tests and docs (cla: yes, f: material design, framework)\n\n46814 Roll engine 12bf95fd49b7..db60ebc6325c (20 commits) (autoroller: commit, cla: yes)\n\n46820 Enable web for some of the golden tests (a: tests, cla: yes, f: material design, framework, platform-web, tool)\n\n46822 Forward device vmservice port to iOS launch arguments (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-407", "text": "46835 Skip plugins that don\u2019t have an android impl when building AARs (cla: yes, tool, waiting for tree to go green)\n\n46838 Check Xcode build setting FULL_PRODUCT_NAME for the name of the built app during flutter run (cla: yes, platform-ios, t: xcode, team, tool, waiting for tree to go green)\n\n46846 Update Windows shard RAM & CPU values (cla: yes)\n\n46897 Avoid exceptions for control flow (cla: yes, framework, waiting for tree to go green)\n\n46900 mark widget == and hashCode as nonVirtual (cla: yes, framework, waiting for tree to go green)\n\n46907 Fix typos in DefaultTabController.of documentation (cla: yes, d: api docs, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-408", "text": "46909 [flutter_tool] fix NPE in daemon caused by returning null connection info from experimental web runner (cla: yes, tool)\n\n46913 [flutter_tool] remove ability to disable Fingerprinter with DISABLE_FLUTTER_BUILD_CACHE env variable (cla: yes, tool)\n\n46916 [flutter_tool] experimental resident web runner is not debuggable (cla: yes, tool)\n\n46923 Step 2 of 2: Remove Flutter\u2019s FloatingActionButton dependency on ThemeData accent properties (cla: yes, f: material design, framework, work in progress; do not review)\n\n46924 New benchmark to measure performance of animations after removing a BackdropFilter. (cla: yes, team)\n\n46925 Revert \u201cCheck Xcode build setting FULL_PRODUCT_NAME for the name of the built app during flutter run\u201d (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-409", "text": "46928 Check Xcode build setting FULL_PRODUCT_NAME for the name of the built app during flutter run (cla: yes, platform-ios, t: xcode, team, tool, waiting for tree to go green)\n\n46931 Only set flutter run usage values for targeted device platforms (cla: yes, tool, waiting for tree to go green)\n\n46933 Roll engine db60ebc6325c..e0e0ac0a6802 (23 commits) (autoroller: commit, cla: yes)\n\n46937 Add newlines between plugin names in GitHub template (a: triage improvements, cla: yes, tool)\n\n46995 Check for NaN in sliver constraints, improve error messaging (cla: yes, framework)\n\n46999 Revert \u201cflutter_tools: Remove unused //ignore comments; change flutter-specific ones to \u201cignore_for_flutter\u201d\u201d (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-410", "text": "47005 Roll engine e0e0ac0a6802..bdd4e4d9488e (5 commits) (autoroller: commit, cla: yes)\n\n47006 gen_l10n localizations date formatting (simple messages) (a: internationalization, cla: yes, severe: new feature, team, waiting for tree to go green)\n\n47010 fix new test (cla: yes, team)\n\n47014 Add support for getting a string representation of the LayerTree (a: tests, cla: yes, framework)\n\n47015 Change meaning of a plugin not supporting the android platform (cla: yes, team, tool, waiting for tree to go green)\n\n47017 Update internal dartdoc snippet documentation (cla: yes, team, waiting for tree to go green)\n\n47026 remove duplicative checks (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-411", "text": "47027 Fix sliver geometry assert (cla: yes, f: cupertino, framework)\n\n47059 [flutter_tool] ensure extraGenSnapshotArguments are forwarded to gen_snapshot from Android builds (cla: yes, tool)\n\n47151 Fix CupertinoContextMenuAction color behavior (cla: yes, f: cupertino, framework)\n\n47155 [flutter_tool] Add messaging to \u2013fast-start application (cla: yes, d: examples, team)\n\n47157 [flutter_tool] Print a helpful message on some mDNS failures (cla: yes, tool)\n\n47159 Remove space from license (cla: yes, team)\n\n47160 Fix isDense default for DropdownButtonFormField (cla: yes, f: material design, framework, severe: regression)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-412", "text": "47174 Remove direct usage of linter in the flutter_tools (cla: yes, tool)\n\n47177 Call setEditingState when text changes. (a: tests, a: text input, cla: yes, f: material design, framework, severe: API break)\n\n47181 fix imports to unawaited (cla: yes, tool, waiting for tree to go green)\n\n47187 Fix androidSdk NPE (cla: yes, tool)\n\n47199 implicit-casts: false (a: internationalization, a: tests, cla: yes, framework, team, tool, waiting for tree to go green)\n\n47223 Roll engine bdd4e4d9488e..500f9cedf652 (34 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-413", "text": "47242 Re-enable \u2013no-link-platform for JIT mode (cla: yes, tool)\n\n47243 Pipe through test-randomize-ordering-seed (cla: yes, tool, waiting for tree to go green)\n\n47246 Upgrade dartdoc to 0.29.3. (cla: yes, team)\n\n47249 Let material ThemeData dictate brightness if cupertinoOverrideTheme.brightness is null (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n47254 Simplify Chip slightly (cla: yes, f: material design, framework)\n\n47256 Fix output for golden files in a subdirectory (a: tests, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-414", "text": "47260 Correct name typo in DecorationImage error string (cla: yes, framework, waiting for tree to go green)\n\n47264 Revert \u201cCheck Xcode build setting FULL_PRODUCT_NAME for the name of the built app during flutter run\u201d (cla: yes, team, tool)\n\n47266 Check Xcode build setting FULL_PRODUCT_NAME for the name of the built app during flutter run (cla: yes, platform-ios, t: xcode, team, tool)\n\n47269 [flutter_tool] Refactor Logger and Terminal to (mostly) no longer depend directly on context (cla: yes, tool)\n\n47273 Adds shadowColor property to the Card widget (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-415", "text": "47323 Roll engine 500f9cedf652..c327cae7ab5e (9 commits) (autoroller: commit, cla: yes)\n\n47348 [flutter_tool] Improve iOS mDNS failure error message (cla: yes, tool, waiting for tree to go green)\n\n47353 Revert \u201cSimplify Chip slightly\u201d (cla: yes, f: material design, framework, waiting for tree to go green)\n\n47359 Is executable doesn\u2019t mean a+x (cla: yes, tool)\n\n47362 Roll engine c327cae7ab5e..866b158c4b13 (2 commits) (autoroller: commit, cla: yes)\n\n47364 Make tab\u2019s icon margin configurable (Fix #47363) (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-416", "text": "47369 Build iOS frameworks with relative output path (a: existing-apps, cla: yes, platform-ios, team, tool, waiting for tree to go green)\n\n47373 Revert \u201ciOS UITextInput autocorrection prompt\u201d (cla: yes, f: cupertino, f: material design, framework)\n\n47374 Roll engine 866b158c4b13..1e1f37107a07 (3 commits) (autoroller: commit, cla: yes)\n\n47379 Refactor SliverFillRemaining (a: quality, a: tests, cla: yes, f: scrolling, framework, team, waiting for tree to go green)\n\n47387 Stopped increasing the cache size to accomodate large images. (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-417", "text": "47389 Revert \u201cFlutter Web Driver Support\u201d (a: tests, cla: yes, d: examples, framework, team, team: gallery, tool)\n\n47390 Revert \u201cFix sliver geometry assert\u201d (cla: yes, f: cupertino, framework)\n\n47391 Fix a typo in RenderBox\u2019s docs (cla: yes, d: api docs, framework)\n\n47395 Revert \u201cUse platform appropriate filepaths\u201d (cla: yes, tool, waiting for tree to go green)\n\n47397 Revert \u201cCall setEditingState when text changes.\u201d (a: tests, cla: yes, f: material design, framework)\n\n47398 [flutter_tools] Ensure that global variables are easily identifiable (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-418", "text": "47403 Trigger MouseRegion.toHover only on hover events (a: desktop, cla: yes, framework, team, waiting for tree to go green)\n\n47419 support endless recorder for timeline (cla: yes, tool, waiting for tree to go green)\n\n47428 Revert \u201cimplicit-casts: false\u201d (a: internationalization, a: tests, cla: yes, f: material design, framework, team, tool)\n\n47429 Roll engine 1e1f37107a07..0f90e6546bf3 (14 commits) (autoroller: commit, cla: yes)\n\n47431 Reland implicit-casts: false (a: internationalization, a: tests, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-419", "text": "47442 Roll engine 0f90e6546bf3..472197a8e932 (3 commits) (autoroller: commit, cla: yes)\n\n47457 Allow IconButton to have smaller sizes (cla: yes, f: material design, framework)\n\n47464 Reland text state (a: tests, cla: yes, f: material design, framework, waiting for tree to go green)\n\n47467 Added a code sample for replacing the image cache. (cla: yes, framework)\n\n47470 Flutter Web Driver Support (a: tests, cla: yes, d: examples, framework, platform-web, team, team: gallery, tool, waiting for tree to go green)\n\n47472 Fix requestExistingInputState response (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-420", "text": "47473 comments (cla: yes, tool, waiting for tree to go green)\n\n47476 fix initial routes do not run secondary animation when pops (a: animation, cla: yes, f: routes, framework, waiting for tree to go green)\n\n47483 Handle plural gen_l10n regular placeholders and DateTime placeholders (a: internationalization, cla: yes, team)\n\n47484 Reland \u201cFix sliver geometry assert\u201d (cla: yes, f: cupertino, framework)\n\n47489 Support for ImageFiltered widget to apply ImageFilter to children. (cla: yes, framework, waiting for tree to go green)\n\n47492 Add test of scrolling competition (cla: yes, f: gestures, f: scrolling, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-421", "text": "47503 Roll engine 472197a8e932..854d5f8e9e74 (20 commits) (autoroller: commit, cla: yes)\n\n47521 Add brightness to CupertinoNavigationBar (fixes #46216) (cla: yes, f: cupertino, framework)\n\n47522 Use system default find in update_dart_sdk.sh (cla: yes, tool, waiting for tree to go green)\n\n47523 Add Border.symmetric constructor (cla: yes, framework, waiting for tree to go green)\n\n47547 Add CatmullRomCurve and CatmullRomSpline (cla: yes, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-422", "text": "47549 Roll engine 854d5f8e9e74..33813929e3cd (10 commits) (autoroller: commit, cla: yes)\n\n47551 Gold Pre-submit flow for contributors without permissions (a: error message, a: tests, cla: yes, framework, team, team: infra, waiting for tree to go green)\n\n47552 Added showCheckboxColumn parameter to DataTable and PaginatedDataTable (cla: yes, f: material design, framework)\n\n47554 Disable most screenshot tests for web until we understand the flakes. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n47556 flutter build ios-framework generate Flutter.podspec (a: existing-apps, cla: yes, platform-ios, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-423", "text": "47565 Roll engine 33813929e3cd..42bb7c9eea9a (3 commits) (autoroller: commit, cla: yes)\n\n47568 Revert \u201cCheck Xcode build setting FULL_PRODUCT_NAME for the name of the built app during flutter run\u201d (cla: yes, team, tool)\n\n47593 ignore a (potentially) unused import in generated code (cla: yes, tool)\n\n47594 fix analysis (cla: yes, d: examples, team, team: gallery)\n\n47616 Fix SnackBar clipping when it is floating due to FloatingActionButton positioning (cla: yes, f: material design, framework, waiting for tree to go green)\n\n47661 update list of lints (cla: yes, framework, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-424", "text": "47667 Fix RefreshIndicator performance issue (cla: yes, f: material design, framework, waiting for tree to go green)\n\n47691 Fix Icon.color\u2019s API doc sample (cla: yes, d: api docs, f: material design, framework)\n\n47698 Revert \u201cFlutter Web Driver Support (#47470)\u201d (a: tests, cla: yes, d: examples, framework, team, team: gallery, tool)\n\n47701 Remove package:flutter/foundation.dart import (a: tests, cla: yes, team)\n\n47702 Revert \u201cAdd visual density to the gallery options (#46090)\u201d\u2026 (cla: yes, d: examples, team, team: gallery)\n\n47704 Reorganize tests in l10n tool (a: internationalization, cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-425", "text": "47706 gen_l10n Number Format Handling (a: internationalization, cla: yes, team, tool, waiting for tree to go green)\n\n47709 Implement AlertDialog.actionsPadding and AlertDialog.buttonPadding (cla: yes, f: material design, framework)\n\n47724 enable lint prefer_final_in_for_each (a: accessibility, a: internationalization, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool)\n\n47726 enable lint prefer_for_elements_to_map_fromIterable (cla: yes, d: examples, team, team: gallery, waiting for tree to go green)\n\n47742 fix duration event of timeline summary (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-426", "text": "47776 Add error message for flutter_gallery transitions_perf test. (cla: yes, d: examples, team, team: gallery, waiting for tree to go green)\n\n47797 Document reasoning for why CustomMultiChildLayout size can\u2019t depend on children and how to do it (cla: yes, d: api docs, documentation, framework, waiting for tree to go green)\n\n47805 Revert \u201cAdd brightness to CupertinoNavigationBar (fixes #46216)\u201d (cla: yes, f: cupertino, framework)\n\n47829 Roll engine 42bb7c9eea9a..dc0187f21777 (15 commits) (autoroller: commit, cla: yes)\n\n47831 Fix ShaderWarmUp docs (cla: yes, d: api docs, documentation, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-427", "text": "47837 Reland 39919 CupertinoPicker (cla: yes, f: cupertino, framework)\n\n47845 Support preferred locales for gen_l10n (a: internationalization, cla: yes, severe: new feature, team, tool)\n\n47846 Revert \u201cRoll engine 42bb7c9eea9a..dc0187f21777 (15 commits) (#47829)\u201d (cla: yes, engine)\n\n47847 Roll engine dc0187f21777..69e41497404d (6 commits) (autoroller: commit, cla: yes)\n\n47855 Reland \u201cAdd brightness to CupertinoNavigationBar (fixes #46216) (#47521)\u201d (cla: yes, f: cupertino, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-428", "text": "47856 Revert \u201cRoll engine dc0187f21777..69e41497404d (6 commits) (#47847)\u201d (cla: yes, engine)\n\n47875 Add many more global analyses. (a: accessibility, cla: yes, d: examples, f: material design, framework, team, team: gallery, tool)\n\n47884 add key to constructors of public widgets (cla: yes, f: cupertino, f: material design, framework)\n\n47888 Revert \u201cfix duration event of timeline summary (#47742)\u201d (a: tests, cla: yes, framework)\n\n47889 Reland \u201cfix duration event of timeline summary (#47742)\u201d (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-429", "text": "47890 Flutter Web Driver Support (a: tests, cla: yes, d: examples, framework, team, team: gallery, tool, waiting for tree to go green)\n\n47893 Testing tryjob triage (a: tests, cla: yes, framework, team: infra)\n\n47896 Roll to include Dart changes to timeline to fix devicelab. (cla: yes, engine)\n\n47899 Fix semantics and transition-perf tests to parse new event format. (a: accessibility, cla: yes, d: examples, team, team: gallery)\n\n47904 EditableText should not update textinput style when the textinput is \u2026 (a: text input, cla: yes, framework)\n\n47915 [issue 7293] add test for rettangle box decoration with boarder radius (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-430", "text": "47926 Roll engine 5a730c60d3ce..bdc9708d235e (25 commits) (autoroller: commit, cla: yes)\n\n47951 Flexible padding (header height) for expanded panels (cla: yes, f: material design, framework)\n\n47956 fix an analysis ignore for the missing_required_param hint (cla: yes, f: material design, framework)\n\n47985 Revert \u201cTesting tryjob triage\u201d (a: tests, cla: yes, framework, will affect goldens)\n\n47993 Allow Xcode project Info.plist to be moved (cla: yes, t: xcode, tool, waiting for tree to go green)\n\n48001 Fix MediaQuery override in CupertinoDatePicker (cla: yes, f: cupertino, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-431", "text": "48002 Remove simulator arch in Profile and Release, App.xcframework (a: existing-apps, cla: yes, team, tool, waiting for tree to go green)\n\n48003 Make analyze once test not depend on test order or flutter create command (cla: yes, tool, waiting for tree to go green)\n\n48077 Roll engine bdc9708d235e..fa05d367add3 (4 commits) (autoroller: commit, cla: yes)\n\n48080 Revert \u201cAdd many more global analyses. (#47875)\u201d (a: accessibility, cla: yes, d: examples, f: material design, framework, team, team: gallery, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-432", "text": "48081 Reland \u201cAdd many more global analyses. (#47875)\u201d (a: accessibility, cla: yes, d: examples, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\n48084 use DiagnosticsTreeStyle.oneLine for CupertinoThemeData (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n48094 Reland \u201cRevert \u201cAdd visual density to the gallery options (#46090)\u201d..\u2026 (cla: yes, d: examples, team, team: gallery)\n\n48095 make pub get test shufflable (cla: yes, tool, waiting for tree to go green)\n\n48097 fix io_test (cla: yes, tool, waiting for tree to go green)\n\n48098 fix mockStopWatch creation (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-433", "text": "48100 Make subcommands return success instead of null (cla: yes, tool, waiting for tree to go green)\n\n48101 reset state between runs of devFS tests (cla: yes, tool, waiting for tree to go green)\n\n48102 Improve toolchain text (cla: yes, tool, waiting for tree to go green)\n\n48104 Improve error message when a plugin sets an invalid android package (cla: yes, tool)\n\n48131 Roll engine fa05d367add3..d35a4b300877 (4 commits) (autoroller: commit, cla: yes)\n\n48139 Roll engine d35a4b300877..5858519139c2 (3 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-434", "text": "48143 Roll engine 5858519139c2..eb139936eb2c (1 commits) (autoroller: commit, cla: yes)\n\n48149 Registering multiple transformed events should work (cla: yes, f: scrolling, framework, severe: crash)\n\n48152 Added API docs on only opening a Scaffold\u2019s drawer programmatically (cla: yes, d: api docs, f: material design, framework)\n\n48154 Update first-run information URLs (cla: yes, tool, waiting for tree to go green)\n\n48163 Roll engine eb139936eb2c..cbdc7bde224c (1 commits) (autoroller: commit, cla: yes)\n\n48207 Add padEnds option to SliverFillViewport (cla: yes, f: scrolling, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-435", "text": "48218 Remove unused public static members of private classes/enums (cla: yes, framework, team, waiting for tree to go green)\n\n48244 Roll engine cbdc7bde224c..3851981b863a (1 commits) (autoroller: commit, cla: yes)\n\n48250 Cache the path context in the flutter tool (cla: yes, tool)\n\n48251 update gitignore and xcode changes to macOS project for flutter gallery (cla: yes, d: examples, team, team: gallery)\n\n48254 Reverse the sense of the terms snippet and sample. (a: accessibility, a: tests, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-436", "text": "48258 Always use new plugin schema for plugin template (cla: yes, tool, waiting for tree to go green)\n\n48260 update dependencies for flutter_tool (cla: yes, team)\n\n48261 Add @christopherfujino as owner of dev/ci (docker) (cla: yes, team)\n\n48263 Add finally for test (cla: yes, tool)\n\n48265 Simplify the Shortcuts widget diagnostic output (cla: yes, framework)\n\n48266 Add globals technical debt benchmark (cla: yes, team)\n\n48267 Apply void_checks lint (a: tests, cla: yes, f: material design, framework, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-437", "text": "48268 Bump excon from 0.67.0 to 0.71.0 for ci on mac & linux (cla: yes, team, waiting for tree to go green)\n\n48269 Fix state in test (cla: yes, tool, waiting for tree to go green)\n\n48274 Implement reverseTransitionDuration for TransitionRoute (a: animation, cla: yes, f: routes, framework, severe: new feature)\n\n48278 Analytics issue (cla: yes, team, tool, waiting for tree to go green)\n\n48282 Let the tool warn about all old API plugins (a: existing-apps, cla: yes, tool)\n\n48295 Add asserts requiring BoxConstraints\u2019 parameters to be non-null (cla: yes, framework)\n\n48307 use yield* instead of for-yield (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-438", "text": "48314 Esarbanis flutter run help (cla: yes, tool, waiting for tree to go green)\n\n48316 Add support for web app manifests and arbitrary resource files (cla: yes, d: examples, team, team: gallery, tool)\n\n48319 [flutter_tool] Add support for \u2013csp mode to build web (cla: yes, tool)\n\n48342 Passes scrollPhysics from TextFormField to underlying TextField (a: text input, cla: yes, f: material design, framework, waiting for tree to go green)\n\n48343 StackTrace parser, fix assertion error message (cla: yes, framework)\n\n48344 [flutter_tools][web] Add basic service worker generation support to web applications (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-439", "text": "48345 Allow for customizable ModalRoute barrierTween (cla: yes, framework, severe: new feature, waiting for tree to go green)\n\n48346 Expose TextHeightBehavior in Text, RichText, and DefaultTextStyle. (a: typography, cla: yes, customer: google, engine, f: material design, framework, severe: new feature, waiting for tree to go green)\n\n48350 Check for desktop project files before building (cla: yes, tool)\n\n48351 Revert \u201cEsarbanis flutter run help\u201d (cla: yes, tool)\n\n48356 Rename conditional imported files to match convention (a: tests, cla: yes, framework, waiting for tree to go green)\n\n48358 Cleanup accidental use of global fs in xcodeproj_test. (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-440", "text": "48359 [fuchsia] Create an entry-point script to run driver tests on Fuchsia (cla: yes, team)\n\n48365 Roll engine 3851981b863a..3f52888b3bcf (7 commits) (autoroller: commit, cla: yes)\n\n48367 Don\u2019t use local file system in devfs test (cla: yes, tool)\n\n48369 Revert \u201cDocument reasoning for why CustomMultiChildLayout size can\u2019t \u2026 (cla: yes, framework)\n\n48382 Roll engine 3f52888b3bcf..a50f1ef56a05 (4 commits) (autoroller: commit, cla: yes)\n\n48385 Fix typo (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-441", "text": "48394 Roll engine a50f1ef56a05..4e9e69d2b392 (4 commits) (autoroller: commit, cla: yes)\n\n48413 Elide tree walks (a: debugging, a: error message, cla: yes, framework)\n\n48422 Roll engine 4e9e69d2b392..f001ea29f1b9 (1 commits) (autoroller: commit, cla: yes)\n\n48423 Reland: Reword flutter run help screen. (cla: yes, tool, waiting for tree to go green)\n\n48426 Update Dart diagram (a: first hour, cla: yes, documentation, waiting for tree to go green)\n\n48427 sort channels by stability upon running flutter channel (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-442", "text": "48435 Step 1 of 2: Warn about Flutter\u2019s FloatingActionButton dependency on ThemeData accent properties (cla: yes, f: material design, framework)\n\n48437 Roll engine f001ea29f1b9..46adf73d5128 (5 commits) (autoroller: commit, cla: yes)\n\n48444 [flutter_tool] Don\u2019t use context in ProcessUtils (cla: yes, tool)\n\n48445 L10n Currency Formatting, Fixes to Named vs Positional Parameters (a: internationalization, cla: yes, team, waiting for tree to go green)\n\n48446 [flutter_tools] Remove context usage from status and clean up test cases (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-443", "text": "48449 format operator== according to flutter style guide (a: accessibility, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\n48451 Document reasoning for why CustomMultiChildLayout size can\u2019t depend on children and how to do it (cla: yes, d: api docs, documentation, framework, waiting for tree to go green)\n\n48453 MouseTracker no longer requires annotations attached (a: desktop, cla: yes, framework, waiting for tree to go green)\n\n48457 Fixing PageScrollPhysics to get along with NestedScrollView (cla: yes, f: scrolling, framework, severe: crash, waiting for tree to go green)\n\n48459 Fix platform view pointer event global route position detection (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-444", "text": "48460 reland add lifecycle enum and remove workaround (cla: yes, framework, team, waiting for tree to go green)\n\n48472 Test hot reload targeting a Fuchsia device (cla: yes, d: examples, platform-fuchsia, team, tool, waiting for tree to go green)\n\n48482 use isA() matcher (a: accessibility, a: internationalization, a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)\n\n48486 Add highContrast to FakeAccessibilityFeatures test (a: accessibility, a: tests, cla: yes, framework, platform-ios, waiting for tree to go green)\n\n48504 Revert \u201cRoll engine f001ea29f1b9..46adf73d5128 (5 commits)\u201d (cla: yes, engine)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-445", "text": "48517 Adding error handling for SocketExceptions to local comparator (a: tests, cla: yes, framework, waiting for tree to go green)\n\n48529 SliverAnimatedOpacity (a: animation, cla: yes, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n48531 Fixed issue where PaginatedDataTable would not fill the width of its containing Card (cla: yes, f: material design, framework)\n\n48532 Migrate some more integration tests to Android embedding v2 (cla: yes, team)\n\n48538 Create helper functions to handle WebDriver actions. Some actions on base \u2026 (a: tests, cla: yes, framework, waiting for tree to go green)\n\n48539 Update BUG.md (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-446", "text": "48539 Update BUG.md (cla: yes)\n\n48541 Make ParentDataWidget usable with different ancestor RenderObjectWidget types (cla: yes, framework, waiting for tree to go green)\n\n48547 Migrate TextTheme to 2018 APIs (cla: yes, d: examples, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\n48548 [flutter_tools] Discover pubspec.yaml in parent directories (cla: yes, tool, waiting for tree to go green)\n\n48575 Fixing AutomaticKeepAlive Docs (cla: yes, d: api docs, documentation, framework, waiting for tree to go green)\n\n48582 Revert \u201cMigrate some more integration tests to Android embedding v2\u201d (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-447", "text": "48584 [flutter_tool] Make CommandHelp context free (cla: yes, tool, waiting for tree to go green)\n\n48585 [flutter_tools] Fix analytics opt out event (cla: yes, tool, waiting for tree to go green)\n\n48589 Allow requestFocus on an unattached FocusNode to create a deferred focus request (cla: yes, framework)\n\n48597 [flutter_tool] Use the delegate\u2019s toString in the ErrorHandlingFileSystem (cla: yes, tool, waiting for tree to go green)\n\n48598 Manually Roll engine to f001ea2\u20267ef88f8 (34 commits) to resolve goldens (cla: yes, engine, will affect goldens)\n\n48605 [flutter_tool] Make BotDetector context free (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-448", "text": "48607 Avoid runtimeType.toString in toString overrides/debugLabels (cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n48610 [tools] Rename dev_finder to device-finder. (cla: yes, team, tool, waiting for tree to go green)\n\n48611 Implement takeScreenshot and add driver test for Fuchsia (cla: yes, customer: fuchsia, team, tool, waiting for tree to go green)\n\n48614 [flutter_tools] Removes the need of a no-op plugin implementations (cla: yes, team, tool, waiting for tree to go green)\n\n48645 Roll engine 7ef88f85d572..3d37d39d95ad (2 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-449", "text": "48648 Roll engine 3d37d39d95ad..88935ca3c4fe (2 commits) (autoroller: commit, cla: yes)\n\n48661 [flutter_tools] Remove context from Xcode and most of Xcodeproj (cla: yes, tool, waiting for tree to go green)\n\n48728 ButtonBar.verticalDirection and AlertDialog.actionsVerticalDirection (cla: yes, f: material design, framework, severe: new feature, waiting for tree to go green)\n\n48733 Roll engine 88935ca3c4fe..73d2fb374ccb (3 commits) (autoroller: commit, cla: yes)\n\n48735 Fix tool test order (cla: yes, tool)\n\n48738 [flutter_tools] File system utilities (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-450", "text": "48740 Use a separately focusable semantics node for the chip delete icon (cla: yes, d: examples, f: material design, framework, team, team: gallery, waiting for tree to go green)\n\n48741 Return the correct number of semantic children for the ListView.separated constructor (a: accessibility, cla: yes, framework)\n\n48743 Serve packages uris in flutter_tools dev web server (cla: yes, tool)\n\n48746 [flutter_tools] Enable fast start by default (cla: yes, tool)\n\n48750 [flutter_tool] Roll the Fuchsia SDK forward (cla: yes, tool, waiting for tree to go green)\n\n48752 [Gallery] Fix text contrast ratio on homepage and contacts demo (cla: yes, d: examples, team, team: gallery, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-451", "text": "48755 Revert \u201c[flutter_tools] File system utilities\u201d (cla: yes, tool)\n\n48757 Reland: [flutter_tools] File system utilities (cla: yes, tool)\n\n48759 [flutter_tools] Refactor Environment and FileStore to be context-free (cla: yes, tool)\n\n48761 AppBar Height Fix (cla: yes, f: material design, framework, waiting for tree to go green)\n\n48770 Roll engine 73d2fb374ccb..157772a31597 (4 commits) (autoroller: commit, cla: yes)\n\n48771 [flutter_tools] Clean up build_aot code post assemble migration (cla: yes, tool)\n\n48776 [flutter_tools] Remove context from Artifacts class (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-452", "text": "48777 Roll engine 157772a31597..0235a5084389 (3 commits) (autoroller: commit, cla: yes)\n\n48778 [flutter_tools] Update template for web application to correct typo (cla: yes, tool, waiting for tree to go green)\n\n48784 Roll engine 0235a5084389..fd269f60bfc6 (1 commits) (autoroller: commit, cla: yes)\n\n48806 Change reference to current class when setting the MethodChannel (cla: yes, plugin, tool)\n\n48809 [Flutter Driver] Extend getText to support more widgets (a: tests, cla: yes, framework, t: flutter driver)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-453", "text": "48811 Set highContrast value from AccessibilityFeatures into MediaQueryData (a: accessibility, a: tests, cla: yes, framework, platform-ios, waiting for tree to go green)\n\n48829 [flutter_tools] Handle special characters during conversion of asset manifest paths into URIs (cla: yes, tool, waiting for tree to go green)\n\n48836 Revert \u201c[flutter_tools] Enable fast start by default\u201d (cla: yes, tool)\n\n48837 Add very large text scale support for time picker (cla: yes, f: material design, framework, waiting for tree to go green)\n\n48840 Reland: Migrate some more integration tests to Android embedding v2 (cla: yes, team, waiting for tree to go green)\n\n48841 Exclude modal barrier Semantics in Drawer on Android (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-454", "text": "48843 Roll engine fd269f60bfc6..82a851cf21cf (2 commits) (autoroller: commit, cla: yes)\n\n48844 Require Visual Studio 2019 for Windows (cla: yes, tool, waiting for tree to go green)\n\n48845 Increase iteration counts to help improve noise in benchmark results. (cla: yes, team)\n\n48851 [flutter_tools] Reland enable fast-start by default for Android (cla: yes, team, tool)\n\n48852 Roll engine 82a851cf21cf..ddaa9dc95f7b (2 commits) (autoroller: commit, cla: yes)\n\n48853 Add missing type arguments to fix implicit dynamic. (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-455", "text": "48858 Roll engine ddaa9dc95f7b..bc41ab513932 (2 commits) (autoroller: commit, cla: yes)\n\n48892 replace runtimeType.toString() (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n48893 Make build_aar_*_tests actually use release builds. (cla: yes, team)\n\n48900 Do not rebuild Routes when a new opaque Route is pushed on top (cla: yes, f: cupertino, f: material design, framework, perf: speed, severe: performance, waiting for tree to go green)\n\n48902 Prevent disabled cupertino textfield from being edited with voiceover/talkback (a: accessibility, cla: yes, f: cupertino, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-456", "text": "48908 Update Devicelab README with new dashboard information (cla: yes, team)\n\n48912 Roll engine bc41ab513932..348805107fe1 (2 commits) (autoroller: commit, cla: yes)\n\n48913 Grammar fix: \u201cit\u2019s\u201d -> \u201cits\u201d (cla: yes, framework, waiting for tree to go green)\n\n48915 Allow for cupertino modal popups to be dismissed with semantics (a: accessibility, cla: yes, d: examples, f: cupertino, framework, team, team: gallery, waiting for tree to go green)\n\n48916 Fix concurrent modification error (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-457", "text": "48917 Expose selectionHeightStyle and selectionWidthStyle on TextFields (a: fidelity, a: text input, a: typography, cla: yes, f: cupertino, f: material design, framework, severe: new feature, waiting for tree to go green)\n\n48920 Fix semantic sort name (a: accessibility, cla: yes, framework, waiting for tree to go green)\n\n48925 Cupertino(Sliding)SegmentedControl docs reference (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n48929 gen_l10n: generated Intl.message() parameter should be an ordinary string (a: internationalization, cla: yes, framework, team)\n\n48932 [flutter] Allow hot reload replacements of Stateless/Stateful Widget (cla: yes, framework, t: hot reload, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-458", "text": "48936 Roll engine 348805107fe1..be20fb661a69 (8 commits) (autoroller: commit, cla: yes)\n\n48938 Roll engine be20fb661a69..09d892b3bf5d (2 commits) (autoroller: commit, cla: yes)\n\n48942 Roll engine 09d892b3bf5d..8c855dba98eb (1 commits) (autoroller: commit, cla: yes)\n\n48947 [bugfix] SliverGeometry is not valid: The \u201clayoutExtent\u201d is negative (cla: yes, f: scrolling, framework, severe: crash, waiting for tree to go green)\n\n48948 [Form] Add is valid to FormState (cla: yes, framework, severe: new feature, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-459", "text": "48962 Update assert message for AnimatedContainer (cla: yes, framework)\n\n48964 Roll engine 8c855dba98eb..c84fad959284 (4 commits) (autoroller: commit, cla: yes)\n\n48975 [flutter_tools] Only remove ProcessUtils from injection (cla: yes, tool)\n\n48976 Roll engine c84fad959284..e0fe8342889c (2 commits) (autoroller: commit, cla: yes)\n\n48979 [flutter_tools] let experimental compiler support plugins (cla: yes, tool)\n\n48982 Fix whitespace and commas in flutter_driver extension_test (a: tests, cla: yes, framework, t: flutter driver)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-460", "text": "48985 [a11y] Make sure RenderFractionalTranslation updates its semantics after the translation field is set (cla: yes, framework, waiting for tree to go green)\n\n48986 Roll engine e0fe8342889c..c7d0fb787922 (1 commits) (autoroller: commit, cla: yes)\n\n48992 [flutter_tools] resolve host address in the flutter tool for web server (cla: yes, tool, waiting for tree to go green)\n\n48993 Roll engine c7d0fb787922..6693dd75184b (1 commits) (autoroller: commit, cla: yes)\n\n48994 Doc fixes in Image related docs (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-461", "text": "48995 [flutter_tool] Don\u2019t crash on Android emulator startup failure (cla: yes, tool, waiting for tree to go green)\n\n48996 Add macOS Tests (Part 2: Material) (cla: yes, f: material design, framework)\n\n48997 Add macOS Tests (Part 3: Widgets) (cla: yes, framework)\n\n48998 Roll engine 6693dd75184b..839b34cc687c (2 commits) (autoroller: commit, cla: yes)\n\n49000 Selection menu not showing when selection is 0,0 (cla: yes, f: material design, framework, waiting for tree to go green)\n\n49004 Exposing inner controller of NestedScrollView (cla: yes, f: scrolling, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-462", "text": "49005 Revert \u201c[flutter_tools] Removes the need of a no-op plugin implementations\u201d (cla: yes, team, tool)\n\n49009 Don\u2019t pre-cache Android artifacts with \u2013no-android flag (cla: yes, tool, waiting for tree to go green)\n\n49010 Precache iOS artifacts before platform_view_ios__start_up (a: tests, cla: yes, team, team: flakes, team: infra, waiting for tree to go green)\n\n49011 Roll engine 839b34cc687c..04274160e60c (3 commits) (autoroller: commit, cla: yes)\n\n49012 Roll engine 04274160e60c..85a8ac4255a8 (2 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-463", "text": "49016 Roll engine 85a8ac4255a8..8df1757d3566 (1 commits) (autoroller: commit, cla: yes)\n\n49043 Address extra FutureOr from _isolates_io.dart. (cla: yes, framework, waiting for tree to go green)\n\n49073 update incremental web compiler bootstrapping to use the new module names (cla: yes, tool, waiting for tree to go green)\n\n49075 Roll engine to ba045a2 (cla: yes, engine)\n\n49078 Update README.md (cla: yes)\n\n49079 Roll engine 8df1757d3566..98c1aeaa3b1b (9 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-464", "text": "49080 [flutter_tool] Don\u2019t crash on failed stamp file update (cla: yes, tool, waiting for tree to go green)\n\n49085 Reland \u201c[flutter_tools] Removes the need of a no-op plugin implementations #48614\u201d (cla: yes, team, tool)\n\n49086 Roll engine 98c1aeaa3b1b..6f37b7357e5e (1 commits) (autoroller: commit, cla: yes)\n\n49087 Avoid runtimeType to string (cla: yes, framework, waiting for tree to go green)\n\n49092 Roll engine 6f37b7357e5e..ecc74c966d14 (1 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-465", "text": "49094 Roll engine ecc74c966d14..aa50eae0f794 (1 commits) (autoroller: commit, cla: yes)\n\n49096 Android Project: Opt into splash behavior by default. (cla: yes, tool)\n\n49098 Revert \u201creland add lifecycle enum and remove workaround (#48460)\u201d (cla: yes, framework, team)\n\n49099 Achieve Color Contrast Accessibility for Menu Demo (a: tests, cla: yes, d: examples, f: material design, framework, team, team: gallery)\n\n49102 Generate bitcode for plugin frameworks for flutter build ios-framework (a: existing-apps, cla: yes, team, tool, waiting for tree to go green)\n\n49129 Fix comment typo (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-466", "text": "49148 Exposed optional scrollController property in ReorderableListView (cla: yes, f: material design, framework, waiting for tree to go green)\n\n49159 fix missing spaces in adjacent strings (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n49198 Roll engine aa50eae0f794..c15efb9231a4 (28 commits) (autoroller: commit, cla: yes)\n\n49208 Update documentation URLs (cla: yes, team)\n\n49214 Roll engine c15efb9231a4..975c9c8607fa (3 commits) (autoroller: commit, cla: yes)\n\n49224 [flutter_tools] implement build aot in terms of assemble for iOS (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-467", "text": "49227 Revert \u201c[flutter_tools] Reland enable fast-start by default for Android\u201d (cla: yes, team, tool)\n\n49228 Use flutter_tools to start WebDriver browser. (a: tests, cla: yes, d: examples, framework, team, team: gallery, tool, waiting for tree to go green)\n\n49231 remove an unnecessary import (cla: yes, framework, waiting for tree to go green)\n\n49232 Roll engine 975c9c8607fa..f38f6a09be65 (2 commits) (autoroller: commit, cla: yes)\n\n49234 download font-subset (cla: yes, tool, waiting for tree to go green)\n\n49235 Add OrderedFocusTraversalPolicy and FocusTraversalGroup to allow focus traversal to follow a predefined order. (cla: yes, f: material design, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-468", "text": "49237 [flutter_tools][web] add favicon to template and update index.html (cla: yes, d: examples, team, team: gallery, tool)\n\n49246 soft transition for the mustcallsuper in Element forgetChild (cla: yes, framework, waiting for tree to go green)\n\n49247 contains (cla: yes, framework, waiting for tree to go green)\n\n49253 Fix YamlMap cast error (cla: yes, tool)\n\n49255 Fix template syntax error in WidgetController doc (a: tests, cla: yes, framework, waiting for tree to go green)\n\n49256 Expose a color property to CloseButton (cla: yes, f: material design, framework, waiting for tree to go green)\n\n49257 Fix the issue of TextSelection could misbehave inside a Nested Overlay (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-469", "text": "49261 Add additional expects to check if flake is a race (cla: yes, framework, waiting for tree to go green)\n\n49262 Disallow empty platforms and specific platforms when parsing manifest for plugins (cla: yes, tool, waiting for tree to go green)\n\n49264 Roll engine f38f6a09be65..79f898e61d9c (5 commits) (autoroller: commit, cla: yes)\n\n49265 Fix build aar instructions (cla: yes, tool, waiting for tree to go green)\n\n49272 Roll engine 79f898e61d9c..83a64b7233d5 (4 commits) (autoroller: commit, cla: yes)\n\n49276 Copy the local engine repo in the output directory (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-470", "text": "49280 fix multiline FlutterError (cla: yes, f: material design, framework, waiting for tree to go green)\n\n49301 [flutter_tools] rollback to dwds 0.8.5, fix versioning (cla: yes, team, tool, waiting for tree to go green)\n\n49310 [web] Wire the \u201c\u2013start-paused\u201d flag correctly for web (cla: yes, platform-web, tool)\n\n49312 Roll engine 83a64b7233d5..46e58b930d11 (9 commits) (autoroller: commit, cla: yes)\n\n49315 [flutter_tools] Reland fast start by default for Android (cla: yes, team, tool, waiting for tree to go green)\n\n49319 recommendDeferredLoading (cla: yes, f: scrolling, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-471", "text": "49321 Remove App.framework copy during build ios-framework (a: existing-apps, cla: yes, tool, waiting for tree to go green)\n\n49323 [flutter_tool] Don\u2019t crash when writing to pub stdin fails (cla: yes, tool, waiting for tree to go green)\n\n49325 [web] Serve dart files correctly when running \u201cflutter test\u201d in Chrome (a: tests, cla: yes, platform-web, tool, waiting for tree to go green)\n\n49327 [flutter_tools] Do not use the logcat -T flag on Android versions before Lollipop (cla: yes, tool, waiting for tree to go green)\n\n49329 Guard against a null navigator on popping a route. (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-472", "text": "49334 refactor generateString to emit simpler dart code (a: internationalization, cla: yes, f: cupertino, f: material design, team, waiting for tree to go green)\n\n49341 fix R8 error message (cla: yes, tool, waiting for tree to go green)\n\n49352 remove unnecessary string interpolations (a: accessibility, a: internationalization, a: tests, cla: yes, d: examples, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\n49357 Update gen_l10n handling of plurals, numbers, and dates (a: internationalization, cla: yes, team, waiting for tree to go green)\n\n49364 Disable flaky LineMetrics test (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-473", "text": "49366 Revert \u201cDo not rebuild Routes when a new opaque Route is pushed on top\u201d (cla: yes, f: cupertino, f: material design, framework)\n\n49368 reland add lifecycle enum and remove workaround (cla: yes, framework, team, waiting for tree to go green)\n\n49371 remove empty string in string interpolations (cla: yes, tool, waiting for tree to go green)\n\n49373 [flutter_tools] remove linter dep from BUILD.gn (cla: yes, tool)\n\n49376 Reland \u201cDo not rebuild Routes when a new opaque Route is pushed on top\u201d (cla: yes, framework, perf: speed, severe: performance, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-474", "text": "49377 [flutter_tools] Apply \u2013no-causal-async-stacks and \u2013lazy-async-stacks to profile/release builds (cla: yes, tool, waiting for tree to go green)\n\n49379 Script to generate missing localization resources (cla: yes, f: material design, framework, team)\n\n49380 [flutter_tool] Don\u2019t crash on a failure to write to std{out,err} (cla: yes, tool, waiting for tree to go green)\n\n49389 Defer image decoding when scrolling fast (a: images, cla: yes, f: scrolling, framework, severe: API break, waiting for tree to go green)\n\n49391 Text Selection Overflow (Android) (a: text input, cla: yes, f: material design, framework, severe: API break, will affect goldens)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-475", "text": "49396 Change firebase Pixel3 version from Q-beta3 to 29 (cla: yes, team)\n\n49401 Roll engine 46e58b930d11..439a21816e61 (19 commits) (autoroller: commit, cla: yes)\n\n49405 [flutter_tools] initialize frontend server with build (cla: yes, tool)\n\n49406 Track lastKnownRemoteTextEditingValue separately from received data (a: text input, cla: yes, framework, platform-android, waiting for tree to go green)\n\n49408 Suppress upgrade message with \u2013machine (cla: yes, tool)\n\n49409 Roll engine 439a21816e61..f10f03a6c415 (5 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-476", "text": "49433 Fixing constraints.precedingScrollExtent passed to SliverPadding child (cla: yes, f: scrolling, framework, waiting for tree to go green)\n\n49437 v1.12.13+hotfix.7 cherry-picks (cla: yes, engine, framework, team, tool)\n\n49441 Fix TransformLayer with perspective transform (cla: yes, framework, waiting for tree to go green)\n\n49442 Fix the the typos (cla: yes, f: material design, framework)\n\n49443 Fix StrutStyle docs to remove references to leading property. (cla: yes, d: api docs, documentation, framework)\n\n49452 Roll engine f10f03a6c415..51a79649662f (13 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-477", "text": "49454 [infra] reduce cirrus task dependencies (cla: yes, team, waiting for tree to go green)\n\n49455 Make local-engine an input property (cla: yes, tool, waiting for tree to go green)\n\n49458 Move Xcode context fetch to global.dart (cla: yes, team, tool, waiting for tree to go green)\n\n49459 [flutter_tools] handle plugins for entrypoints outside of lib (cla: yes, tool, waiting for tree to go green)\n\n49460 Initial web benchmark harness and 3 benchmarks (cla: yes, team)\n\n49462 Replace FlutterVersion.instance with FlutterVersion context fetch in global.dart (cla: yes, team, tool, waiting for tree to go green)\n\n49463 Inject platform into build ios-framework command (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-478", "text": "49465 Add \u201cflutter symbolize\u201d command (cla: yes, team, tool, waiting for tree to go green)\n\n49470 Roll engine 51a79649662f..4218f8026f29 (14 commits) (autoroller: commit, cla: yes)\n\n49473 [flutter_tools] disable fast-start on routes test (cla: yes, team)\n\n49475 Roll engine 4218f8026f29..f30ff4fcbf19 (2 commits) (autoroller: commit, cla: yes)\n\n49480 Reduced code duplication in ink_splash.dart, ink_ripple.dart (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-479", "text": "49485 Roll engine f30ff4fcbf19..6fa1fcda8f78 (1 commits) (autoroller: commit, cla: yes)\n\n49486 [flutter_tools] Generate correct entrypoint module name (cla: yes, tool, waiting for tree to go green)\n\n49491 [flutter_tools] move dsym logic into dart (cla: yes, tool)\n\n49493 Roll engine 6fa1fcda8f78..276481c4d30f (1 commits) (autoroller: commit, cla: yes)\n\n49501 Some minor cleanup for the customer_testing shard (cla: yes, team)\n\n49509 Roll engine 276481c4d30f..a41ff8d359dc (1 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-480", "text": "49511 switching channel prompts to run flutter upgrade (cla: yes, tool, waiting for tree to go green)\n\n49519 [ci] Upgrade to Catalina (cla: yes, waiting for tree to go green)\n\n49520 Roll engine a41ff8d359dc..004cbdf0660a (1 commits) (autoroller: commit, cla: yes)\n\n49523 Roll engine 004cbdf0660a..ac1ba3033c38 (1 commits) (autoroller: commit, cla: yes)\n\n49527 Avoid calling didChangeDependences on a State that has dropped out of the tree (cla: yes, f: focus, framework, waiting for tree to go green)\n\n49554 [flutter_tools] fast start off by default (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-481", "text": "49557 Fix a TextTheme.body1 deprecation warning typo (cla: yes, f: material design, framework, waiting for tree to go green)\n\n49559 Move stocks example app into dev/benchmarks/test_apps (cla: yes, d: examples, team, waiting for tree to go green)\n\n49561 [flutter_tool] Hide unsafe std{out,err} operations (cla: yes, tool, waiting for tree to go green)\n\n49563 [flutter_tools] remove dwarf stripping now that linked issue is fixed (cla: yes, tool, waiting for tree to go green)\n\n49565 Roll engine ac1ba3033c38..c4229bfbbae4 (3 commits) (autoroller: commit, cla: yes)\n\n49569 add more devices into whitelist (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-482", "text": "49572 revert #48985 (a: accessibility, a: internationalization, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\n49574 [Material] Create a Navigation Rail component and theme (cla: yes, f: material design, framework, waiting for tree to go green)\n\n49575 [flutter_tool] Make base/net.dart context free (cla: yes, tool, waiting for tree to go green)\n\n49577 [flutter_tools] remove alternative build aot code path (cla: yes, tool)\n\n49581 Unmark tests as flaky because they are no longer flaky (cla: yes, team, team: infra)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-483", "text": "49583 Clarified AppBar toolbar layout API docs (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)\n\n49586 Integration test for the gen_l10n tool (cla: yes, team, tool)\n\n49589 [flutter_tools] Reduce context usage in analyze command and tests (cla: yes, tool, work in progress; do not review)\n\n49590 [versions] update versions \u2013force-upgrade (cla: yes, team)\n\n49591 Sanitize host before calling pm (cla: yes, tool)\n\n49592 Revert \u201c[flutter_tools] move dsym logic into dart\u201d (cla: yes, tool)\n\n49595 [flutter_tools] only strip when bitcode is enabled (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-484", "text": "49596 [flutter_tools] only apply \u2013strip to iOS gen_snapshot in release mode (cla: yes, tool)\n\n49597 Exclude cleaning the bin/cache right after its fetched from the Cirrus cache (cla: yes, team, team: infra, waiting for tree to go green)\n\n49602 Revert string interp (a: tests, cla: yes, framework, team)\n\n49622 remove unnecessary string interpolations (a: accessibility, a: internationalization, a: tests, cla: yes, d: examples, f: material design, framework, team, team: gallery)\n\n49623 Revert \u201cSanitize host before calling pm\u201d (cla: yes, tool)\n\n49625 [flutter_tools] open chrome with unresolved hostname (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-485", "text": "49628 [flutter_tools] simplify symbol logic for iOS (cla: yes, team, tool, waiting for tree to go green)\n\n49629 Handle StackOverflows (cla: yes, d: stackoverflow, framework, waiting for tree to go green)\n\n49637 Fix CupertinoDatePicker range validation (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n49638 Provide a non-null default value for the compute debug label in release mode (cla: yes, framework, waiting for tree to go green)\n\n49639 [Devicelab] Mark microbenchmarks_ios as flaky. (cla: yes, team)\n\n49641 Revert \u201c[flutter_tools] remove alternative build aot code path\u201d (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-486", "text": "49644 Reland #49591: Sanitize host before calling pm (cla: yes, tool, waiting for tree to go green)\n\n49645 Move ParagraphStyle tests to engine (cla: yes, framework, waiting for tree to go green)\n\n49650 [flutter_tools] support \u2013split-debug-info option in android builds (cla: yes, tool)\n\n49654 Update Xcode compatibility version (cla: yes, t: xcode, tool, waiting for tree to go green)\n\n49656 Roll engine c4229bfbbae4..ec32966e030a (18 commits) (autoroller: commit, cla: yes)\n\n49657 Run \u201cbuild ios-framework\u201d processes async (a: existing-apps, cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-487", "text": "49659 Remove unnecessary BuildableIOSApp from \u201cbuild ios-framework\u201d (a: existing-apps, cla: yes, tool, waiting for tree to go green)\n\n49662 [flutter_tools] hide assembly warning (cla: yes, tool)\n\n49664 Roll engine ec32966e030a..f4b2183f1b97 (1 commits) (autoroller: commit, cla: yes)\n\n49675 Roll engine f4b2183f1b97..6e506fb64147 (2 commits) (autoroller: commit, cla: yes)\n\n49679 Print more layer debug info (cla: yes, customer: dream (g3), framework, perf: speed, severe: performance, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-488", "text": "49692 Material DataTable: added support of setting table row border thickness (cla: yes, f: material design, framework, waiting for tree to go green)\n\n49699 Roll engine 6e506fb64147..9c9e5d05ec91 (3 commits) (autoroller: commit, cla: yes)\n\n49701 Fix Flutter tool to use correct adb parameter and collect Realtime value. (cla: yes, tool, waiting for tree to go green)\n\n49708 [a11y] Re-land Make sure RenderFractionalTranslation updates its semantics after the translation field is set (cla: yes, framework)\n\n49714 fix focus traversal after pages popped (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-489", "text": "49717 Roll engine 9c9e5d05ec91..020222ddd021 (1 commits) (autoroller: commit, cla: yes)\n\n49724 Move iMobileDevice to globals (cla: yes, team, tool)\n\n49726 Use DiagnosticableMixin instead of Diagnosticable for some conditionals. (a: accessibility, cla: yes, f: cupertino, f: material design, framework)\n\n49729 Roll engine 020222ddd021..4a55b4fd2500 (2 commits) (autoroller: commit, cla: yes)\n\n49735 [flutter_tools] iOS fallback discovery protocol (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-490", "text": "49737 Font subset in the tool (a: size, cla: yes, framework, team, tool, waiting for tree to go green)\n\n49740 [flutter_tools] Make OperatingSystemUtils context-free (cla: yes, tool)\n\n49743 Roll engine 4a55b4fd2500..6007c17fd246 (2 commits) (autoroller: commit, cla: yes)\n\n49750 Use skia golden files in driver test (a: tests, cla: yes, framework, team)\n\n49751 [fuchsia] Runs stocks driver test on Fuchsia NUCs in devicelab (CQ+1, cla: yes, team, waiting for tree to go green)\n\n49756 Fix englishLike2018 bodyText (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-491", "text": "49758 Roll engine 6007c17fd246..6061b804e359 (1 commits) (autoroller: commit, cla: yes)\n\n49760 Fix handling backspace on macos with text selection (cla: yes, framework, waiting for tree to go green)\n\n49766 add preserveHeaderCase argument to subclasses of HttpHeaders (a: tests, cla: yes, framework, tool, waiting for tree to go green)\n\n49771 Assert cache hints are not set for null painters (cla: yes, framework, perf: speed, severe: API break, severe: performance, waiting for tree to go green)\n\n49799 Roll engine 6061b804e359..f6526c0cf8a3 (7 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-492", "text": "49807 [Devicelab] microbenchmarks is broken. (cla: yes, team)\n\n49812 Roll engine f6526c0cf8a3..74d07b5f6b4f (2 commits) (autoroller: commit, cla: yes)\n\n49815 Refactoring Gold to enable both Luci & Cirrus support (CQ+1, a: tests, cla: yes, f: cupertino, framework, passed secondary triage, team, team: infra, waiting for tree to go green, will affect goldens)\n\n49827 Revert \u201cAlways use new plugin schema for plugin template (#48258)\u201d (cla: yes, tool)\n\n49830 fix material selection handle paint with transparent textSelectionHandleColor (cla: yes, f: material design, framework, waiting for tree to go green, will affect goldens)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-493", "text": "49832 Reland: Always use new plugin schema for plugin template (cla: yes, tool)\n\n49834 [flutter_tools] Make Config context-free (cla: yes, tool, waiting for tree to go green)\n\n49835 Roll engine 74d07b5f6b4f..e5209202fb00 (4 commits) (autoroller: commit, cla: yes)\n\n49842 [flutter_tools] Migrate xcode_backend.sh to flutter assemble (cla: yes, tool, waiting for tree to go green)\n\n49844 Be clearer about when and why we override HttpClient in tests (a: tests, cla: yes, framework, team)\n\n49845 Add channel-specific dartpad URL to snippet generation (cla: yes, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-494", "text": "49846 Have android validator suggest ANDROID_SDK_ROOT instead of deprecated ANDROID_HOME (cla: yes, tool, waiting for tree to go green)\n\n49847 Revert \u201cfix global key error\u201d (cla: yes, f: cupertino, f: material design, framework)\n\n49848 Step 3 of 4: Make AlertDialog scrollable by default (cla: yes, f: material design, framework, waiting for tree to go green)\n\n49854 Replace ideviceinfo and idevice_id with xcdevice (cla: yes, platform-ios, tool, waiting for tree to go green)\n\n49869 Revert \u201cRoll engine 74d07b5f6b4f..e5209202fb00 (4 commits) (#49835)\u201d (cla: yes, engine)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-495", "text": "49873 Roll engine 74d07b5f6b4f..804dca62a17c (13 commits) (autoroller: commit, cla: yes)\n\n49884 update template for gen_keycodes (cla: yes, team, waiting for tree to go green)\n\n49886 Revert \u201cElide tree walks\u201d (cla: yes, framework)\n\n49891 Reland elide long tree walks (cla: yes, framework, waiting for tree to go green)\n\n49894 [web] Fix typo apple-mobile-web-app-status-bar-style (cla: yes, d: examples, team, team: gallery, waiting for tree to go green)\n\n49896 reland Refactors global key duplication detection (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-496", "text": "49900 Revert \u201cUse skia golden files in driver test\u201d (a: tests, cla: yes, framework, team)\n\n49905 Reland: Skia gold driver test (a: tests, cla: yes, framework, team)\n\n49908 Roll engine 804dca62a17c..6b8c150639b5 (3 commits) (autoroller: commit, cla: yes)\n\n49909 [flutter_tools] Move homeDirPath to FileSystemUtils (cla: yes, tool, waiting for tree to go green)\n\n49910 fix cupertino selection handle paint with transparent color (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n49911 Respect CHROME_EXECUTABLE in web benchmarks (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-497", "text": "49913 Step 2 of 4: AboutDialog uses scrollable AlertDialog (cla: yes, f: material design, framework, waiting for tree to go green)\n\n49916 Roll engine 6b8c150639b5..e625e174c5df (3 commits) (autoroller: commit, cla: yes)\n\n49920 Image provider fix (a: images, cla: yes, framework, waiting for tree to go green)\n\n49925 Fix custom Elements that wants to decorate State.build (cla: yes, framework, waiting for tree to go green)\n\n49927 Roll engine e625e174c5df..0816c040fbba (6 commits) (autoroller: commit, cla: yes)\n\n49956 Fix stack filtering (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-498", "text": "49987 Add Gamepad support for the activation action (cla: yes, framework, waiting for tree to go green)\n\n49992 Docs (RenderObject): minor fix and link to more information (cla: yes, framework, waiting for tree to go green)\n\n49993 Docs: provide Guidance for SingleChildRenderObjectWidget implementations (cla: yes, framework, waiting for tree to go green)\n\n49994 Docs: provide Guidance for MultiChildRenderObjectWidget implementations (cla: yes, d: api docs, documentation, framework)\n\n50017 [flutter_driver] document caveats with driver method (a: tests, cla: yes, framework, waiting for tree to go green)\n\n50029 [flutter_tools] Fix crash on null Android apiVersion (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-499", "text": "50034 Add option to clear the terminal by pressing \u201cc\u201d (cla: yes, tool, waiting for tree to go green)\n\n50035 SimpleDialogOption: support custom padding (cla: yes, f: material design, framework, waiting for tree to go green)\n\n50036 [flutter_tools] fix frontend server generated entrypoint (cla: yes, tool, waiting for tree to go green)\n\n50038 [flutter_tools] add missing period to end of filter (cla: yes, tool, waiting for tree to go green)\n\n50040 Use the FlutterVersion defined in context (cla: yes, tool, waiting for tree to go green)\n\n50047 Fix the issue of Android add2app build fails on Android when assets are read-only (a: existing-apps, cla: yes, team, tool, work in progress; do not review)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-500", "text": "50051 [flutter_tools] Small addition to the readme about testing (cla: yes, team, tool, waiting for tree to go green)\n\n50058 InputDecorator prefixIconConstraints and suffixIconConstraints (cla: yes, f: material design, framework, severe: new feature, waiting for tree to go green)\n\n50060 Allow long filenames setting for customer tests (cla: yes, team)\n\n50068 Revert \u201cFix custom Elements that wants to decorate State.build\u201d (cla: yes, framework)\n\n50071 Reland #49925 (cla: yes, framework, waiting for tree to go green)\n\n50074 add test to verify binaries are signed on release branches (cla: yes, team)\n\n50082 Revert \u201cTrack lastKnownRemoteTextEditingValue separately from receive\u2026 (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-501", "text": "50083 Roll engine 0816c040fbba..810b9b91e299 (21 commits) (autoroller: commit, cla: yes)\n\n50084 Remove dead code IMobileDevice.isWorking (cla: yes, tool, waiting for tree to go green)\n\n50088 Revert \u201cinstall goldctl in docker build\u201d (cla: yes, team)\n\n50091 Roll engine 810b9b91e299..44f24bd9807f (2 commits) (autoroller: commit, cla: yes)\n\n50096 remove unnecessary string escapes (cla: yes, d: examples, team, team: gallery, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-502", "text": "50113 Roll engine 44f24bd9807f..f44f50f3c587 (2 commits) (autoroller: commit, cla: yes)\n\n50115 [flutter_tools][web] serve dummy service_worker and manifest file (cla: yes, tool, waiting for tree to go green)\n\n50119 Roll engine f44f50f3c587..81dffd1241e6 (1 commits) (autoroller: commit, cla: yes)\n\n50124 Reland \u201cinstall goldctl in docker build\u201d (cla: yes, team)\n\n50125 [flutter_tools] Isolate userHomePath, other cleanups (cla: yes, tool, waiting for tree to go green)\n\n50127 Revert \u201cReland: Skia gold driver test\u201d (a: tests, cla: yes, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-503", "text": "50128 [fuchsia] Do not run precache on Fuchsia bots (CQ+1, cla: yes, team)\n\n50129 Explain how the scroll controller behaves under tests (cla: yes, d: api docs, framework, waiting for tree to go green)\n\n50132 Add Message.isPlural, Message.getCountPlaceholder() to gen_l10n_types (a: internationalization, cla: yes, team, waiting for tree to go green)\n\n50134 Run microbenchmarks_ios only on ios/12 testbeds. (cla: yes, team, waiting for tree to go green)\n\n50140 Add -destination generic/platform=iOS to build ios-framework xcodebuild (a: existing-apps, cla: yes, platform-ios, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-504", "text": "50149 Fix Gold flake from gsutil fallback (a: tests, cla: yes, framework, team, team: flakes, team: infra, waiting for tree to go green)\n\n50151 Revert \u201c[flutter_tools] Migrate xcode_backend.sh to flutter assemble\u201d (cla: yes, tool)\n\n50152 Move the localization_utils camelCase function to LocaleInfo (cla: yes, f: cupertino, f: material design, team, waiting for tree to go green)\n\n50153 Remove usages of StackTraceMapper (cla: yes, tool)\n\n50154 Fix Path Separator in Service Workers (cla: yes, tool, waiting for tree to go green)\n\n50157 Make Annotation\u2019s localPosition relative to object (a: desktop, a: mouse, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-505", "text": "50160 Reland: Skia gold driver test (a: tests, cla: yes, framework, team)\n\n50166 Web benchmarks: make headless mode opt-out (cla: yes, team)\n\n50178 unnecessary escapes fixes (cla: yes, d: examples, team, team: gallery, tool, waiting for tree to go green)\n\n50180 Added parallax effect for cupertino fullscreenDialog (a: fidelity, cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n50200 [flutter_tools] Reland migrate xcode_backend.sh to flutter assemble (cla: yes, tool)\n\n50213 Remove android directory from platform_channel_swift example project (cla: yes, d: examples, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-506", "text": "50215 [flutter_tools] force page refresh when hot restarting in profile/release mode (cla: yes, tool, waiting for tree to go green)\n\n50223 Retry Gradle command when failing to download a resource (cla: yes, tool, waiting for tree to go green)\n\n50224 [flutter_tools] wire up tree shake fonts to iOS (cla: yes, tool, waiting for tree to go green)\n\n50225 [flutter_tools] remove dependencies checks from gen_snapshot (cla: yes, tool, waiting for tree to go green)\n\n50228 Revert \u201c[flutter_tools] Reland migrate xcode_backend.sh to flutter assemble\u201d (cla: yes, tool)\n\n50229 [flutter_tools] Reland flutter assemble for iOS (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-507", "text": "50240 Support downloading font-subset for all platforms (cla: yes, tool, waiting for tree to go green)\n\n50242 Fix LRUness of ScrollAwareImageProvider (a: images, cla: yes, framework, waiting for tree to go green)\n\n50243 Revert \u201cReplace ideviceinfo and idevice_id with xcdevice\u201d (cla: yes, tool)\n\n50245 [flutter_tools] revert split debug info from macOS (cla: yes, tool)\n\n50248 Remove ideviceinfo, idevice_id artifacts (cla: yes, platform-ios, team, tool, waiting for tree to go green)\n\n50251 [versions] update packages (cla: yes, team)\n\n50252 Reland Replace ideviceinfo and idevice_id with xcdevice (cla: yes, platform-ios, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-508", "text": "50255 Roll engine 81dffd1241e6..f34bc65bee49 (29 commits) (cla: yes, waiting for tree to go green)\n\n50264 Updated documentation for CupertinoPicker (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n50272 Print frame begin time in summary (a: tests, cla: yes, framework, perf: speed, severe: performance, waiting for tree to go green)\n\n50282 [flutter_tools] Handle AndroidStudio validator crash (cla: yes, tool, waiting for tree to go green)\n\n50284 [flutter_tools] remove automatic multiroot scheme (cla: yes, team, tool)\n\n50289 Make codesign.dart integration test easier to run locally (cla: yes, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-509", "text": "50290 [fuchsia] Pass device name to the drive comand. (CQ+1, cla: yes, team)\n\n50291 Hotfix 8 - sign binaries and increase minimum Xcode version to 11 (cla: yes, engine, framework, team, tool)\n\n50296 [flutter_tools] support iOS and macOS with split-debug-info and tree-shake-icons (cla: yes, tool, waiting for tree to go green)\n\n50297 Fix image tests that make faulty assumptions about lifecycle of image provider (cla: yes, framework, waiting for tree to go green)\n\n50301 [gen_l10n] Remove redundant tests (a: internationalization, cla: yes, team, waiting for tree to go green)\n\n50302 [flutter_tool] Make the registrant import relative to the entrypoint (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-510", "text": "50304 Allow Android to be missing from multi-platform manifest (cla: yes, tool, waiting for tree to go green)\n\n50305 Roll engine f34bc65bee49..f3ce90e9387b (20 commits) (cla: yes, waiting for tree to go green)\n\n50306 Reduce duplication in sharded tests in .cirrus.yml (cla: yes, team: infra, waiting for tree to go green)\n\n50307 Reland \u201cTrack lastKnownRemoteTextEditingValue separately from received data\u201d (a: text input, cla: yes, framework)\n\n50312 [flutter_tools] Prevent web ServiceWorker from modifying fetch requests. (cla: yes, tool, waiting for tree to go green)\n\n50313 Update compile size benchmarks (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-511", "text": "50313 Update compile size benchmarks (cla: yes, team)\n\n50315 Update minimum version to Xcode 11.0 (cla: yes, platform-ios, platform-mac, t: xcode, tool)\n\n50316 Make onImage re-entrant safe (cla: yes, framework)\n\n50318 Live image cache (a: images, cla: yes, framework, severe: API break, team)\n\n50319 Fix lack of ancestor notification when a focus node is unfocused. (cla: yes, framework, waiting for tree to go green)\n\n50322 use raw strings to avoid escaping (a: tests, cla: yes, d: examples, f: material design, framework, team, team: gallery, tool)\n\n50324 Fix flutter doctor (pluginsPath) check for Mac (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-512", "text": "50325 Throw when trying to load an empty file (a: error message, a: images, cla: yes, framework, waiting for tree to go green)\n\n50345 Update RefreshIndicator documentation to clarify the need for the child to be scrollable (cla: yes, f: material design, framework, waiting for tree to go green)\n\n50354 Use strut box heights to calculate selection rectangles in order to ensure that they remain within visible bounds (a: text input, cla: yes, framework, severe: API break, waiting for tree to go green)\n\n50355 Nested TickerMode cannot turn tickers back on (cla: yes, f: material design, framework, waiting for tree to go green)\n\n50362 Implements the navigator page api (cla: yes, f: routes, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-513", "text": "50363 Roll engine f3ce90e9387b..580503c35926 (24 commits) (cla: yes, waiting for tree to go green)\n\n50365 Switch flutter_tools to use frontend_server for web compilation (cla: yes, team, tool, waiting for tree to go green)\n\n50366 Fix Dropdown 'itemHeights' was called on null crash (cla: yes, customer: crowd, f: material design, framework, severe: crash, waiting for tree to go green)\n\n50367 Disable tests using gauge (cla: yes, team)\n\n50368 change quote to avoid escapes (a: accessibility, a: internationalization, a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-514", "text": "50369 Revert \u201cUpdate minimum version to Xcode 11.0\u201d (cla: yes, tool)\n\n50370 Fall back to global cache and platform if null when injected into constructor (a: existing-apps, cla: yes, platform-ios, team, tool)\n\n50371 Update minimum version to Xcode 11.0 (cla: yes, tool)\n\n50372 EditableText\u2019s autofocus:true should not crash (a: text input, cla: yes, f: focus, framework, severe: crash, waiting for tree to go green)\n\n50377 Update samples to work with Dartpad, and convert all that make sense to use Dartpad (cla: yes, f: material design, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-515", "text": "50381 Roll engine 580503c35926..6158f03ef5fa (6 commits) (cla: yes, waiting for tree to go green)\n\n50385 change capability for test tiles_scroll_perf_iphonexs__timeline_summary (cla: yes, team)\n\n50388 more gradle upgrades (cla: yes, t: gradle, team, tool, waiting for tree to go green)\n\n50392 Make FocusManager a ChangeNotifier that notifies when the primaryFocus changes (cla: yes, framework)\n\n50394 [framework] minimize effect of stateless/stateful swap (cla: yes, framework, waiting for tree to go green)\n\n50399 Roll engine 6158f03ef5fa..e4f46f32f1fd (3 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-516", "text": "50446 [flutter_tools] Print emojis in Windows Terminal (cla: yes, tool)\n\n50454 [flutter_tools] add missing vm_service dep to BUILD.gn (cla: yes, tool, waiting for tree to go green)\n\n50456 [flutter_tools] replace mock with FakeProcessManager (cla: yes, tool, waiting for tree to go green)\n\n50468 Use ELF for AOT snapshots on Fuchsia. (cla: yes, tool, waiting for tree to go green)\n\n50479 Update cupertino_icons dependency version in pubspec.yaml template (cla: yes, tool, waiting for tree to go green)\n\n50481 Remove some obsolete // ignore: (cla: yes, framework, waiting for tree to go green)\n\n50483 Updating snippets documentation README.md (cla: yes, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-517", "text": "50485 Make the template plugin example depend on the plugin as a real dependency (cla: yes, tool, waiting for tree to go green)\n\n50488 v1.12.13+hotfix.8 cherry-picks - Do not use logcat -T on pre-lollipop Android (cla: yes, engine, framework, team, tool)\n\n50489 v1.12.13+hotfix.8 cherry-picks - gradle upgrades (cla: yes, engine, framework, team, tool)\n\n50495 fixes route name annoucement in navigator (cla: yes, f: routes, framework, waiting for tree to go green)\n\n50496 Turn back on macOS shard Cirrus caching (cla: yes, team, team: infra)\n\n50497 Set bundle config rather than deprecated \u2013system flag (cla: yes, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-518", "text": "50502 Revert \u201cReduced code duplication in ink_splash.dart, ink_ripple.dart\u201d (cla: yes, f: material design, framework)\n\n50506 Add \u201cflutter downgrade\u201d command (cla: yes, tool)\n\n50509 [flutter_tools] wire up complete support for Dart obfuscation (cla: yes, team, tool)\n\n50512 Revert \u201cRevert \u201cReduced code duplication in ink_splash.dart, ink_ripple.dart\u201d\u201d (cla: yes, f: material design, framework)\n\n50515 catch release builds pre-submit (cla: yes, waiting for tree to go green)\n\n50516 Revert \u201cFix SnackBar clipping when it is floating due to FloatingActionButton positioning\u201d (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-519", "text": "50520 Update TextStyle.hashCode to handle list fields (cla: yes, framework, waiting for tree to go green)\n\n50523 Invalidate _SliverFractionalPadding cache on constraint change (cla: yes, f: scrolling, framework)\n\n50535 Roll engine e4f46f32f1fd..0e8ed2715a35 (21 commits) (cla: yes, waiting for tree to go green)\n\n50536 Use BUILD_LIBRARY_FOR_DISTRIBUTION build setting for generating add-to-app frameworks (a: existing-apps, cla: yes, team, tool, waiting for tree to go green)\n\n50538 [flutter_tools] fix path escaping on in depfile generation (cla: yes, tool)\n\n50546 Material Date Picker redesign (a: internationalization, cla: yes, f: material design, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-520", "text": "50579 [flutter_tools] Disable analytics for more bots (cla: yes, tool, waiting for tree to go green)\n\n50589 Changed ThemeData DiagnosticProperties to DiagnosticLevel.debug (cla: yes, f: material design, framework, waiting for tree to go green)\n\n50593 update lint list + enable unnecessary_string_interpolations (cla: yes, team)\n\n50597 Step 1: SnackBarBehavior.floating offset fix - Soft breaking change (cla: yes, f: material design, framework)\n\n50599 Create plugin symlinks for Windows and Linux (cla: yes, tool)\n\n50603 Remove invalid assert for TextHeightBehavior (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-521", "text": "50609 AlertDialog.actionsOverflowButtonSpacing and ButtonBar.overflowButtonSpacing (cla: yes, f: material design, framework, severe: new feature)\n\n50611 [flutter_tools] fix crash when IsolateRef returns sentinel (cla: yes, tool)\n\n50612 Map arm64e devices to arm64 devices (cla: yes, platform-ios, tool)\n\n50622 Revert \u201c[flutter_tools] Disable analytics for more bots\u201d (cla: yes, tool)\n\n50641 Reland: [flutter_tools] Disable analytics for more bots (cla: yes, tool, waiting for tree to go green)\n\n50645 Fix Diagnostics subclasses that had the wrong default value for the named parameter. (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-522", "text": "50648 Image tracing (cla: yes, framework, team, waiting for tree to go green)\n\n50652 Fix stack trace parsing on non-debug builds; add e2e tests (cla: yes, framework, team, tool)\n\n50659 Added linking to viewInsets and viewPadding in MediaQuery padding docs (cla: yes, d: api docs, framework, waiting for tree to go green)\n\n50660 Revert \u201cAdd OrderedFocusTraversalPolicy and FocusTraversalGroup to all\u2026 (#49235)\u201d (cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n50661 Revert \u201cTurn back on macOS shard Cirrus caching\u201d (cla: yes, team, team: infra)\n\n50662 Use forward slashes on Windows for git exclude (cla: yes, team, team: infra, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-523", "text": "50663 add an \u2013enable-observatory flag (cla: yes, tool, waiting for tree to go green)\n\n50664 Made xcode_backend stop on error. (cla: yes, tool, waiting for tree to go green)\n\n50666 update packages (cla: yes, team, waiting for tree to go green)\n\n50669 [flutter_tools] Disable analytics on more bots (cla: yes, tool, waiting for tree to go green)\n\n50670 Expose showButtonMenu of PopupMenuButtonState (cla: yes, f: material design, framework, waiting for tree to go green)\n\n50671 Roll engine 0e8ed2715a35..e0ebaea59071 (31 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-524", "text": "50672 Reland: Add OrderedFocusTraversalPolicy and FocusTraversalGroup (#49235) (cla: yes, f: material design, framework, team)\n\n50674 Revert \u201cAlertDialog.actionsOverflowButtonSpacing and ButtonBar.overflowButtonSpacing\u201d (cla: yes, f: material design, framework)\n\n50675 Reland Alert dialog overflow spacing (cla: yes, f: material design, framework, waiting for tree to go green)\n\n50680 [flutter_tools] initialize web stack trace formatter (cla: yes, tool, waiting for tree to go green)\n\n50683 Revert \u201ccatch release builds pre-submit\u201d (cla: yes)\n\n50688 [flutter_tools] Remove mocking and simplify Dart target tests (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-525", "text": "50690 [flutter_tools] remove build script from tool package (cla: yes, team, tool, waiting for tree to go green)\n\n50691 Reduce gradle deps (a: accessibility, cla: yes, d: examples, team, team: gallery, tool)\n\n50693 Clear flaky flag on web benchmarks (cla: yes, team)\n\n50694 Bumping tool_coverage-linux to 14G of memory to avoid OOM kills (cla: yes)\n\n50695 Bumping tool_coverage-linux to 16G of memory to avoid OOM kil\u2026 (cla: yes)\n\n50700 Bumping tool_coverage-linux to 24G of memory to avoid OOM kills (cla: yes)\n\n50702 [flutter_tools] ensure all source maps load correctly for release and profile (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-526", "text": "50707 [flutter_tools] move engine unpack to the flutter tool (cla: yes, tool, waiting for tree to go green)\n\n50710 [flutter_tools] remove globals from depfile usage (cla: yes, tool)\n\n50715 Remove miscellaneous xcworkspacedata (cla: yes, d: examples, team, team: gallery, tool, waiting for tree to go green)\n\n50731 Retry cURL downloads (cla: yes, team: infra, waiting for tree to go green)\n\n50733 Generate message lookup in gen_l10n (a: internationalization, cla: yes, severe: API break, team)\n\n50736 Revert \u201cRoll engine 0e8ed2715a35..e0ebaea59071 (31 commits) (#50671)\u201d (cla: yes, engine)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-527", "text": "50739 [flutter_tools] More Linux version detail (cla: yes, tool)\n\n50740 Generate a Property Sheet for Windows plugins (cla: yes, tool)\n\n50746 Fix the spelling of manditory (cla: yes, framework, waiting for tree to go green)\n\n50748 Add textHeightBehavior and textWidhBasis to AnimatedDefaultTextStyle (a: typography, cla: yes, framework, waiting for tree to go green)\n\n50750 Feature: Allow minLines in SelectableText (cla: yes, f: material design, framework, severe: new feature)\n\n50752 Scrollbar display always (a: desktop, cla: yes, f: cupertino, f: material design, f: scrolling, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-528", "text": "50772 Remove usage of ideviceinstaller in favor of ios-deploy (cla: yes, team, tool, waiting for tree to go green)\n\n50775 Expose insetPadding and clipBehavior in Dialog and AlertDialog. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n50779 [flutter_tools] Handle asynchronous errors writing to stdio (cla: yes, tool, waiting for tree to go green)\n\n50790 fix unnecessary_string_interpolations lint (cla: yes, team)\n\n50803 Roll engine 0e8ed2715a35..2e6786621f7b (49 commits) (cla: yes)\n\n50804 [flutter_tools] Collect more information in ios-handshake failure event (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-529", "text": "50806 unnecessary multiline strings (cla: yes, team, tool, waiting for tree to go green)\n\n50812 Manually roll engine to d60f298d9e7755b8f8204646e7ff03a846f5436c (cla: yes, engine)\n\n50818 [version] Update to the latest test package (cla: yes, team, waiting for tree to go green)\n\n50822 check for fuchsia (cla: yes)\n\n50823 [flutter_tools] move dwds imports to not require g3 visibility (cla: yes, tool, waiting for tree to go green)\n\n50825 start multiline strings with newline (a: tests, cla: yes, d: examples, framework, team, team: gallery, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-530", "text": "50831 Change Focus.unfocus to take a disposition for where the focus should go. (a: desktop, cla: yes, f: focus, f: routes, framework)\n\n50835 Use Async WebDriver for WebFlutterDriver. (a: tests, cla: yes, framework, tool, waiting for tree to go green)\n\n50840 Revert \u201c[flutter_tools] More Linux version detail\u201d (cla: yes, tool)\n\n50841 Update Android activities because plugin registration is now done by FlutterActivity.configureFlutterEngine (cla: yes, d: examples, team, team: gallery, tool, waiting for tree to go green)\n\n50842 Avoid including a potentially animated invisible image (a: images, cla: yes, framework, perf: memory, perf: speed, severe: performance)\n\n50844 [flutter_tools] use uri resolution for asset requests (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-531", "text": "50846 Add additional focus samples. (cla: yes, d: api docs, d: examples, documentation, f: focus, framework, waiting for tree to go green)\n\n50849 Roll engine d60f298d9e77..bb01cb7faf26 (11 commits) (cla: yes, waiting for tree to go green)\n\n50851 Animated placeholder perf (cla: yes, team, waiting for tree to go green)\n\n50853 Revert \u201c[version] Update to the latest test package\u201d (cla: yes, team, tool)\n\n50872 [flutter_tools] fix debug stack traces (cla: yes, tool)\n\n50877 [flutter_tools] include depfile outputs in gradle outputs (cla: yes, tool)\n\n50879 [versions] reland update test to 1.12.0 (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-532", "text": "50895 [flutter_tools] web cleanups (cla: yes, tool)\n\n50904 [flutter_tools] cleanup build_tests to reduce mocking and globals usage (cla: yes, tool, waiting for tree to go green)\n\n50925 Add parameter to Scaffold so its possible to disable open Drawer drag gesture (cla: yes, f: material design, framework, waiting for tree to go green)\n\n50943 Ensure to close connection to VM after collecting coverage (cla: yes, tool)\n\n50945 [flutter_tools] include LICENSE files as build dependencies (cla: yes, tool, waiting for tree to go green)\n\n50948 Script to find Flutter earliest Flutter revision that contains an engine revision (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-533", "text": "50976 serve the generated main.dart file so source_maps work for it (cla: yes, tool, waiting for tree to go green)\n\n50978 nit: Add a short comment explain path dependencies (cla: yes, tool, waiting for customer response)\n\n50979 Colored box and container optimization (a: tests, cla: yes, f: material design, framework, perf: speed, severe: API break, severe: performance)\n\n50980 Upgrade dartdoc to 0.30.1 (cla: yes, team)\n\n50981 [versions] update to latest web driver (cla: yes, team, waiting for tree to go green)\n\n50984 Revert \u201cAnimated placeholder perf\u201d (cla: yes, team)\n\n50985 Enable TextStyle hash test on the Web (a: tests, a: typography, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-534", "text": "50987 Reland test (cla: yes, team, waiting for tree to go green)\n\n50988 add support for the builders configuration for web (cla: yes, tool, waiting for tree to go green)\n\n50989 add docs about writing/running web benchmarks (cla: yes, team)\n\n50994 Roll engine bb01cb7faf26..77c5812d48b8 (cla: yes, engine, team)\n\n50998 Add C++ code generation for key maps. (a: desktop, a: text input, cla: yes, framework, team)\n\n50999 add macos project to macrobenchmarks (cla: yes, team, waiting for tree to go green)\n\n51003 [web] Smoke tests for web engine (cla: yes, d: examples, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-535", "text": "51004 [flutter_tools] Update to latest dwds APIs (cla: yes, framework, team, tool)\n\n51005 [Web] Add Material Card Infinite Scroll benchmark (cla: yes, team, waiting for tree to go green)\n\n51011 Fix comment typo FormField.initialState to FormField.initialValue (cla: yes, d: api docs, documentation, framework, waiting for tree to go green)\n\n51015 Discover devices in parallel instead of serially waiting for each device type (cla: yes, tool, waiting for tree to go green)\n\n51018 Don\u2019t use a default test randomize ordering seed (cla: yes, team, tool)\n\n51047 Weaken stack-trace based tests to allow auto-roll of new engine which will change the format (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-536", "text": "51060 Revert \u201cUpgrade dartdoc to 0.30.1 (#50980)\u201d (cla: yes, team)\n\n51067 [flutter_tools] reload dart_sdk when sources update (cla: yes, tool)\n\n51071 manually roll engine to f2f8c342be3243a7a196587e77678e00d7e30c24 (cla: yes, engine)\n\n51072 Roll engine 77c5812d48b8..84dc383b6428 (16 commits) (cla: yes, waiting for tree to go green)\n\n51075 Removed the unecessary \u201cnew\u201d keyword from the docs (cla: yes, d: api docs, documentation, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-537", "text": "51076 Revert \u201c[flutter_tools] move engine unpack to the flutter tool (#50707)\u201d (cla: yes, tool)\n\n51081 Detect sync vs async obtainKey in ResizeImage (a: images, cla: yes, framework, waiting for tree to go green)\n\n51084 Allow developers to run flutter driver web test directly (cla: yes, tool, waiting for tree to go green)\n\n51088 add WidgetBuildRecorder for benchmarking building widgets (cla: yes, f: material design, team)\n\n51089 Fix TextEditingController doc to call super.initState first (a: text input, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)\n\n51095 Fix stuck keys when shift is released before the letter. (a: desktop, a: tests, a: text input, cla: yes, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-538", "text": "51122 Material Bottom Sheet Reveal/Dismiss animation uses a curved animation (cla: yes, f: material design, framework, waiting for tree to go green)\n\n51130 Remove highContrast from FakeAccessibilityFeatures (a: accessibility, a: tests, cla: yes, framework, waiting for tree to go green)\n\n51131 Revert \u201cLive image cache\u201d (cla: yes, framework, team)\n\n51143 [flutter_tools] adds etag/cache control header to debug asset server (cla: yes, tool)\n\n51149 Fix typo in description for PointerEvent.radiusMax (cla: yes, d: api docs, documentation, framework, waiting for tree to go green)\n\n51150 Fix tests that rely on FadeTransition incorrectly and depend on implementation details of FadeUpwardsTransitionBuilder (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-539", "text": "51158 Fix the issue of Can\u2019t find \\android\\app${assetsDirectory} #50913 (cla: yes, tool)\n\n51161 Add a sample for FocusTraversalGroup (a: desktop, cla: yes, d: api docs, d: examples, documentation, f: focus, framework, waiting for tree to go green)\n\n51185 Updates test expectations for stack traces. (cla: yes, team, work in progress; do not review)\n\n51212 Revert \u201cRoll engine 77c5812d48b8..84dc383b6428 (16 commits)\u201d (cla: yes, engine)\n\n51214 Reduce duration of benchmark to avoid timeout (cla: yes, team)\n\n51216 Update stack trace test goldens to handle engine builds with lazy async stacks (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-540", "text": "51217 Make test more flexible for new args from vm (cla: yes, team)\n\n51221 Verify binaries are signed on pre-submit on release branches (cla: yes, waiting for tree to go green)\n\n51227 [flutter_tools] remove vm_service_client dependency from flutter tool (cla: yes, team, tool)\n\n51235 update cache for flutter test/fast command (cla: yes, tool, waiting for tree to go green)\n\n51240 Remove deprecated DefaultFocusTraversal widget (cla: yes, framework)\n\n51246 Automatically add plugin projects to Windows .sln (cla: yes, tool)\n\n51249 Live image cache (a: images, cla: yes, framework, team)\n\n51302 Fixed a typo in documentation of Transform widget (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-541", "text": "51307 [flutter_tools] add more search paths for source maps (cla: yes, tool)\n\n51314 Update flexible_space_bar.dart (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)\n\n51330 Update covariant_templates_test after changes to TypeError. (cla: yes, framework)\n\n51335 Add width constraints for FlexibleSpaceBar.title in its expanded state, so that overflow of long titles can be handled (cla: yes, f: material design, framework, waiting for tree to go green)\n\n51346 [flutter_tools] don\u2019t fix chrome window size, add more logs (cla: yes, tool)\n\n51375 Extend the gen_l10n integration test (a: internationalization, cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-542", "text": "51391 Roll engine f2f8c342be32..888a62cf2298 (67 commits) (cla: yes, waiting for tree to go green)\n\n51394 Roll engine 888a62cf2298..ecdfc91d1618 (2 commits) (cla: yes, waiting for tree to go green)\n\n51398 Avoid caching image load failures that are retriable (a: images, cla: yes, framework, waiting for tree to go green)\n\n51410 Validate text selection before updating it inside of EditableText (cla: yes, f: material design, framework, waiting for tree to go green)\n\n51418 [Perf/codesize] Reduce constraint member reads during layout (cla: yes, f: cupertino, f: material design, framework, perf: app size, severe: performance)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-543", "text": "51419 [flutter_tools] Rework iOS vmservice handshake failure usage event (platform-ios, tool)\n\n51428 Add debugDoingBuild flag (cla: yes, framework)\n\n51435 remove isinitialroute from RouteSettings (cla: yes, framework, severe: API break)\n\n51436 [flutter_tools] Don\u2019t try to run pub before the version command (cla: yes, tool)\n\n51438 Implement VisualDensity for text fields. (a: desktop, cla: yes, f: material design, framework, team)\n\n51439 Reduce closure allocation in RenderObject.cleanRelayoutBoundary (cla: yes, framework)\n\n51440 [flutter_tool] Where possible, catch only subtypes of Exception (cla: yes, tool)\n\n51441 Revert \u201cLive image cache\u201d (cla: yes, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-544", "text": "51443 [flutter_tools] reduce globals in web validator and chrome launcher (cla: yes, tool)\n\n51444 [flutter_tools] remove globals from plist parser and update tests (cla: yes, tool)\n\n51453 Move embedding and linking Flutter frameworks into the tool (cla: yes, d: examples, platform-ios, t: xcode, team, team: gallery, tool)\n\n51466 Revert \u201cRetry cURL downloads\u201d (cla: yes)\n\n51468 fix pom file not found when run app with local engine (cla: yes, tool, waiting for customer response, waiting for tree to go green)\n\n51476 Revert \u201c[flutter_tools] initialize frontend server with build\u201d (cla: yes, tool)\n\n51477 [flutter_tools] Reland initialize frontend_sever with build (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-545", "text": "51480 Roll engine ecdfc91d1618..ecabc1037652 (20 commits) (cla: yes, waiting for tree to go green)\n\n51485 Live image cache (cla: yes, framework, team, waiting for tree to go green)\n\n51489 Revert \u201c[Perf/codesize] Reduce constraint member reads during layout\u201d (cla: yes, f: cupertino, f: material design, framework)\n\n51490 improve web benchmark error reporting (cla: yes, f: material design, team)\n\n51493 [web] Allow benchmarks to customize their score keys (cla: yes, platform-web, team)\n\n51495 Convert Diagnosticable to a mixin (a: accessibility, cla: yes, f: cupertino, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-546", "text": "51496 Fix expression evaluation test leaking flutter_tester processes. (cla: yes, tool)\n\n51500 [flutter_tools] hide usage of package:mustache behind interface (cla: yes, tool)\n\n51503 Validate empty pubspec plugin section (cla: yes, tool)\n\n51505 ensure dart defines work on web and not web (cla: yes, framework)\n\n51507 don\u2019t do a version check when invoking flutter in test_test.dart (cla: yes, tool, waiting for tree to go green)\n\n51508 Replace clean command test functions with test groups (cla: yes, tool)\n\n51517 Add missing features to DefaultTextStyleTransition and AnimatedDefaultTextStyle (a: animation, a: typography, cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-547", "text": "51518 re-land \u201cRetry cURL downloads\u201d (cla: yes)\n\n51519 Add Linux and Windows target platforms (a: desktop, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery)\n\n51520 Generate a makefile for Linux plugins (cla: yes, tool)\n\n51523 Roll engine ecabc1037652..060a7733a654 (2 commits) (cla: yes, waiting for tree to go green)\n\n51524 Turn off reupload_on_changes for Cirrus caches (cla: yes, team, team: infra)\n\n51525 Pass RouteSettings into all callers of showGeneralDialog. (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-548", "text": "51527 [flutter_tools] Adds logging for integration test to make it easier to diagnose failures (cla: yes, tool)\n\n51532 Clean App.framework, Generated.xcconfig, flutter_export_environment.sh (cla: yes, tool)\n\n51533 [flutter_tools] update chrome tests to remove globals, mock processmanager, mock platform (cla: yes, tool)\n\n51539 Revert \u201c[flutter_tool] Where possible, catch only subtypes of Exception\u201d (cla: yes, tool)\n\n51567 Reland: [flutter_tool] Where possible, catch only subtypes of Exception (cla: yes, tool)\n\n51569 [fuchsia] Update the SDK version to match engine (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-549", "text": "51570 Roll engine 060a7733a654..c0e29b6000a4 (1 commits) (cla: yes, waiting for tree to go green)\n\n51577 Revert \u201cFix handling backspace on macos with text selection\u201d (a: desktop, a: text input, cla: yes, framework)\n\n51578 [flutter_tools] swap mustache dependency for mustache_template (cla: yes, team, tool)\n\n51586 Roll engine c0e29b6000a4..2914e4ddf6c7 (3 commits) (cla: yes, waiting for tree to go green)\n\n51590 [flutter_tools] allow configuring libraries spec path for the web compilation (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-550", "text": "51591 Add explicit casts to for-in-dynamic. (a: tests, cla: yes, framework, tool, waiting for tree to go green)\n\n51593 [flutter_tools] clean-ups to linux doctor test (cla: yes, tool, waiting for tree to go green)\n\n51597 [flutter_tools] remove LinuxWorkflow from injection and clean up tests (cla: yes, tool)\n\n51600 Roll engine 2914e4ddf6c7..a16d97e507c8 (4 commits) (cla: yes, waiting for tree to go green)\n\n51602 Update gen_l10n tool to require base locale; Stocks app refresh (a: internationalization, cla: yes, severe: crash, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-551", "text": "51605 Roll engine a16d97e507c8..8ce165b31183 (1 commits) (cla: yes, waiting for tree to go green)\n\n51606 Let cupertino & material switches move to the right state after dragging (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n51608 [flutter_tools] deflake pause while hot reload test (cla: yes, tool)\n\n51609 Roll engine 8ce165b31183..e05e2988b2f1 (2 commits) (cla: yes, waiting for tree to go green)\n\n51610 Roll engine e05e2988b2f1..50c263906a00 (3 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-552", "text": "51611 [Perf/codesize] Reland: Reduce constraint member reads during layout (cla: yes, f: cupertino, f: material design, framework)\n\n51613 Roll engine 50c263906a00..7ef053e74510 (1 commits) (cla: yes, waiting for tree to go green)\n\n51615 Roll engine 7ef053e74510..a886fbe04a1a (2 commits) (cla: yes, waiting for tree to go green)\n\n51616 Revert \u201cReland: [flutter_tool] Where possible, catch only subtypes of Exception\u201d (cla: yes, tool)\n\n51623 Roll engine a886fbe04a1a..245b02d7e0b2 (2 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-553", "text": "51625 Roll engine 245b02d7e0b2..7a25baedad54 (1 commits) (cla: yes, waiting for tree to go green)\n\n51644 Roll engine 7a25baedad54..f520bb8d7ab2 (6 commits) (cla: yes, waiting for tree to go green)\n\n51646 Fix doc typo in WidgetsApp.supportedLocales (cla: yes, d: api docs, framework, waiting for tree to go green)\n\n51650 Diagnostics properties for ColoredBox (cla: yes, framework, waiting for tree to go green)\n\n51653 Roll engine f520bb8d7ab2..cc0e21b5d2fb (2 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-554", "text": "51658 [flutter_tools] support run -d chrome test scripts (cla: yes, team, tool, waiting for tree to go green)\n\n51659 Roll engine cc0e21b5d2fb..e47fa0bee913 (1 commits) (cla: yes, waiting for tree to go green)\n\n51660 [flutter_tools] Handle errors on the std{out,err}.done future (cla: yes, tool, waiting for tree to go green)\n\n51663 [web] Add benchmarks for text layout (cla: yes, platform-web, team, waiting for tree to go green)\n\n51665 Temporarily disable the flutter_driver_screenshot_test. (cla: yes, team)\n\n51667 [DataTable] Hide arrow padding when not sorting (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-555", "text": "51668 Roll engine e47fa0bee913..96061d62281d (2 commits) (cla: yes, waiting for tree to go green)\n\n51674 Keep render tree and element tree in sync when re-used elements move in a MultiChildRenderObjectElement\u2019s child list (cla: yes, framework, waiting for tree to go green)\n\n51676 Fix _checkPodCondition not handling CocoaPodsStatus.brokenInstall (cla: yes, tool)\n\n51677 Add Android Chrome support to Flutter Web Driver. (a: tests, cla: yes, framework, tool)\n\n51678 Add timeout flag to devices command, pipe through discovery (cla: yes, platform-fuchsia, platform-ios, tool)\n\n51679 Fix SliverHitTestResult.addWithAxisOffset\u2019s sign (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-556", "text": "51680 [flutter_tools] update visual studio and validator to remove globals, update test cases (cla: yes, tool)\n\n51684 [flutter_tools] no more MockLogger (cla: yes, tool, waiting for tree to go green)\n\n51687 Write FLUTTER_BUILD_MODE when using a local engine (cla: yes, tool)\n\n51689 Roll engine 96061d62281d..142882e1baea (9 commits) (cla: yes, waiting for tree to go green)\n\n51693 Roll engine 142882e1baea..755e2b559d4d (4 commits) (cla: yes, waiting for tree to go green)\n\n51714 [flutter_tools] Allow providing dart-defines to Android, iOS, macOS builds (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-557", "text": "51774 Reland: [flutter_tool] Where possible, catch only subtypes of Exception (cla: yes, tool, waiting for tree to go green)\n\n51782 Add missing back links to the layout catalog (cla: yes, d: api docs, documentation, framework, waiting for tree to go green)\n\n51783 Revert \u201cTemporarily disable the flutter_driver_screenshot_test. (#516\u2026 (cla: yes, team)\n\n51785 Roll engine back to 96061d62281d1840af3ee75fefa41d1cf254fce6 (cla: yes, engine)\n\n51788 Add textfield perf test to devicelab (a: text input, cla: yes, perf: speed, severe: performance, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-558", "text": "51792 Roll engine 96061d62281d..5e474ee860a3 (29 commits) (cla: yes, waiting for tree to go green)\n\n51801 [flutter_tools] disable mirrors in snapshot (cla: yes, waiting for tree to go green)\n\n51808 [flutter_tools] supports tree-shake-icons for web builds (cla: yes, tool, work in progress; do not review)\n\n51821 Roll engine 5e474ee860a3..6991dd981bf7 (10 commits) (cla: yes, waiting for tree to go green)\n\n51832 Add pre-stable support for create on Linux (cla: yes, tool)\n\n51838 Exit for missing Windows plugin projects (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-559", "text": "51838 Exit for missing Windows plugin projects (cla: yes, tool)\n\n51871 Simple repeating word fixes (cla: yes, d: api docs, f: material design, framework, team, tool, waiting for tree to go green)\n\n51876 Branching test (cla: yes, f: material design, framework, team, tool)\n\n51879 Add usage event for failed iOS project migration (cla: yes, tool)\n\n51880 remove duplicated entry in a map (cla: yes, tool)\n\n51882 Add ios platform view integration test (cla: yes, team)\n\n51883 Unlooping Golden File Tests (a: tests, cla: yes, framework, team, team: infra, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-560", "text": "51886 Revert \u201cStep 3 of 4: Make AlertDialog scrollable by default\u201d (cla: yes, f: material design, framework)\n\n51895 Add pre-stable support for create on Windows (cla: yes, tool)\n\n51898 Remove listeners for live images when we clear them (cla: yes, framework)\n\n51901 Roll engine 6991dd981bf7..78a1c7ebf9ad (16 commits) (cla: yes, waiting for tree to go green)\n\n51905 Roll engine 78a1c7ebf9ad..90bd6f814817 (2 commits) (cla: yes, waiting for tree to go green)\n\n51914 Bitcode strip embedded iOS frameworks (cla: yes, t: xcode, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-561", "text": "51916 Fix simctl process exceptions not being caught (cla: yes, tool, waiting for tree to go green)\n\n51920 Remove target platform override on the gallery. (cla: yes, d: examples, team, team: gallery)\n\n51921 Add an adaptive visual density static function, and add it to the sample app. (cla: yes, f: material design, framework)\n\n51925 Custom onPressed behavior for CloseButton widget (cla: yes, f: material design, framework, waiting for tree to go green)\n\n51938 Roll engine 90bd6f814817..e2b74ab80eb4 (4 commits) (cla: yes, waiting for tree to go green)\n\n51943 Revert \u201cWrite FLUTTER_BUILD_MODE when using a local engine\u201d (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-562", "text": "51944 enable avoid_single_cascade_in_expression_statements (cla: yes, framework)\n\n51946 Updated package:test, package:test_core, package:coverage, package:package_config (cla: yes, team, tool, waiting for tree to go green)\n\n51952 [gen_l10n] Escape quote characters in ARB files (a: internationalization, cla: yes, severe: regression, team, tool, waiting for tree to go green)\n\n51960 Revert \u201cReland: [flutter_tool] Where possible, catch only subtypes of Exception\u201d (cla: yes, tool)\n\n51962 Increase the timeout for the cull_opacity_perf_test to 45 seconds (cla: yes, team, waiting for tree to go green)\n\n51963 Skip iOS project migration when script is already embedding frameworks (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-563", "text": "51964 Directionality formatter to move whitespace bidi handling into framework (a: text input, a: typography, cla: yes, framework)\n\n51965 Roll engine e2b74ab80eb4..b77f509e0bb8 (5 commits) (cla: yes, waiting for tree to go green)\n\n51966 [flutter_tools] reduce dependencies and use test coverage (cla: yes, team, tool)\n\n51968 Switching to Gold Status Check (a: error message, a: tests, cla: yes, framework, passed secondary triage, severe: API break, team, team: infra, waiting for tree to go green, will affect goldens)\n\n51973 Update iOS project migration help URL (cla: yes, tool)\n\n51977 Mark devicelab tests as no longer flaky (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-564", "text": "51980 [flutter_tools] support new SDK structure for sdkmanager (cla: yes, tool)\n\n51981 Roll engine b77f509e0bb8..810727bf3f8f (3 commits) (cla: yes, waiting for tree to go green)\n\n51984 [flutter_tools] add status logs to determine where test is getting stuck (cla: yes, tool)\n\n51986 Roll engine 810727bf3f8f..7df0a6e35e5c (7 commits) (cla: yes, waiting for tree to go green)\n\n51988 [flutter_tools] support coverage and machine together (cla: yes, tool)\n\n51993 Made LayoutBuilder\u2019s builder param required as well as added null check (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-565", "text": "51995 [flutter_tools] resolve requests to web directory in debug mode (cla: yes, team, tool)\n\n52017 Roll engine 7df0a6e35e5c..3e380092e270 (1 commits) (cla: yes, waiting for tree to go green)\n\n52021 Reland: [flutter_tool] Where possible, catch only subtypes of Exception (cla: yes, tool)\n\n52022 Update dartdoc to 0.30.2 (cla: yes, team, waiting for tree to go green)\n\n52023 Roll engine 3e380092e270..2e2a9e192d3d (2 commits) (cla: yes, waiting for tree to go green)\n\n52033 [flutter_tools] pin exact build_runner version (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-566", "text": "52034 Correct a typo in the FAB build debugPrint message (cla: yes, f: material design, framework)\n\n52040 update web template to remove some absolute paths (cla: yes, tool)\n\n52041 Revert \u201c[flutter_tools] Allow providing dart-defines to Android, iOS, macOS builds\u201d (cla: yes, team, tool)\n\n52042 Update Maven URL to https (cla: yes, t: gradle, tool)\n\n52043 Local engine build mode (cla: yes, tool, waiting for tree to go green)\n\n52044 [flutter_tools] Reland: Allow providing dart-defines to Android, iOS, macOS builds (cla: yes, team, tool)\n\n52045 Revert \u201c[flutter_tools] supports tree-shake-icons for web builds (#51\u2026 (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-567", "text": "52047 [flutter-tools] see if its a timing issue (cla: yes, tool)\n\n52054 [flutter_tools] Reland: supports tree-shake-icons for web builds (cla: yes, tool)\n\n52055 Improve text formatter repeat filter logic (a: text input, cla: yes, customer: money (g3), framework)\n\n52056 Roll engine 2e2a9e192d3d..e28d26e3054e (7 commits) (cla: yes, waiting for tree to go green)\n\n52060 More fixes for randomizing test order (cla: yes, tool)\n\n52062 Fix version command for certain git workflows (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-568", "text": "52063 Perf test for color filter with saveLayer (cla: yes, customer: dream (g3), perf: speed, severe: performance, team, waiting for tree to go green)\n\n52064 Roll engine e28d26e3054e..3bf196591bc3 (1 commits) (cla: yes, waiting for tree to go green)\n\n52068 Added option to specify you want the keyboard to be dismissed when you scroll. (cla: yes, framework)\n\n52070 Roll engine 3bf196591bc3..4da196caa1ce (1 commits) (cla: yes, waiting for tree to go green)\n\n52071 Bump recommended CocoaPods version to 1.8 (cla: yes, t: xcode, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-569", "text": "52072 Fix for negative padding from a curve in AnimatedPadding. (cla: yes, framework)\n\n52078 Roll engine 4da196caa1ce..5aff31194809 (1 commits) (cla: yes, waiting for tree to go green)\n\n52080 Add overrides for FileSystemUtils (cla: yes, tool, waiting for tree to go green)\n\n52088 Fix flaky test (cla: yes, tool, waiting for tree to go green)\n\n52091 [flutter_tools] refactor GenSnapshot and AotBuilder (cla: yes, tool)\n\n52093 [flutter_tools] fix coverage measurement to report on lib and not test (cla: yes, team)\n\n52125 [gen_l10n] Optional Headers (a: internationalization, cla: yes, severe: new feature, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-570", "text": "52128 Revert \u201cFix version command for certain git workflows\u201d (cla: yes, tool, waiting for tree to go green)\n\n52130 TextField behavior when at maxLength (a: text input, cla: yes, f: material design, framework)\n\n52141 Reland fix --version (cla: yes, tool)\n\n52144 Android SDK test fixes (cla: yes, tool)\n\n52149 [flutter_tools] Update background isolates when performing hot reload/restart (cla: yes, tool)\n\n52152 Revert \u201cLocal engine build mode\u201d (cla: yes, tool)\n\n52158 Updated obsolete URL (cla: yes, tool)\n\n52173 [flutter_tools] prevent StateError when log reader is disposed (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-571", "text": "52177 Roll engine 5aff31194809..619acd58ca55 (23 commits) (cla: yes, waiting for tree to go green)\n\n52178 Roll engine 619acd58ca55..f5a5031e9487 (1 commits) (cla: yes, waiting for tree to go green)\n\n52181 Fix 2 typos within comments (cla: yes)\n\n52187 Roll engine f5a5031e9487..162199452e55 (2 commits) (cla: yes, waiting for tree to go green)\n\n52190 Roll engine 162199452e55..76e119268ed6 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-572", "text": "52194 [ISSUE-30478] Release cache dir lock acquired by a command on sigint or sigterm (cla: yes, tool, waiting for tree to go green)\n\n52203 Roll engine 76e119268ed6..a10f55573376 (1 commits) (cla: yes, waiting for tree to go green)\n\n52208 Roll engine a10f55573376..6d7580db4f1f (1 commits) (cla: yes, waiting for tree to go green)\n\n52212 Fetch tags for version command (cla: yes, tool, waiting for tree to go green)\n\n52214 Roll engine 6d7580db4f1f..981c03631ea5 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-573", "text": "52216 Roll engine 981c03631ea5..aa6bdbab1d2e (1 commits) (cla: yes, waiting for tree to go green)\n\n52259 Roll engine aa6bdbab1d2e..6efadcdf8ce9 (3 commits) (cla: yes, waiting for tree to go green)\n\n52261 [flutter_tools] ensure \u2013track-widget-creation is not enabled for build aot (cla: yes, tool)\n\n52265 [Keyboard] Collects windows key data (a: desktop, cla: yes, framework, platform-windows, team, waiting for tree to go green)\n\n52266 Put fuchsia tools into their own directory, and set source_dir to point at them (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-574", "text": "52271 Roll engine 6efadcdf8ce9..0e2c8feeeb47 (1 commits) (cla: yes, waiting for tree to go green)\n\n52273 Update pub dependencies to roll forward package:test (cla: yes, team, waiting for tree to go green)\n\n52274 Revert \u201cImprove text formatter repeat filter logic\u201d (cla: yes, framework)\n\n52276 [flutter_tools] move stack_trace_mapper and require.js into memory files (cla: yes, tool)\n\n52277 Revert \u201cPut fuchsia tools into their own directory, and set source_dir to point at them. (#52266)\u201d (cla: yes, tool)\n\n52282 [flutter_tools] add more information to obfuscate option (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-575", "text": "52283 [benchmarks] remove build aot benchmarks (cla: yes, team)\n\n52284 [flutter_tools] configure dwds to not serve devtools (cla: yes, tool)\n\n52288 Migrate older Xcode projects off the legacy build system (cla: yes, t: xcode, tool)\n\n52301 [flutter_tools] attempt to fix a List.first crasher in web loading (cla: yes, tool)\n\n52325 [flutter_tools] cache result of BotDetector in persistent tool state (cla: yes, tool)\n\n52329 test change (cla: yes)\n\n52331 [flutter_tool] Use unzip -t instead of zip -T to verify zip files (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-576", "text": "52332 Fix a11y scrolling for reversed lists (a: accessibility, cla: yes, customer: money (g3), f: scrolling, framework)\n\n52335 [gen_l10n] Separate out AppLocalizations classes and subclasses by language code (a: internationalization, cla: yes, f: cupertino, f: material design, team, waiting for tree to go green)\n\n52337 [flutter_tools] Handle StateError in ProtocolDiscovery.uri (cla: yes, tool, waiting for tree to go green)\n\n52340 Make \u2013androidx flag a noop in flutter create (cla: yes, team, tool)\n\n52348 don\u2019t run verify_binaries_codesigned test on experimental branches (cla: yes, team, team: infra)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-577", "text": "52349 Add sample for InheritedNotifier, convert two others to DartPad samples. (cla: yes, f: material design, framework, team)\n\n52351 [flutter_tools] handle null value from SDK version checks (cla: yes, tool)\n\n52352 Revert \u201cAdd missing features to DefaultTextStyleTransition and AnimatedDefaultTextStyle\u201d (cla: yes, f: material design, framework, waiting for tree to go green)\n\n52353 [flutter_tools] Make AndroidConsole check for next line (cla: yes, tool, waiting for tree to go green)\n\n52354 [flutter_tools] Fallback discovery: Don\u2019t crash when an Isolate has no root library (cla: yes, tool, waiting for tree to go green)\n\n52355 [flutter_tools] Throw a tool exit when samples fetch fails (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-578", "text": "52365 [flutter_tools] throw exception instead of string from startApp (cla: yes, tool)\n\n52366 Reland \u201cImprove text formatter repeat filter logic (#52055)\u201d (cla: yes, framework)\n\n52373 Revert \u201cAdd ios platform view integration test (#51882)\u201d (cla: yes, team)\n\n52393 [RaisedButton] Added padding property to RaisedButton.icon (cla: yes, f: material design, framework, waiting for tree to go green)\n\n52408 Fixes typo in comments (cla: yes, d: api docs, documentation, framework, waiting for tree to go green)\n\n52422 Add ignore public member api docs in template (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-579", "text": "52431 Manual roll engine 0e2c8feeeb47..6d8611d0bd93 (31 commits) (cla: yes, engine, waiting for tree to go green)\n\n52433 Minor doc changes (cla: yes, framework)\n\n52434 [web] Write benchmarks to measure canvas-based text layout (a: typography, cla: yes, platform-web, team)\n\n52438 Roll engine 6d8611d0bd93..9a3016fbed9a (3 commits) (cla: yes, waiting for tree to go green)\n\n52440 Reland \u201cAdd ios platform view integration test (#51882)\u201d (cla: yes, team)\n\n52444 move iosworkflow to globals (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-580", "text": "52446 Fix ios_platform_view_tests app name. (Trivail) (cla: yes, team)\n\n52448 [gen_l10n] Fix suppportedLocales list (a: internationalization, cla: yes, severe: regression, team, tool)\n\n52450 Tap gesture no longer add pointer after resetting (cla: yes, f: gestures, framework)\n\n52452 Enables log reader on iOS Simulator to (rudimentary) process multiline messages (cla: yes, tool, waiting for customer response)\n\n52467 Roll engine 9a3016fbed9a..2844d4480b0e (6 commits) (cla: yes, waiting for tree to go green)\n\n52474 fix issue with multiple java runtimes on macOS (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-581", "text": "52476 Revert \u201c[flutter_tools] Update background isolates when performing hot reload/restart\u201d (cla: yes, tool)\n\n52479 [flutter_tools] reland: Update background isolates when performing hot reload/restart (cla: yes, team, tool)\n\n52481 Add errorBuilder to Image widget (a: images, cla: yes, framework, waiting for tree to go green)\n\n52491 [flutter_tools] Hanlde OSError in places where we\u2019ve seen it thrown (cla: yes, tool, waiting for tree to go green)\n\n52494 Roll engine 2844d4480b0e..1aaf1698826c (1 commits) (cla: yes, waiting for tree to go green)\n\n52497 [flutter_tools] always initialize the resident runner from dill (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-582", "text": "52500 add usbmuxd (cla: yes, tool, waiting for tree to go green)\n\n52501 Correct broken curves asset links (cla: yes, framework)\n\n52505 [flutter_tools] remove globals in AndroidDevices (cla: yes, tool)\n\n52506 Roll engine 1aaf1698826c..c30fd2daa8c3 (2 commits) (cla: yes, waiting for tree to go green)\n\n52508 Roll engine c30fd2daa8c3..c28d23068fc3 (1 commits) (cla: yes, waiting for tree to go green)\n\n52511 [flutter_tools] support toggling CanvasKit rendering on with \u2018k\u2019 (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-583", "text": "52514 Roll engine c28d23068fc3..25cded57421b (3 commits) (cla: yes, waiting for tree to go green)\n\n52515 Revert \u201c[flutter_tools] remove globals in AndroidDevices\u201d (cla: yes, tool)\n\n52516 Roll engine 25cded57421b..29b455d85047 (3 commits) (cla: yes, waiting for tree to go green)\n\n52519 Roll engine 29b455d85047..85e6b01ae263 (1 commits) (cla: yes, waiting for tree to go green)\n\n52523 Roll engine 85e6b01ae263..d7a00b8b09b0 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-584", "text": "52532 Move flutter_gallery to the testing folder (a: accessibility, cla: yes, d: examples, f: cupertino, f: material design, team, team: gallery, tool)\n\n52534 Roll engine d7a00b8b09b0..f746b01c402e (1 commits) (cla: yes, waiting for tree to go green)\n\n52539 Roll engine f746b01c402e..af426986b337 (1 commits) (cla: yes, waiting for tree to go green)\n\n52542 [flutter_tools]: reland android device cleanup (cla: yes, tool)\n\n52543 [flutter_tools]: reland move engine unpack to dart (cla: yes, tool)\n\n52547 Make AnimatedSwitcher example into a dartpad example (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-585", "text": "52549 Revert \u201c[flutter_tools]: reland move engine unpack to dart\u201d (cla: yes, tool)\n\n52550 Roll engine af426986b337..ecebfb89cace (3 commits) (cla: yes, waiting for tree to go green)\n\n52553 Move ios screenshot test to flutter gold. (a: tests, cla: yes, framework, team)\n\n52555 Roll engine ecebfb89cace..57e69fe1765b (1 commits) (cla: yes, waiting for tree to go green)\n\n52556 Added the \u201ctrace-whitelist\u201d flag to run. (cla: yes, tool)\n\n52558 [web] Add support for ChunkEvents during image loading (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-586", "text": "52560 Remove missed frame budget count (cla: yes, severe: performance, team, waiting for tree to go green)\n\n52561 fix changinternalstate crash when remove local history entry in final\u2026 (cla: yes, f: routes, framework, waiting for tree to go green)\n\n52562 Fixed a typo. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n52563 Roll engine 57e69fe1765b..9226a3881e39 (1 commits) (cla: yes, waiting for tree to go green)\n\n52568 Cleanup ios devices (cla: yes, tool, waiting for tree to go green)\n\n52569 Roll engine 9226a3881e39..cf2424bbd289 (3 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-587", "text": "52570 Fall back to environment SDKROOT passed from Xcode (cla: yes, t: xcode, tool)\n\n52574 Do not check the executable status of gen_snapshot if it has not yet been downloaded (cla: yes, tool, waiting for tree to go green)\n\n52579 Revert \u201c[flutter_tools]: reland android device cleanup\u201d (cla: yes, tool)\n\n52580 Fix typo its to it\u2019s (a: tests, cla: yes, d: api docs, framework, waiting for tree to go green)\n\n52583 Revert \u201cFall back to environment SDKROOT passed from Xcode\u201d (cla: yes, tool)\n\n52585 Roll engine cf2424bbd289..e48761e5bb05 (4 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-588", "text": "52593 Fix to DrawerController: Call the callback when drawer flung open. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n52606 [flutter_tools] don\u2019t force service worker cache files to be absolute (cla: yes, d: examples, team, team: gallery, tool)\n\n52612 Roll engine e48761e5bb05..025e2d82dda5 (5 commits) (cla: yes, waiting for tree to go green)\n\n52613 [flutter_tools] remove context from WebWorkflow (cla: yes, tool)\n\n52617 Roll engine 025e2d82dda5..1f368293c301 (2 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-589", "text": "52619 Roll engine 1f368293c301..9c8e4fcd8571 (1 commits) (cla: yes, waiting for tree to go green)\n\n52623 Roll engine 9c8e4fcd8571..ab5cce503795 (1 commits) (cla: yes, waiting for tree to go green)\n\n52632 Roll engine ab5cce503795..9cb2fdba7698 (1 commits) (cla: yes, waiting for tree to go green)\n\n52635 Roll engine 9cb2fdba7698..f0e1f77929f7 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-590", "text": "52640 Roll engine f0e1f77929f7..b23138c3598e (1 commits) (cla: yes, waiting for tree to go green)\n\n52646 Roll engine b23138c3598e..3e02f3bec91e (4 commits) (cla: yes, waiting for tree to go green)\n\n52648 Roll engine 3e02f3bec91e..6801b4dae791 (1 commits) (cla: yes, waiting for tree to go green)\n\n52660 Fix paths causing test failures (cla: yes, team)\n\n52661 Ignore key events on edit control on web platform (#52656) (a: text input, cla: yes, framework, platform-web, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-591", "text": "52662 Roll engine 6801b4dae791..a9d49a0f6ef5 (2 commits) (cla: yes, waiting for tree to go green)\n\n52663 Slider (cla: yes, d: examples, f: material design, framework, team, team: gallery, waiting for tree to go green)\n\n52670 Revert \u201cRefactoring Gold to enable both Luci & Cirrus support\u201d (cla: yes, f: cupertino, framework)\n\n52679 Roll engine a9d49a0f6ef5..733933ad5c68 (2 commits) (cla: yes, waiting for tree to go green)\n\n52682 Roll engine 733933ad5c68..fddb0c272e2f (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-592", "text": "52686 [flutter_tools] Reland android device cleanup. (cla: yes, tool)\n\n52687 Roll engine fddb0c272e2f..5a074882514f (1 commits) (cla: yes, waiting for tree to go green)\n\n52691 Add SDK location unit tests (cla: yes, tool)\n\n52706 Update fuchsia remote debug protocol to use package:test shim instead of package:test_api (cla: yes, team, tool)\n\n52708 Roll engine 5a074882514f..2faadc71b60b (4 commits) (cla: yes, waiting for tree to go green)\n\n52716 Roll engine 2faadc71b60b..1f67e7e015e3 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-593", "text": "52717 Add benchmark for platform views (cla: yes, perf: speed, severe: performance, team)\n\n52737 Roll engine 1f67e7e015e3..083a7c2bcaaf (1 commits) (cla: yes, waiting for tree to go green)\n\n52740 Application templates should default to publish_to: none (cla: yes, from: study, tool)\n\n52752 Revert repeater (cla: yes, framework, waiting for tree to go green)\n\n52757 explicitly catch ArgumentError in exitsHappy(), and add tests (cla: yes, tool)\n\n52760 Re-land Luci Support for Gold (CQ+1, a: tests, cla: yes, f: cupertino, framework, team, team: infra, waiting for tree to go green, will affect goldens)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-594", "text": "52761 Ignore fuchsia device-finder no device error (cla: yes, platform-fuchsia, tool)\n\n52765 Reland formatter changes (a: text input, a: typography, cla: yes, framework, waiting for tree to go green)\n\n52769 Use stable IDs for TextSpan SemanticsNodes (a: accessibility, cla: yes, framework, waiting for tree to go green)\n\n52772 [flutter_tools] refactor the IOSDevicePortForwarder and move tests out of devices_test.dart (cla: yes, tool)\n\n52775 [flutter_tools] Don\u2019t crash when analytics fails to initialize (cla: yes, tool)\n\n52781 Move mouse_tracking.dart to rendering (a: desktop, a: mouse, cla: yes, customer: octopod, f: gestures, framework, severe: API break)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-595", "text": "52782 [flutter_tools] disable added integration test due to Cirrus flakes (cla: yes, team, tool)\n\n52789 Fix web test flakiness; enable web golden tests (a: tests, cla: yes, f: material design, framework, team, tool, waiting for tree to go green, will affect goldens)\n\n52806 Roll engine 083a7c2bcaaf..3a2cc9553346 (7 commits) (cla: yes, waiting for tree to go green)\n\n52807 [Api Docs] Improves contentPadding documentation in InputDecoration (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)\n\n52821 [flutter_tools] remove unused Snapshot.dart artifact and associated code (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-596", "text": "52829 Exclude codegen/lib/main.dart from static analysis (cla: yes, team, waiting for tree to go green)\n\n52834 Revert \u201cAdd benchmark for platform views\u201d (cla: yes, team)\n\n52839 Reland: Add Platform View benchmark (cla: yes, team)\n\n52841 [flutter_tools] have the tool print the current canvaskit mode when toggling (cla: yes, tool)\n\n52843 Roll engine 3a2cc9553346..758de2d05d1d (2 commits) (cla: yes, waiting for tree to go green)\n\n52845 [flutter_tool] remove extra usage of .packages in vmservice APIs (cla: yes, tool)\n\n52846 Move outputPreferences to globals (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-597", "text": "52846 Move outputPreferences to globals (cla: yes, tool)\n\n52847 Move xcodeProjectInterpreter to globals (cla: yes, tool)\n\n52848 iOS test should specify DeviceOperatingSystem.ios (cla: yes, team)\n\n52850 Android test should run in stage: devicelab (cla: yes, team)\n\n52853 Mark platform_views_scroll_perf__timeline_summary as flaky (cla: yes, team)\n\n52854 [flutter_tools] refactor iOS tests for Device.startApp into new file (cla: yes, tool)\n\n52857 Roll engine 758de2d05d1d..bb6c9a343d92 (6 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-598", "text": "52858 Do not throw when trying to discover a fuchsia device and the sshConfig is invalid (cla: yes, platform-fuchsia, tool, waiting for tree to go green)\n\n52860 Show Xcode workspace clean output with verbose flag (cla: yes, t: xcode, tool)\n\n52861 fix KeySet.hashCode; enable multiple web tests (a: accessibility, a: tests, cla: yes, f: material design, framework, severe: API break, team, will affect goldens)\n\n52865 Roll engine bb6c9a343d92..216c420a2c06 (1 commits) (cla: yes, waiting for tree to go green)\n\n52870 Fix package name (cla: yes, team, waiting for tree to go green)\n\n52879 Allow recent Dart language features (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-599", "text": "52879 Allow recent Dart language features (cla: yes, tool)\n\n52891 [flutter_tools] refactor iOS install/uninstall to new file (cla: yes, tool)\n\n52893 Revert \u201c[flutter_tools] refactor GenSnapshot and AotBuilder\u201d (cla: yes, tool)\n\n52894 [Material] Allow Appbar to exclude header semantics (a: accessibility, cla: yes, f: material design, framework, waiting for tree to go green)\n\n52896 [flutter_tools] refactor AotBuilder, removing globals and duplicated kernel compilation (cla: yes, tool)\n\n52900 Roll engine 216c420a2c06..373ebe6430b2 (2 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-600", "text": "52906 [flutter_tools] split start app android tests into new file (cla: yes, tool)\n\n52910 Roll engine 373ebe6430b2..06c8a2909e42 (5 commits) (cla: yes, waiting for tree to go green)\n\n52911 [flutter_tools] split isSupportedForProject test into new file (cla: yes, tool)\n\n52913 Fix ios black screen during splash screen if widget binding initializ\u2026 (cla: yes, framework, waiting for tree to go green)\n\n52916 Refactor exits happy (cla: yes, tool, work in progress; do not review)\n\n52917 Roll engine 06c8a2909e42..046a4a6c2bc3 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-601", "text": "52918 [flutter_tools] restore report timings functionality to build aot (cla: yes, tool)\n\n52919 Add entitlement checks to codesigning test (cla: yes, team)\n\n52921 fix typo? (cla: yes, framework, waiting for tree to go green)\n\n52923 Revert \u201cfixes sliver list child layout offset calculation (#42703)\u201d (cla: yes, framework)\n\n52924 Roll engine 046a4a6c2bc3..b1af234b74bb (1 commits) (cla: yes, waiting for tree to go green)\n\n52931 [flutter_tools] fix toFilePath called on null (cla: yes, tool)\n\n52934 [flutter_tools] split logger test and create log reader testing interface (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-602", "text": "52935 Roll engine b1af234b74bb..fd60ddf7517c (2 commits) (cla: yes, waiting for tree to go green)\n\n52936 [flutter_tools] update to latest dwds API (cla: yes, team, tool)\n\n52938 Roll engine fd60ddf7517c..8dbb8ca70b9f (1 commits) (cla: yes, waiting for tree to go green)\n\n52953 Prepare Flutter for SDK changes to runZoned. (cla: yes, tool)\n\n52958 Roll engine 8dbb8ca70b9f..4200339ff1b0 (4 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-603", "text": "52961 Enable more material and cupertino tests on the Web (cla: yes, f: cupertino, f: material design, framework, team)\n\n52964 Roll engine 4200339ff1b0..6aedbb7d3454 (1 commits) (cla: yes, waiting for tree to go green)\n\n52966 Roll engine 6aedbb7d3454..77e6d32a1ebb (1 commits) (cla: yes, waiting for tree to go green)\n\n52972 Roll engine 77e6d32a1ebb..2d42c74a348d (1 commits) (cla: yes, waiting for tree to go green)\n\n52974 Roll engine 2d42c74a348d..fdf4f7883f67 (2 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-604", "text": "52977 Enable CupertinoContextMenu on Web (cla: yes, f: cupertino, platform-web, waiting for tree to go green)\n\n52978 Ensure default value for report timings (cla: yes, tool)\n\n52982 Added ability to change dropdown colour manually (cla: yes, f: material design, framework, waiting for tree to go green)\n\n53003 [MediaQueryData] adds assertions to MediaQueryData Constructor (cla: yes, framework, waiting for tree to go green)\n\n53030 save and restore the chrome session local storage information (cla: yes, tool)\n\n53093 Update utils.dart to work with the breaking change of SDK issue 40678 (cla: yes, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-605", "text": "53100 Revert \u201cRoll engine 2d42c74a348d..fdf4f7883f67 (2 commits)\u201d (cla: yes, engine)\n\n53105 Implement DropdownButton and DropdownButtonFormField onTap callback (cla: yes, customer: money (g3), f: material design, framework, severe: new feature, waiting for tree to go green)\n\n53113 Remove use of \u201cimplements Function\u201d in tests. (cla: yes, f: material design, framework)\n\n53118 Include metadata in GitHub crash template (a: triage improvements, cla: yes, tool)\n\n53139 Move BuildSystem context fetch to globals.dart (cla: yes, team, tool)\n\n53141 Convert analyze_test to testWithoutContext (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-606", "text": "53142 Convert some code_signing_tests to testWithoutContext (cla: yes, team, tool)\n\n53144 Remove IMobileDevice from globals, hoist to XCDevice constructor (cla: yes, team, tool)\n\n53149 Revert \u201cFix RefreshIndicator performance issue\u201d (cla: yes, f: material design, framework)\n\n53153 Let flutter attach find the service port by looking through old logs again (cla: yes, team, tool, waiting for tree to go green)\n\n53177 Convert cocoapods_validator_test to testWithoutContext (cla: yes, tool)\n\n53181 [flutter_tools] fix type error with AppDomain current directory (cla: yes, tool)\n\n53183 [flutter_tools] test and catch more exception types in web runner (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-607", "text": "53184 Increase xcdevice timeout to 2 seconds (cla: yes, t: xcode, tool)\n\n53187 Reland fixes sliver list child layout offset calculation (cla: yes, framework, waiting for tree to go green)\n\n53193 Remove dead vmservice.RPCError catch (cla: yes, team, tool)\n\n53194 [flutter_tools] support new SDK structure for sdkmanager (#51980) (CQ+1, cla: yes, engine, framework, team, tool)\n\n53197 bumped the memory for analyze-linux (cla: yes)\n\n53200 Roll engine 2d42c74a348d..d7ad50c96f05 (54 commits) (cla: yes, engine, severe: API break, waiting for tree to go green, will affect goldens)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-608", "text": "53203 Remove IOSDeploy from globals, hoist to XCDevice constructor (cla: yes, team, tool)\n\n53206 Reland \u201cFix RefreshIndicator performance issue\u201d (cla: yes, f: material design, framework, waiting for tree to go green)\n\n53208 Convert idevicescreenshot and upgradePbxProjWithFlutterAssets tests to testWithoutContext (cla: yes, team, tool)\n\n53209 Move processUtils into globals (cla: yes, team, tool)\n\n53210 Roll engine 2d42c74a348d..3a68f689996f (56 commits) (cla: yes, waiting for tree to go green)\n\n53211 fixed typo in HttpClient failure message (a: tests, cla: yes, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-609", "text": "53213 Remove XcodeValidator from context (cla: yes, team, tool)\n\n53217 [flutter_tool] Timeout the Azure bot detector http request (cla: yes, tool, waiting for tree to go green)\n\n53221 Replace uses of deprecated CastError with TypeError. (cla: yes, framework, tool)\n\n53226 Revert \u201cReplace uses of deprecated CastError with TypeError (#53221)\u201d (cla: yes, framework, tool)\n\n53227 Roll engine 3a68f689996f..945967054bcb (11 commits) (cla: yes, waiting for tree to go green)\n\n53251 Expose new pub outdated command (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-610", "text": "53258 [flutter_tools] Prepare for OSError to implement Exception (cla: yes, tool, waiting for tree to go green)\n\n53268 [flutter_tools] refactor build_system and targets to be context-free (cla: yes, tool, waiting for tree to go green)\n\n53269 Reland \u201cReplace uses of deprecated CastError with TypeError (#53221)\u201d (cla: yes, framework, tool, waiting for tree to go green)\n\n53273 Expose extra frontend options through build apk/ios/macOS (cla: yes, tool)\n\n53275 Allow user to specify which Chrome binary to use. (cla: yes, tool, waiting for tree to go green)\n\n53279 Renamed test class to avoid conflict with the navigator page api. (cla: yes, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-611", "text": "53282 Revert \u201cLet flutter attach find the service port by looking through old logs again\u201d (cla: yes, team, tool)\n\n53285 Roll engine 945967054bcb..dd102bf228af (8 commits) (cla: yes, waiting for tree to go green)\n\n53286 Started caching results from iana. (cla: yes, team, waiting for tree to go green)\n\n53289 Reland #53153 to attach to existing modules and apps for Android (cla: yes, team, tool)\n\n53291 Convert CocoaPods tests to testWithoutContext (cla: yes, team, tool)\n\n53293 Roll engine dd102bf228af..e79aef61d166 (2 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-612", "text": "53295 [web] A more realistic text layout benchmark (a: typography, cla: yes, platform-web, team, waiting for tree to go green)\n\n53301 Revert \u201cMove processUtils into globals (#53209)\u201d (cla: yes, tool)\n\n53302 Windows template update project (cla: yes, tool)\n\n53303 Treeshake debugFillProperties (cla: yes, framework)\n\n53304 Remove SimControl from context and globals (cla: yes, team, tool)\n\n53307 Push iMobileDevice and iosDeploy instantiation into XCDevice constructor (cla: yes, tool, waiting for tree to go green)\n\n53310 Mark stable devicelab tests as unflaky (cla: yes, team, team: flakes, team: infra, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-613", "text": "53312 Roll engine e79aef61d166..f1008d9bf99e (4 commits) (cla: yes, waiting for tree to go green)\n\n53315 Roll engine f1008d9bf99e..b235233e9d39 (1 commits) (cla: yes, waiting for tree to go green)\n\n53317 Remove flutter attach test timeout (cla: yes, team, waiting for tree to go green)\n\n53321 Roll engine b235233e9d39..23dff31a3834 (2 commits) (cla: yes, waiting for tree to go green)\n\n53329 Add error callbacks to other image resolving code (a: images, cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-614", "text": "53343 [flutter_tools] update iOS deploy tests for best practices (cla: yes, tool, waiting for tree to go green)\n\n53344 [RefreshIndicator] adds strokeWidth parameter to RefreshIndicator (cla: yes, f: material design, framework, waiting for tree to go green)\n\n53351 [flutter tools] rewrite launch non-prebuilt app tests (cla: yes, tool, waiting for tree to go green)\n\n53356 Roll engine 23dff31a3834..8fa7214d3ac3 (9 commits) (cla: yes, waiting for tree to go green)\n\n53365 Roll engine 8fa7214d3ac3..b2bdeb3f0f16 (4 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-615", "text": "53368 Implement DropdownMenuItem.onTap (cla: yes, customer: money (g3), f: material design, framework, severe: new feature, waiting for tree to go green)\n\n53377 Doc Improvements (cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)\n\n53379 [flutter_tools] don\u2019t trim log messages from the web (cla: yes, tool)\n\n53385 Uninstall app flag (cla: yes, team, team: flakes, tool)\n\n53403 Roll engine b2bdeb3f0f16..67e66f7c8118 (4 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-616", "text": "53424 Roll engine 67e66f7c8118..020d7c5c80ee (3 commits) (cla: yes, waiting for tree to go green)\n\n53425 ScrollPosition.jumpTo call notifyListeners twice (a: quality, cla: yes, f: scrolling, framework, waiting for tree to go green)\n\n53429 [flutter_tools] unpin SDK deps when upgrading packages (cla: yes, tool, waiting for tree to go green)\n\n53433 Add ability to shard customer tests (cla: yes, team, waiting for tree to go green)\n\n53434 Reset autovalidate in the text input form field of the Date Picker when switching input modes. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n53435 disabled flutter_gallery_ios32__transition_perf (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-617", "text": "53438 Roll engine 020d7c5c80ee..91ccdbe7f159 (5 commits) (cla: yes, waiting for tree to go green)\n\n53442 Revert \u201cdisabled flutter_gallery_ios32__transition_perf (#53435)\u201d (cla: yes, team)\n\n53443 Inject Usage dependency into FallbackDiscovery and BuildEvent (cla: yes, team, tool)\n\n53446 Roll engine 91ccdbe7f159..3ee9e3d3785c (1 commits) (cla: yes, waiting for tree to go green)\n\n53448 Refresh Material and Cupertino localizations (a: internationalization, cla: yes, f: cupertino, f: material design, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-618", "text": "53450 Only fetch tags when not on dev/beta/stable (cla: yes, tool, waiting for tree to go green)\n\n53465 Roll engine 3ee9e3d3785c..946df02dc6da (2 commits) (cla: yes, waiting for tree to go green)\n\n53466 [flutter_tools] dont create synthetic sdk when running consumer-only (cla: yes, tool)\n\n53467 [versions] update EVERYTHING (cla: yes, team)\n\n53492 [flutter_tools] use package uuid consistently (cla: yes, tool, waiting for tree to go green)\n\n53538 Roll engine 946df02dc6da..f3d9f9a950eb (3 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-619", "text": "53543 Roll engine f3d9f9a950eb..361d5d53206e (1 commits) (cla: yes, waiting for tree to go green)\n\n53561 Roll engine 361d5d53206e..70f5a07fe6ac (2 commits) (cla: yes, waiting for tree to go green)\n\n53591 update to engine hash that includes Dart 2.7.2 (cla: yes, engine, framework, team, tool)\n\n53594 Fixed a bug with the month grid showing the wrong month after selecting a date. (cla: yes, f: material design, framework)\n\n53595 Enable expression evaluation in debugger for web platform (cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-620", "text": "53597 Roll engine 70f5a07fe6ac..c779894d0895 (3 commits) (cla: yes, waiting for tree to go green)\n\n53601 [flutter_tools] handle unsafe build outputs (cla: yes, tool, waiting for tree to go green)\n\n53604 TODO Audits - 1 (cla: yes, team, waiting for tree to go green)\n\n53605 [gen_l10n] Escape special JSON characters in generateString utility function (a: internationalization, cla: yes, team, tool, waiting for tree to go green)\n\n53608 Use feature flags for desktop cache (cla: yes, tool)\n\n53610 Revert \u201cImplements the navigator page api (#50362)\u201d (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-621", "text": "53613 Un-gate value setting in formatter repeat check logic (a: text input, cla: yes, framework, severe: crash, waiting for tree to go green)\n\n53617 Restore Windows codegen (cla: yes, team, waiting for tree to go green)\n\n53619 Removing Firebase patch (cla: yes, team, waiting for tree to go green)\n\n53666 [flutter_tools] cache the base URL as index.html (cla: yes, tool, waiting for tree to go green)\n\n53669 Roll flutter engine to 10887c2abe7b7fe5866e84d6b63dd546f02fc963 (cla: yes, engine, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-622", "text": "53675 Roll engine 10887c2abe7b..6b09714a2c88 (4 commits) (cla: yes, waiting for tree to go green)\n\n53676 Turn metal on in the platform views benchmark (cla: yes, team)\n\n53686 Add benchmark reproducing large static scrolling content (cla: yes, team, waiting for tree to go green)\n\n53687 Roll engine 6b09714a2c88..fc5b44c901ce (4 commits) (cla: yes, waiting for tree to go green)\n\n53691 [flutter_tools] Handle full device when creating a temp directory (cla: yes, tool, waiting for tree to go green)\n\n53694 Delete unused NDK location checks (cla: yes, platform-android, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-623", "text": "53698 Revert \u201cSlider\u201d (cla: yes, f: material design, framework, team)\n\n53699 Fix a typo (cla: yes, framework)\n\n53700 Roll engine fc5b44c901ce..807ca8543cf1 (1 commits) (cla: yes, waiting for tree to go green)\n\n53701 Precache platform filter change (cla: yes, tool)\n\n53708 Reland \u201cImplements the navigator page api (#50362)\u201d (cla: yes, framework)\n\n53710 Roll engine 807ca8543cf1..7fc22d118e17 (2 commits) (cla: yes, waiting for tree to go green)\n\n53713 Material Date Picker should honor DialogTheme shape, and elevation. (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-624", "text": "53717 Fuchsia device is ephemeral. (cla: yes, tool, waiting for tree to go green)\n\n53718 Copy APK into a known location, so it can be easily discovered (cla: yes, team, tool)\n\n53723 add lock.yml (cla: yes)\n\n53739 Roll engine 7fc22d118e17..bcc144d0d138 (11 commits) (cla: yes, waiting for tree to go green)\n\n53744 Roll engine bcc144d0d138..767b48abc91e (1 commits) (cla: yes, waiting for tree to go green)\n\n53757 Roll engine 767b48abc91e..2b37d1d46ce5 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-625", "text": "53764 Roll engine 2b37d1d46ce5..c9506cb8e93e (1 commits) (cla: yes, waiting for tree to go green)\n\n53769 Roll engine c9506cb8e93e..46277fd2ca54 (3 commits) (cla: yes, waiting for tree to go green)\n\n53775 Improve downgrade-upgrade integration test (cla: yes, tool, waiting for tree to go green)\n\n53793 Fixed the \u201ctouch target size\u201d broken docs link. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n53795 [web] Unskip assertions test. Update for latest stack trace format. (cla: yes, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-626", "text": "53799 Add LICENSE file to packages/flutter, add test to make sure it\u2019s picked up. (a: build, cla: yes, team)\n\n53834 Replace isInstanceOf uses with isA (cla: yes, framework)\n\n53838 Roll engine 46277fd2ca54..1adfd639b465 (23 commits) (cla: yes, waiting for tree to go green)\n\n53845 Roll engine 1adfd639b465..8166a91bca11 (2 commits) (cla: yes, waiting for tree to go green)\n\n53846 Add toggleable attribute to Radio (cla: yes, f: material design, framework)\n\n53851 only auto-lock issues, not pull requests (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-627", "text": "53856 Roll engine 8166a91bca11..49d65b45cfee (2 commits) (waiting for tree to go green)\n\n53866 Roll engine 49d65b45cfee..f56e678e7fa9 (2 commits) (cla: yes, waiting for tree to go green)\n\nMerged PRs in flutter/engine\n\nThere were 1421 pull requests.\n\n12467 Add support for on/off switch labels when built on iOS 13. (cla: yes)\n\n13119 Use iOS 13 dark content status bar style (cla: yes)\n\n13415 Add support for setting window size limits for glfw (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-628", "text": "13457 [flutter_runner] Enable Skia tracing by default on Fuchsia (Work in progress (WIP), cla: yes)\n\n13487 Use unified logging instead of syslog on iOS 13+ (cla: yes, waiting for tree to go green)\n\n13777 Fix wrong fromRGBO alpha value calculation (cla: yes)\n\n13863 Smart quote/dash configuration support in iOS (cla: yes)\n\n13868 Add ability to control dithering on Paint (cla: yes)\n\n13896 Use ELF for Dart AOT snapshots on Fuchsia. (cla: yes)\n\n13930 [vulkan] Bundle vulkan validation layer so files (cla: yes)\n\n13933 Report backing store changes in the macOS view (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-629", "text": "13935 Refactor CanvasKit backend in preparation for platform views (cla: yes)\n\n13950 Run benchmarks in Cirrus (cla: yes, waiting for tree to go green)\n\n13951 Always set mEditable values when different in TextPlugin (cla: yes)\n\n13952 Configures ICU to load the timezone data (cla: yes)\n\n13965 Added API guards to flags in PlatformPlugin that were introduced after Flutter\u2019s min SDK version. (cla: yes)\n\n13976 Dynamically determine whether to use offscreen surface based on need (cla: yes)\n\n13984 Listen to keyUp event on meta modified keys (cla: yes, platform-macos)\n\n13985 [web] Initial support for LineMetrics (cla: yes, platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-630", "text": "13986 Add flow test fixtures and tests (affects: engine, cla: yes, code health, waiting for tree to go green)\n\n14002 Add shell api to set default for windows data (cla: yes)\n\n14003 Adding support for enabling semantics on desktop (cla: yes)\n\n14011 Add a separate target for Dart coverter on FML types. (cla: yes)\n\n14012 Roll src/third_party/skia 8fa469d3bcd6..4f90f9d83183 (4 commits) (autoroller: commit, cla: yes)\n\n14013 Roll src/third_party/skia 4f90f9d83183..54036c9b8e4b (4 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-631", "text": "14014 Roll fuchsia/sdk/core/mac-amd64 from 1nxSz\u2026 to Bxgic\u2026 (autoroller: commit, cla: yes)\n\n14015 Roll fuchsia/sdk/core/linux-amd64 from hK-BD\u2026 to kzFUw\u2026 (autoroller: commit, cla: yes)\n\n14016 Roll src/third_party/skia 54036c9b8e4b..40a7dfc268b6 (1 commits) (autoroller: commit, cla: yes)\n\n14017 Roll fuchsia/sdk/core/mac-amd64 from Bxgic\u2026 to aVdHP\u2026 (autoroller: commit, cla: yes)\n\n14018 Started setting the FlutterOverlayView\u2019s bounds when it gets added to its superview. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-632", "text": "14019 Added docstring for FlutterOverlayView. (cla: yes)\n\n14021 Roll fuchsia/sdk/core/linux-amd64 from kzFUw\u2026 to xyyOR\u2026 (autoroller: commit, cla: yes)\n\n14022 Avoid retaining self in block (cla: yes)\n\n14024 Wire up Opacity on Fuchsia, round 2 (affects: engine, cla: yes, waiting for tree to go green)\n\n14026 Catch exception for unit test failure and show output. (cla: yes)\n\n14035 Include uncommitted files when checking for code format issues. (cla: yes)\n\n14043 Roll fuchsia/sdk/core/linux-amd64 from xyyOR\u2026 to mSEnz\u2026 (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-633", "text": "14046 fix try to copy null will cause crash on iOS (cla: yes)\n\n14053 Revert \u201cDo not default to downstream affinity on iOS insertText\u201d (cla: yes)\n\n14054 Roll src/third_party/skia 40a7dfc268b6..861ac61cb1a9 (34 commits) (autoroller: commit, cla: yes)\n\n14056 A11y desktop fix the method call (accessibility, cla: yes, platform-web)\n\n14058 Roll src/third_party/dart 134e0e28cd..96e7a4ff30 (38 commits) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-634", "text": "14059 Roll src/third_party/skia 861ac61cb1a9..c96f5108df28 (10 commits) (autoroller: commit, cla: yes)\n\n14060 more tests for enabling semantics (cla: yes)\n\n14061 Fallback to Roboto if no suitable font is found (cla: yes)\n\n14062 Fix fml_unittests on Fuchsia (cla: yes)\n\n14063 Roll src/third_party/dart 96e7a4ff30..73fdf19b56 (3 commits) (cla: yes)\n\n14065 Roll src/third_party/skia c96f5108df28..73beaaa48fcc (2 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-635", "text": "14066 Roll src/third_party/skia 73beaaa48fcc..e8c96d8e6116 (4 commits) (autoroller: commit, cla: yes)\n\n14067 Roll fuchsia/sdk/core/linux-amd64 from mSEnz\u2026 to 2Nav3\u2026 (autoroller: commit, cla: yes)\n\n14068 Roll src/third_party/dart 73fdf19b56..077795b3e5 (15 commits) (cla: yes)\n\n14069 Roll src/third_party/skia e8c96d8e6116..2792515dab7c (1 commits) (autoroller: commit, cla: yes, waiting for tree to go green)\n\n14070 Update to newer path fill-type API in Skia (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-636", "text": "14072 Roll src/third_party/dart 077795b3e5..3f32196958 (29 commits) (cla: yes)\n\n14073 Roll src/third_party/dart 3f32196958..e4344a568f (1 commits) (cla: yes)\n\n14074 Dart cherry-picks for 1.12.13 (cla: yes)\n\n14079 Remove suprious warning (cla: yes)\n\n14080 Roll fuchsia/sdk/core/mac-amd64 from aVdHP\u2026 to 6QxEZ\u2026 (autoroller: commit, cla: yes)\n\n14081 Fix live region logic (cla: yes)\n\n14082 add pointer data santizing in flutter web engine (cla: yes, platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-637", "text": "14083 Roll src/third_party/dart e4344a568f..a4d799c402 (7 commits) (cla: yes)\n\n14084 Roll src/third_party/skia 2792515dab7c..49e564e5e02c (28 commits) (autoroller: commit, cla: yes)\n\n14085 Roll fuchsia/sdk/core/mac-amd64 from 6QxEZ\u2026 to OSk8h\u2026 (autoroller: commit, cla: yes)\n\n14086 Update fallback to Roboto url to be HTTPS (cla: yes, waiting for tree to go green)\n\n14087 Revert \u201cFix fml_unittests (#14062)\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-638", "text": "14088 Revert PRs to unblock David and Jim\u2019s work (cla: yes)\n\n14089 Roll src/third_party/dart a4d799c402..89e31069e8 (14 commits) (cla: yes)\n\n14090 Roll src/third_party/skia 49e564e5e02c..75368c3a0290 (23 commits) (autoroller: commit, cla: yes)\n\n14091 Relanding: Add Flow unittests and fixtures (affects: engine, cla: yes, code health, waiting for tree to go green)\n\n14092 Move Fuchsia unit test runners into engine repo (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-639", "text": "14093 Roll src/third_party/dart 89e31069e8..19fc1016da (6 commits) (cla: yes)\n\n14094 Started specifying the OS version for running the tests. (cla: yes)\n\n14100 Cherry-picks for 1.12.13 (cla: yes)\n\n14104 Rework simpler conditional offscreen for screen readback support. (cla: yes)\n\n14107 Roll src/third_party/dart 19fc1016da..2a13b1fe26 (6 commits) (cla: yes)\n\n14125 Roll src/third_party/dart 2a13b1fe26..413867d678 (3 commits) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-640", "text": "14127 Fix one more use of deprecated path fill type API (cla: yes)\n\n14128 Roll fuchsia/sdk/core/mac-amd64 from OSk8h\u2026 to XCAOU\u2026 (autoroller: commit, cla: yes)\n\n14129 Roll src/third_party/skia 75368c3a0290..ccca30aad770 (12 commits) (autoroller: commit, cla: yes)\n\n14130 Roll src/third_party/dart 413867d678..a9c77229c2 (1 commits) (cla: yes)\n\n14131 Refactoring text editing. Strategy pattern is used to handle different browser/operating system and a11y behavior. (affects: text input, cla: yes, platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-641", "text": "14132 [web] Fix text measurement when constraint width is infinite (cla: yes, platform-web)\n\n14133 Roll src/third_party/skia ccca30aad770..6344c2937997 (13 commits) (autoroller: commit, cla: yes)\n\n14134 [web][felt] fix source map file path (cla: yes)\n\n14135 Fix platform view offsets incorrectly taking into account device pixel ratios. (cla: yes)\n\n14136 Expanded our scenario_app docs. (cla: yes)\n\n14137 Disable fml_tests until they\u2019re fixed on Fuchsia (cla: yes)\n\n14138 [web] DOM text measurement return a LineMetrics list if single-line (cla: yes, platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-642", "text": "14139 Roll src/third_party/skia 6344c2937997..0af32fdf5fea (12 commits) (autoroller: commit, cla: yes)\n\n14141 Roll src/third_party/skia 0af32fdf5fea..f5542b6aa307 (4 commits) (autoroller: commit, cla: yes)\n\n14142 Disable a11y on detach (cla: yes)\n\n14143 Roll src/third_party/skia f5542b6aa307..0af13b3caf03 (1 commits) (autoroller: commit, cla: yes)\n\n14144 Roll fuchsia/sdk/core/mac-amd64 from XCAOU\u2026 to qQlb5\u2026 (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-643", "text": "14145 Fix firefox detection to fix app startup for other browsers (cla: yes)\n\n14146 Raise API level for reportFullyDrawn (cla: yes)\n\n14147 v1.12.13+hotfix.3 cherry-picks (cla: yes)\n\n14148 [web] [tests] Changing configurations for firefox (cla: yes)\n\n14149 Do not paint a layer\u2019s children if the children were not prerolled (cla: yes)\n\n14151 Roll src/third_party/skia 0af13b3caf03..cc92b27c78a0 (26 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-644", "text": "14152 Roll src/third_party/skia cc92b27c78a0..3e01360677b2 (2 commits) (autoroller: commit, cla: yes)\n\n14153 Roll src/third_party/skia 3e01360677b2..aa4f7f55829d (3 commits) (autoroller: commit, cla: yes)\n\n14154 Roll fuchsia/sdk/core/mac-amd64 from qQlb5\u2026 to VKso5\u2026 (autoroller: commit, cla: yes)\n\n14156 Roll src/third_party/skia aa4f7f55829d..46e2d8d4a1ae (1 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-645", "text": "14157 Roll src/third_party/skia 46e2d8d4a1ae..24ee4e0341fd (2 commits) (autoroller: commit, cla: yes)\n\n14158 [fuchsia] SnapToNextPhase refactor + add tests and documentation (cla: yes, waiting for tree to go green)\n\n14159 Roll src/third_party/skia 24ee4e0341fd..274a766baf2f (8 commits) (autoroller: commit, cla: yes)\n\n14161 Roll fuchsia/sdk/core/mac-amd64 from VKso5\u2026 to 9C6UA\u2026 (autoroller: commit, cla: yes)\n\n14162 migrate flutter runner to present2 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-646", "text": "14162 migrate flutter runner to present2 (cla: yes)\n\n14163 Convert radians to degrees in canvaskit backend for drawArc (cla: yes)\n\n14165 Fix for tab not working (cla: yes, platform-web)\n\n14168 [shell][fuchsia] Add lib/async/default.h (cla: yes)\n\n14256 Roll src/third_party/skia 274a766baf2f..b60ec7f98b08 (9 commits) (autoroller: commit, cla: yes)\n\n14257 Roll src/third_party/skia b60ec7f98b08..9910d829ad18 (3 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-647", "text": "14258 Roll src/third_party/skia 9910d829ad18..f0148c4881df (1 commits) (autoroller: commit, cla: yes)\n\n14260 Roll src/third_party/dart a9c77229c2..7fcaafbb3e (88 commits) (cla: yes)\n\n14261 Roll fuchsia/sdk/core/linux-amd64 from 2Nav3\u2026 to Zkpa_\u2026 (autoroller: commit, cla: yes)\n\n14262 Roll src/third_party/skia f0148c4881df..c937bc50250d (11 commits) (autoroller: commit, cla: yes)\n\n14263 Add support for platform views in the CanvasKit backend (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-648", "text": "14264 Use the versioned canvaskit from unpkg (cla: yes)\n\n14265 Cleanup the IO thread GrContext (cla: yes)\n\n14266 Roll src/third_party/dart 7fcaafbb3e..8b8894648f (1 commits) (cla: yes)\n\n14267 Enable web engine unit tests on Firefox (affects: tests, cla: yes, platform-web)\n\n14268 Create separate objects for isolate state and isolate group state (cla: yes)\n\n14269 Roll src/third_party/skia c937bc50250d..095d2468a075 (7 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-649", "text": "14270 Roll src/third_party/skia 095d2468a075..e56cc054dbae (4 commits) (autoroller: commit, cla: yes)\n\n14273 Roll src/third_party/skia e56cc054dbae..ab26643258ad (3 commits) (autoroller: commit, cla: yes)\n\n14274 Roll fuchsia/sdk/core/linux-amd64 from Zkpa_\u2026 to nqJnP\u2026 (autoroller: commit, cla: yes)\n\n14275 Fix CGMutablePathRef memory leaks (cla: yes, perf: memory, severe: performance)\n\n14278 Roll src/third_party/dart 8b8894648f..02a8b015ad (26 commits) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-650", "text": "14279 Roll src/third_party/skia ab26643258ad..732c49739fa5 (1 commits) (autoroller: commit, cla: yes)\n\n14280 Roll src/third_party/dart 02a8b015ad..98c13ba18f (5 commits) (cla: yes)\n\n14282 Remove specificity on Android and iOS (cla: yes)\n\n14283 [SkParagraph] Convert the height override flag in text styles (cla: yes)\n\n14284 v1.12.13+hotfix.5 cherry-picks (cla: yes)\n\n14287 Move Fuchsia unit test runners into engine repo (#14092) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-651", "text": "14298 [fuchsia] Do not Execute paint tasks when there is no vsync (cla: yes)\n\n14305 [web] Update build_web_compilers to 2.7.1 (cla: yes)\n\n14309 Roll src/third_party/dart 98c13ba18f..c74a8ec2c4 (14 commits) (cla: yes)\n\n14314 Roll fuchsia/sdk/core/mac-amd64 from 9C6UA\u2026 to h4iiT\u2026 (autoroller: commit, cla: yes)\n\n14315 Roll src/third_party/skia 732c49739fa5..5afc7b2af854 (16 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-652", "text": "14316 Roll fuchsia/sdk/core/linux-amd64 from nqJnP\u2026 to UdfLO\u2026 (autoroller: commit, cla: yes)\n\n14317 Roll src/third_party/dart c74a8ec2c46e..bcd18e67dcae (9 commits) (autoroller: commit, cla: yes)\n\n14318 [animator] Pass target frametime for Window.onBeginFrame (cla: yes)\n\n14319 Fix missing timeline event of flutter engine\u2019s startup time (cla: yes)\n\n14320 [web][refactor] Split html and canvaskit classes more (cla: yes)\n\n14321 Verify accounting for loop counts in Gif and WebP assets is consistent. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-653", "text": "14322 Roll src/third_party/dart bcd18e67dcae..bd008dd1e406 (3 commits) (autoroller: commit, cla: yes)\n\n14323 Fix missing API stream when record event in systrace (cla: yes)\n\n14324 Roll src/third_party/skia 5afc7b2af854..75799967be60 (2 commits) (autoroller: commit, cla: yes)\n\n14325 Roll src/third_party/dart bd008dd1e406..d9fa37e85d5c (1 commits) (autoroller: commit, cla: yes)\n\n14326 Fixes Objective-C objects memory leaks (cla: yes, perf: memory, severe: performance)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-654", "text": "14327 Roll fuchsia/sdk/core/mac-amd64 from h4iiT\u2026 to otkJA\u2026 (autoroller: commit, cla: yes)\n\n14340 Remove duplicate and outdated src/third_party/dart/tools/sdks entry from DEPS. (cla: yes)\n\n14342 Roll fuchsia/sdk/core/linux-amd64 from UdfLO\u2026 to 9wKTl\u2026 (cla: no)\n\n14343 Do not assume that createTypeface is called before getStyle in the AssetManagerFontStyleSet (cla: yes)\n\n14345 Roll src/third_party/skia 75799967be60..3517aa7b14ad (3 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-655", "text": "14351 [fuchsia] Move async_get_default_dispatcher include to the header (cla: yes)\n\n14359 Assert that arc end caps on canvases with root surface transformations are drawn correctly. (cla: yes)\n\n14361 [tests] Use distinct begin and end times (cla: yes)\n\n14367 objcdoc fix for some ambiguity (cla: yes, waiting for tree to go green)\n\n14375 Roll src/third_party/skia 3517aa7b14ad..826484f2631f (18 commits) (autoroller: commit, cla: yes)\n\n14378 [Web] Fix pointer binding (cla: yes, platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-656", "text": "14405 Roll src/third_party/skia 826484f2631f..51b99659ed82 (2 commits) (autoroller: commit, cla: yes)\n\n14407 Roll fuchsia/sdk/core/mac-amd64 from otkJA\u2026 to SlgE8\u2026 (autoroller: commit, cla: yes)\n\n14440 Remove unused _TypeNone enum field. (cla: yes)\n\n14452 Fix type in build_fuchsia_artifacts (cla: yes)\n\n14453 Roll src/third_party/dart d9fa37e85d5c..45db29709547 (48 commits) (autoroller: commit, cla: yes)\n\n14456 [testing] Move test vsync waiters to their own TUs (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-657", "text": "14457 Roll src/third_party/skia 51b99659ed82..c514e7d9be6e (13 commits) (autoroller: commit, cla: yes)\n\n14461 Roll fuchsia/sdk/core/linux-amd64 from 9wKTl\u2026 to sBbWo\u2026 (cla: yes)\n\n14463 [testing] Make vsync waiters pluggable in shell_unittests (cla: yes)\n\n14465 Use futures to images used for comparison with fixtures in embedder unit-tests. (cla: yes)\n\n14467 [web] adding firefox unit tests to font loading (cla: yes)\n\n14468 Implement Path.from in the CanvasKit backend (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-658", "text": "14470 [fuchsia] Add diagnostics directory to the set of remote dirs (cla: yes)\n\n14471 Roll src/third_party/dart 45db29709547..c561a9eacc1b (14 commits) (autoroller: commit, cla: yes)\n\n14473 Roll fuchsia/sdk/core/linux-amd64 from sBbWo\u2026 to QZVxo\u2026 (autoroller: commit, cla: yes)\n\n14475 Roll src/third_party/dart c561a9eacc1b..fe9f30c3896e (7 commits) (autoroller: commit, cla: yes)\n\n14476 Roll fuchsia/sdk/core/mac-amd64 from SlgE8\u2026 to 5t09i\u2026 (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-659", "text": "14477 Allow embedders to post Dart objects on send ports from the native side. (cla: yes)\n\n14478 Roll src/third_party/skia c514e7d9be6e..d0840ecf5831 (18 commits) (autoroller: commit, cla: yes)\n\n14479 [web] Implement Paragraph.getLineBoundary (cla: yes, platform-web)\n\n14480 Roll src/third_party/dart fe9f30c3896e..8ad8abfb7463 (19 commits) (autoroller: commit, cla: yes)\n\n14481 Roll src/third_party/skia d0840ecf5831..ea47b0e65802 (9 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-660", "text": "14482 libtxt: cache fallback fonts found by a Minikin font collection (cla: yes)\n\n14483 Verify embedders can convert clip rects from mutation stack into surface space. (cla: yes)\n\n14484 Calling onConnectionClosed when the input element is blurred (cla: yes)\n\n14485 [web] Remove Paragraph._lines which isn\u2019t necessary anymore (cla: yes, platform-web)\n\n14486 Introduce an auto-deletable SkiaObject; make SkPaint a SkiaObject (cla: yes)\n\n14487 firefox unit tests to font loading structure change (cla: yes)\n\n14488 Roll src/third_party/dart 8ad8abfb7463..83eeab1e63d9 (13 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-661", "text": "14490 Roll src/third_party/skia ea47b0e65802..cd9ad409a90d (7 commits) (autoroller: commit, cla: yes)\n\n14491 Engine support for ImageFiltered widget (cla: yes)\n\n14492 Roll src/third_party/dart 83eeab1e63d9..6c99171686be (5 commits) (autoroller: commit, cla: yes)\n\n14493 Roll fuchsia/sdk/core/mac-amd64 from 5t09i\u2026 to esDH2\u2026 (autoroller: commit, cla: yes)\n\n14494 Roll fuchsia/sdk/core/linux-amd64 from QZVxo\u2026 to q0tup\u2026 (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-662", "text": "14495 Roll src/third_party/skia cd9ad409a90d..cf0e3c63fd22 (1 commits) (autoroller: commit, cla: yes)\n\n14496 Fix comments of iOS status bar height constant (cla: yes)\n\n14497 Roll src/third_party/dart 6c99171686be..09a0b040dd9b (1 commits) (autoroller: commit, cla: yes)\n\n14499 Roll src/third_party/skia cf0e3c63fd22..9e7199561fc8 (1 commits) (autoroller: commit, cla: yes)\n\n14500 Roll src/third_party/skia 9e7199561fc8..ef363a9ce692 (1 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-663", "text": "14501 Roll src/third_party/dart 09a0b040dd9b..ae3973da4023 (1 commits) (autoroller: commit, cla: yes)\n\n14502 Roll src/third_party/dart ae3973da4023..24b99838f433 (3 commits) (autoroller: commit, cla: yes)\n\n14503 Roll src/third_party/skia ef363a9ce692..187cd367d388 (1 commits) (autoroller: commit, cla: yes)\n\n14504 Fix DOM-based ParagraphRuler.hitTest() (cla: yes, platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-664", "text": "14505 Roll src/third_party/skia 187cd367d388..706eb5788e8b (1 commits) (autoroller: commit, cla: yes)\n\n14506 Allow custom embedders to post low memory notifications. (cla: yes)\n\n14507 Roll src/third_party/dart 24b99838f433..2e1dd98e5e7f (1 commits) (autoroller: commit, cla: yes)\n\n14508 Roll src/third_party/dart 2e1dd98e5e7f..c5c469088697 (4 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-665", "text": "14510 Roll src/third_party/dart c5c469088697..44ba80053396 (1 commits) (autoroller: commit, cla: yes)\n\n14511 Roll src/third_party/skia 706eb5788e8b..9b59953e77b9 (3 commits) (autoroller: commit, cla: yes)\n\n14512 Roll fuchsia/sdk/core/linux-amd64 from q0tup\u2026 to O6ELR\u2026 (autoroller: commit, cla: yes)\n\n14514 Apply SmoothPointerDataDispatcher to Fuchsia (cla: yes)\n\n14515 Roll src/third_party/dart 44ba80053396..2eba06d26f71 (32 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-666", "text": "14516 Roll src/third_party/skia 9b59953e77b9..d78a9b45b9e5 (23 commits) (autoroller: commit, cla: yes)\n\n14517 Forward low memory notifications from the shell to DartVM. (cla: yes)\n\n14519 Rename \u2018test_vsync_waiters\u2019 to \u2018vsync_waiters_test\u2019 for consistency. (cla: yes)\n\n14521 Support timeline can be enabled in release mode (cla: yes)\n\n14522 Roll src/third_party/skia d78a9b45b9e5..6153165d78f2 (1 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-667", "text": "14523 Roll src/third_party/dart 2eba06d26f71..b1afe2d0ebc1 (6 commits) (autoroller: commit, cla: yes)\n\n14525 Roll fuchsia/sdk/core/linux-amd64 from O6ELR\u2026 to ZHhOi\u2026 (autoroller: commit, cla: yes)\n\n14526 Roll src/third_party/dart b1afe2d0ebc1..2d332ee1d3f1 (1 commits) (autoroller: commit, cla: yes)\n\n14528 Roll src/third_party/skia 6153165d78f2..fdb2b7d53038 (2 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-668", "text": "14529 Roll src/third_party/dart 2d332ee1d3f1..51859cb2056c (2 commits) (autoroller: commit, cla: yes)\n\n14530 Roll src/third_party/skia fdb2b7d53038..cbeabd969bbe (1 commits) (autoroller: commit, cla: yes)\n\n14531 Roll src/third_party/dart 51859cb2056c..f10fa3df28a8 (4 commits) (autoroller: commit, cla: yes)\n\n14532 Roll src/third_party/skia cbeabd969bbe..3794db84e141 (8 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-669", "text": "14533 Roll src/third_party/dart f10fa3df28a8..44da51fc720d (20 commits) (autoroller: commit, cla: yes)\n\n14534 Roll fuchsia/sdk/core/linux-amd64 from ZHhOi\u2026 to WSlsF\u2026 (autoroller: commit, cla: yes)\n\n14535 Fix lint warnings across web_ui, add missing browserEngine case in text field. (cla: yes)\n\n14536 Fix FontLoader does not remove the cache in web engine (cla: yes, waiting for tree to go green)\n\n14537 [web] Calculate align offset for each paragraph line (LineMetrics.left) (cla: yes, platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-670", "text": "14538 Roll src/third_party/skia 3794db84e141..190b82d67ce1 (11 commits) (autoroller: commit, cla: yes)\n\n14539 Update formatting in web_ui scene bulder to match flutter style. (cla: yes)\n\n14541 Revert \u201c[fuchsia] Do not Execute paint tasks when there is no vsync\u201d (cla: yes)\n\n14542 Manual roll of Dart to revision 8a4cac1ddb141d4a1e395f6e0a7d5bbf2247eb63 (cla: yes)\n\n14543 Revert \u201cWire up Opacity on Fuchsia, round 2 (#14024)\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-671", "text": "14545 Roll src/third_party/dart 8a4cac1ddb14..b6e051e2c87a (2 commits) (autoroller: commit, cla: yes)\n\n14546 Roll src/third_party/skia 190b82d67ce1..37a88b43637e (1 commits) (autoroller: commit, cla: yes)\n\n14547 Roll src/third_party/dart b6e051e2c87a..c9d89d55a60e (1 commits) (autoroller: commit, cla: yes)\n\n14548 TBR: Revert \u201cFix wrong fromRGBO alpha value calculation\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-672", "text": "14549 Roll src/third_party/skia 37a88b43637e..21df075cab00 (2 commits) (autoroller: commit, cla: yes)\n\n14550 Roll fuchsia/sdk/core/linux-amd64 from WSlsF\u2026 to jsuQq\u2026 (autoroller: commit, cla: yes)\n\n14551 Roll src/third_party/dart c9d89d55a60e..6fcd1de98c2c (8 commits) (autoroller: commit, cla: yes)\n\n14552 Roll src/third_party/skia 21df075cab00..e6a2ad81ab40 (1 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-673", "text": "14553 Roll src/third_party/dart 6fcd1de98c2c..270966b16044 (7 commits) (autoroller: commit, cla: yes)\n\n14554 Roll fuchsia/sdk/core/mac-amd64 from esDH2\u2026 to NHgyx\u2026 (autoroller: commit, cla: yes)\n\n14555 [web] Run engine tests on Safari locally by launching safari installed on MacOS (affects: tests, cla: yes)\n\n14556 Run and collect benchmarks (cla: yes)\n\n14557 Roll src/third_party/skia e6a2ad81ab40..8fec4140f614 (17 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-674", "text": "14558 Roll src/third_party/dart 270966b16044..171059d27689 (19 commits) (autoroller: commit, cla: yes)\n\n14559 Lay the ground work to wire opacity to scenic (cla: yes)\n\n14560 Roll fuchsia/sdk/core/linux-amd64 from jsuQq\u2026 to VdBKA\u2026 (autoroller: commit, cla: yes)\n\n14562 instructions for running firefox/safari tests (cla: yes)\n\n14563 Roll src/third_party/skia 8fec4140f614..9e0afb791ac2 (4 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-675", "text": "14566 Revert \u201c[fuchsia] Add diagnostics directory to the set of remote dirs\u2026 (cla: yes)\n\n14567 Roll src/third_party/dart 171059d27689..aa6709974dea (11 commits) (autoroller: commit, cla: yes)\n\n14569 Revert \u201c[web] Calculate align offset for each paragraph line (LineMetrics.left)\u201d (cla: yes)\n\n14571 Roll src/third_party/skia 9e0afb791ac2..c76ac8e325c7 (4 commits) (autoroller: commit, cla: yes)\n\n14572 Roll src/third_party/dart aa6709974dea..8d11c1dce64a (2 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-676", "text": "14573 Roll fuchsia/sdk/core/mac-amd64 from NHgyx\u2026 to Ykb4b\u2026 (autoroller: commit, cla: yes)\n\n14574 Roll src/third_party/dart 8d11c1dce64a..642f8d052fd7 (1 commits) (autoroller: commit, cla: yes)\n\n14575 Roll fuchsia/sdk/core/linux-amd64 from VdBKA\u2026 to uFFWW\u2026 (autoroller: commit, cla: yes)\n\n14576 Roll src/third_party/skia c76ac8e325c7..77742c350371 (1 commits) (autoroller: commit, cla: yes)\n\n14577 Wire up OpacityLayer to Scenic (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-677", "text": "14578 Roll src/third_party/dart 642f8d052fd7..7113fc79a83c (3 commits) (autoroller: commit, cla: yes)\n\n14579 Roll src/third_party/skia 77742c350371..a8352ccaae37 (8 commits) (autoroller: commit, cla: yes)\n\n14580 Roll src/third_party/dart 7113fc79a83c..e50d98cd5651 (8 commits) (autoroller: commit, cla: yes)\n\n14581 fix editable placement in a11y mode (Work in progress (WIP), cla: yes)\n\n14582 [web] fix leaking problem in tests for text editing. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-678", "text": "14583 Fix message_loop_fuchsia and thus enable fml_tests and flow_tests for Fuchsia (cla: yes)\n\n14584 Roll fuchsia/sdk/core/mac-amd64 from Ykb4b\u2026 to f51Q_\u2026 (autoroller: commit, cla: yes)\n\n14585 Roll src/third_party/skia a8352ccaae37..87e9ddb675b6 (11 commits) (autoroller: commit, cla: yes)\n\n14586 Roll src/third_party/dart e50d98cd5651..141fcfa61092 (3 commits) (autoroller: commit, cla: yes)\n\n14587 Roll fuchsia/sdk/core/linux-amd64 from uFFWW\u2026 to 25LzW\u2026 (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-679", "text": "14588 [web] Long press fix on Safari on IOS (cla: yes)\n\n14589 Roll src/third_party/skia 87e9ddb675b6..7e2dea568299 (1 commits) (autoroller: commit, cla: yes)\n\n14590 Roll src/third_party/dart 141fcfa61092..4681868aaf77 (9 commits) (autoroller: commit, cla: yes)\n\n14591 Roll src/third_party/skia 7e2dea568299..dcac29b02d02 (3 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-680", "text": "14592 Roll src/third_party/dart 4681868aaf77..b92fefdfe971 (1 commits) (autoroller: commit, cla: yes)\n\n14593 Roll fuchsia/sdk/core/mac-amd64 from f51Q_\u2026 to VC7eE\u2026 (autoroller: commit, cla: yes)\n\n14595 Roll src/third_party/dart b92fefdfe971..886615d0f95b (2 commits) (autoroller: commit, cla: yes)\n\n14596 Roll fuchsia/sdk/core/linux-amd64 from 25LzW\u2026 to TUoVa\u2026 (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-681", "text": "14597 Roll src/third_party/skia dcac29b02d02..088913a63b7e (1 commits) (autoroller: commit, cla: yes)\n\n14599 [web] implement pushImageFilter (cla: yes)\n\n14600 Roll src/third_party/skia 088913a63b7e..28b0c5d4b3bb (17 commits) (autoroller: commit, cla: yes)\n\n14601 Roll src/third_party/dart 886615d0f95b..c260e4e8dac6 (15 commits) (autoroller: commit, cla: yes)\n\n14602 View ref pair (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-682", "text": "14602 View ref pair (cla: yes)\n\n14603 Roll fuchsia/sdk/core/mac-amd64 from VC7eE\u2026 to IZ278\u2026 (autoroller: commit, cla: yes)\n\n14604 [web] fix selection issue (cla: yes)\n\n14605 Roll src/third_party/skia 28b0c5d4b3bb..2723af6a6d43 (4 commits) (autoroller: commit, cla: yes)\n\n14606 Roll src/third_party/dart c260e4e8dac6..1db1a837f8c9 (8 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-683", "text": "14665 Roll src/third_party/skia 2723af6a6d43..6ec826085b2a (3 commits) (autoroller: commit, cla: yes)\n\n14667 Roll src/third_party/dart 1db1a837f8c9..cfca5ea9f2e9 (2 commits) (autoroller: commit, cla: yes)\n\n14670 Roll fuchsia/sdk/core/linux-amd64 from TUoVa\u2026 to v3R8A\u2026 (autoroller: commit, cla: yes)\n\n14671 Roll src/third_party/dart cfca5ea9f2e9..4a639e8df261 (7 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-684", "text": "14672 Roll src/third_party/skia 6ec826085b2a..ac29f1342fd2 (1 commits) (autoroller: commit, cla: yes)\n\n14673 Make BackgroundMode public. (#45747) (cla: yes)\n\n14674 Fixes labelPrefix memory leak in FlutterEngine (affects: add-to-app, cla: yes)\n\n14675 Roll fuchsia/sdk/core/mac-amd64 from IZ278\u2026 to ZA31z\u2026 (autoroller: commit, cla: yes)\n\n14677 Roll src/third_party/skia ac29f1342fd2..a2d7225c0fc1 (5 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-685", "text": "14678 Roll src/third_party/dart 4a639e8df261..8736fec094bb (11 commits) (autoroller: commit, cla: yes)\n\n14679 Roll src/third_party/dart 8736fec094bb..75fc15c7e186 (6 commits) (autoroller: commit, cla: yes)\n\n14680 Roll src/third_party/skia a2d7225c0fc1..3d3150c89c5f (1 commits) (autoroller: commit, cla: yes)\n\n14702 Roll fuchsia/sdk/core/mac-amd64 from ZA31z\u2026 to IEPKx\u2026 (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-686", "text": "14800 Roll src/third_party/skia 3d3150c89c5f..05eb83be171c (3 commits) (autoroller: commit, cla: yes)\n\n14802 Roll fuchsia/sdk/core/linux-amd64 from v3R8A\u2026 to ikxBh\u2026 (autoroller: commit, cla: yes)\n\n14803 Roll src/third_party/dart 75fc15c7e186..232a171a0b1c (4 commits) (autoroller: commit, cla: yes)\n\n14805 loadfontfromlist should send fontchange message to framework (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-687", "text": "14806 Roll src/third_party/skia 05eb83be171c..07d744fb8a53 (3 commits) (autoroller: commit, cla: yes)\n\n14807 Roll src/third_party/skia 07d744fb8a53..f2d522a3f434 (4 commits) (autoroller: commit, cla: yes)\n\n14808 Roll src/third_party/dart 232a171a0b1c..94a4f6415e6c (8 commits) (autoroller: commit, cla: yes)\n\n14812 Roll src/third_party/dart 94a4f6415e6c..c547f5d933e5 (9 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-688", "text": "14814 Roll src/third_party/skia f2d522a3f434..89bf1547f3aa (4 commits) (autoroller: commit, cla: yes)\n\n14817 Roll fuchsia/sdk/core/mac-amd64 from IEPKx\u2026 to iImpF\u2026 (autoroller: commit, cla: yes)\n\n14821 Roll fuchsia/sdk/core/linux-amd64 from ikxBh\u2026 to sxapd\u2026 (autoroller: commit, cla: yes)\n\n14822 Fixes leak of url in FlutterObservatoryPublisher (affects: add-to-app, cla: yes, waiting for tree to go green)\n\n14823 Revert \u201cUse ELF for Dart AOT snapshots on Fuchsia. (#13896)\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-689", "text": "14825 Roll src/third_party/skia 89bf1547f3aa..5a2f962313a5 (16 commits) (autoroller: commit, cla: yes)\n\n14827 Roll src/third_party/dart c547f5d933e5..b52d264f5b2f (19 commits) (autoroller: commit, cla: yes)\n\n14828 Font subset (cla: yes, size)\n\n15041 Fixes oc leaks in platform plugin (affects: add-to-app, cla: yes)\n\n15067 Roll src/third_party/skia 5a2f962313a5..7c095dc67ce6 (6 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-690", "text": "15083 Roll fuchsia/sdk/core/linux-amd64 from sxapd\u2026 to AVtRQ\u2026 (autoroller: commit, cla: yes)\n\n15084 Roll src/third_party/skia 7c095dc67ce6..c65d0069ec56 (9 commits) (autoroller: commit, cla: yes)\n\n15085 Roll src/third_party/dart b52d264f5b2f..05e70d5b38cb (17 commits) (autoroller: commit, cla: yes)\n\n15086 Roll fuchsia/sdk/core/mac-amd64 from iImpF\u2026 to zkzoZ\u2026 (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-691", "text": "15087 Engine/LibTxt/dart:ui impl of TextHeightBehavior (affects: engine, affects: text input, brand new feature, cla: yes)\n\n15088 Roll src/third_party/skia c65d0069ec56..107c66669d37 (4 commits) (autoroller: commit, cla: yes)\n\n15089 Fixes FlutterCallbackInfomation leaks (cla: yes)\n\n15100 Roll src/third_party/dart 05e70d5b38cb..2f57602411b3 (44 commits) (autoroller: commit, cla: yes)\n\n15102 Roll src/third_party/skia 107c66669d37..7ac038f302f2 (30 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-692", "text": "15103 [web] Fix right click issues (cla: yes, platform-web)\n\n15104 Roll fuchsia/sdk/core/mac-amd64 from zkzoZ\u2026 to Vk6uT\u2026 (autoroller: commit, cla: yes)\n\n15106 Fix RectHeightStyle::kMax ascent computation bug (cla: yes)\n\n15110 Roll fuchsia/sdk/core/linux-amd64 from AVtRQ\u2026 to MwGkB\u2026 (autoroller: commit, cla: yes)\n\n15111 [web] adding windows platform to felt. fixing signal (cla: yes)\n\n15116 Modifies accessibility bridge to populate new node fields in semantic\u2026 (cla: yes)\n\n15118 Migrate flutter_runner from flutter_runner::{Thread,Loop} to fml::{Thread,MessageLoop} (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-693", "text": "15141 Roll src/third_party/skia 7ac038f302f2..6791ee2f8059 (20 commits) (autoroller: commit, cla: yes)\n\n15142 Roll fuchsia/sdk/core/mac-amd64 from Vk6uT\u2026 to Kom_K\u2026 (autoroller: commit, cla: yes)\n\n15143 Roll src/third_party/dart 2f57602411b3..76e3faa9824e (37 commits) (autoroller: commit, cla: yes)\n\n15145 Roll fuchsia/sdk/core/linux-amd64 from MwGkB\u2026 to xYmDF\u2026 (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-694", "text": "15146 Roll src/third_party/dart 76e3faa9824e..bebc7d3af5bd (1 commits) (autoroller: commit, cla: yes)\n\n15148 Roll src/third_party/skia 6791ee2f8059..d445e2b6fcf1 (1 commits) (autoroller: commit, cla: yes)\n\n15149 Roll fuchsia/sdk/core/mac-amd64 from Kom_K\u2026 to nbeLe\u2026 (autoroller: commit, cla: yes)\n\n15151 Reland \u201c[web] Calculate align offset for each paragraph line (LineMetrics.left)\u201d (#14537) (cla: yes, platform-web)\n\n15152 Throw an exception in Image.toByteData rather than hang forever. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-695", "text": "15153 Refactor BitmapCanvas, lazily allocate canvas, fix image composition bug. (cla: yes)\n\n15154 Bump simulator version in IosUnitTests & scenario app in preparation for luci xcode 11 migration (cla: yes)\n\n15156 Add a deprecation javadoc note to the old FlutterActivity (cla: yes)\n\n15160 Recover when browser throws on ImageElement.decode due to too many images (cla: yes)\n\n15161 Add .vpython dependencies to migrate run_tests.py to vpython. (cla: yes, waiting for tree to go green)\n\n15164 Reduce default verbosity of Android embedding (affects: add-to-app, cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-696", "text": "15232 Roll src/third_party/skia d445e2b6fcf1..91e0d7526944 (44 commits) (autoroller: commit, cla: yes)\n\n15252 Roll src/third_party/dart bebc7d3af5bd..c0ca187f2699 (37 commits) (autoroller: commit, cla: yes)\n\n15253 Roll fuchsia/sdk/core/mac-amd64 from nbeLe\u2026 to gL-XG\u2026 (autoroller: commit, cla: yes)\n\n15257 Roll fuchsia/sdk/core/linux-amd64 from xYmDF\u2026 to oNKzr\u2026 (autoroller: commit, cla: yes)\n\n15258 [fuchsia] Add a diagnostics directory to the set of remote dirs (#14566) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-697", "text": "15259 Made it so you can specify the old gen heap size. (cla: yes)\n\n15265 Add plugin_registrar_windows.h to published wrapper (cla: yes, waiting for tree to go green)\n\n15268 Fix Path.from. (cla: yes)\n\n15304 add warning message for clipboard api (cla: yes, platform-web, waiting for tree to go green)\n\n15306 Roll src/third_party/skia 91e0d7526944..f811fc331a14 (32 commits) (autoroller: commit, cla: yes)\n\n15308 Roll fuchsia/sdk/core/mac-amd64 from gL-XG\u2026 to rTJJV\u2026 (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-698", "text": "15311 Roll fuchsia/sdk/core/linux-amd64 from oNKzr\u2026 to _gFH2\u2026 (autoroller: commit, cla: yes)\n\n15312 Roll src/third_party/skia f811fc331a14..04e77813f8f4 (7 commits) (autoroller: commit, cla: yes)\n\n15313 Revert \u201cBump simulator version in IosUnitTests & scenario app in preparation for luci xcode 11 migration\u201d (cla: yes)\n\n15315 Move html window.devicePixelRatio access to EngineWindow to fix WebOS bug. (cla: yes)\n\n15316 Reland \u201cBump simulator version in IosUnitTests & scenario app in preparation for luci xcode 11 migration\u201d, Reverted in flutter/engine#15313 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-699", "text": "15317 [SkParagraph] Cache the font collection created for use by the Skia text shaper library (cla: yes)\n\n15321 Enable BackdropFilter for most browsers (cla: yes)\n\n15324 [web] Tests for browser history implementation (cla: yes, platform-web, waiting for tree to go green)\n\n15326 modify test_runner.dart for windows to fix test build errors (cla: yes, platform-web, waiting for tree to go green)\n\n15327 Fix devicepixel ratio reset problem when replaying clip stack (cla: yes)\n\n15328 Add missing super.onNewIntent() call (cla: yes)\n\n15330 Roll src/third_party/skia 04e77813f8f4..92ca3baba6a5 (15 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-700", "text": "15331 Revert \u201cAdd a deprecation javadoc note to the old FlutterActivity\u201d (cla: yes)\n\n15343 Add support for Increase Contrast on iOS (accessibility, affects: framework, cla: yes, platform-ios, waiting for tree to go green)\n\n15360 Re-land \u201cUse ELF for Dart AOT snapshots on Fuchsia. #13896\u201d (cla: yes)\n\n15370 Revert \u201cAdd support for on/off switch labels when built on iOS 13.\u201d (cla: yes)\n\n15372 More efficient decoding for down-sampled Flutter images using cache(Width\n\nHeight) (cla: yes)\n\n15373 Roll fuchsia/sdk/core/linux-amd64 from _gFH2\u2026 to 75iyW\u2026 (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-701", "text": "15374 Roll src/third_party/dart c0ca187f2699..395daaa3ecfc (84 commits) (autoroller: commit, cla: yes)\n\n15375 Roll src/third_party/skia 92ca3baba6a5..a92320d4e6a5 (18 commits) (autoroller: commit, cla: yes)\n\n15376 Revert \u201cRoll src/third_party/skia 04e77813f8f4..92ca3baba6a5 (15 commits)\u201d (cla: yes)\n\n15377 Roll src/third_party/skia 04e77813f8f4..67d0f3fd725c (41 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-702", "text": "15378 Implement HWND access for Windows plugins (cla: yes)\n\n15455 Support Clipboard.getData and Clipboard.setData for Flutter for web (cla: yes, platform-web, waiting for tree to go green)\n\n15466 Roll src/third_party/skia 67d0f3fd725c..3723fb7e85bb (25 commits) (autoroller: commit, cla: yes)\n\n15468 Use Skia\u2019s CSS3 style matcher for dynamically loaded font sets (cla: yes)\n\n15485 Roll src/third_party/dart 395daaa3ecfc..b3457c8cc2c1 (66 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-703", "text": "15500 Roll src/third_party/skia 3723fb7e85bb..0a1923e50752 (6 commits) (autoroller: commit, cla: yes)\n\n15504 Roll src/third_party/dart b3457c8cc2c1..32ce9c7872e2 (7 commits) (autoroller: commit, cla: yes)\n\n15506 Roll fuchsia/sdk/core/linux-amd64 from 75iyW\u2026 to Xh8_9\u2026 (autoroller: commit, cla: yes)\n\n15507 Roll src/third_party/skia 0a1923e50752..69ace2a0adbe (1 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-704", "text": "15513 Roll src/third_party/dart 32ce9c7872e2..28c335d5a201 (2 commits) (autoroller: commit, cla: yes)\n\n15547 Roll fuchsia/sdk/core/linux-amd64 from Xh8_9\u2026 to oxHfW\u2026 (autoroller: commit, cla: yes)\n\n15557 Typo fix to kick tests. (cla: yes)\n\n15560 Add support for software text editing controls (cla: yes)\n\n15562 [SkParagraph] Copy font features to the Skia layout engine text style (cla: yes)\n\n15563 Add a type parameter to SavedState.Creator in the new embedding (cla: yes)\n\n15565 [web] Freeze window.defaultRouteName (cla: yes, platform-web, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-705", "text": "15566 Fix embedder mutation order (cla: yes)\n\n15568 Fix hardware keyboard enter so it triggers an action. (affects: desktop, affects: text input, cla: yes)\n\n15569 Change the value of EXTRA_INITIAL_ROUTE to match the value used by the old embedding and flutter_tools (cla: yes)\n\n15570 [fuchsia] HitTesting for fuchsia a11y (cla: yes)\n\n15573 Fix Opacity performance regression on Fuchsia (cla: yes)\n\n15584 Roll src/third_party/skia 69ace2a0adbe..e45c5cd03eeb (23 commits) (autoroller: commit, cla: yes)\n\n15602 Add \u2013lazy_async_stacks to the set of whitelisted VM flags. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-706", "text": "15619 Roll src/third_party/dart 83fba7bd54..fe666ce592 (3 commits) (cla: yes)\n\n15631 Add back sky_engine/LICENSE (cla: yes)\n\n15635 Add FML check to ensure layout before calling getters (cla: yes)\n\n15641 [web] Add Edge support for Flutter Engine unit-tests. (cla: yes, platform-web)\n\n15649 fix text blurriness in HTML-rendered text (cla: yes)\n\n15653 try 10 times after paving (cla: yes)\n\n15668 const finder (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-707", "text": "15670 Roll fuchsia/sdk/core/linux-amd64 from oxHfW\u2026 to UlOSN\u2026 (autoroller: commit, cla: yes)\n\n15671 Roll src/third_party/skia e45c5cd03eeb..7655168e6865 (29 commits) (autoroller: commit, cla: yes)\n\n15672 Roll src/third_party/dart fe666ce592cb..862d5012ae9c (48 commits) (autoroller: commit, cla: yes)\n\n15675 [web] Exec command copy (cla: yes, platform-web)\n\n15676 Disable fml_unittests till flakes are addressed. (cla: yes)\n\n15677 Upgrade to CanvasKit 0.11 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-708", "text": "15678 Support animated images in the CanvasKit backend (cla: yes)\n\n15681 [web] update dart:js and dart:js_util to new upstream locations (cla: yes)\n\n15682 Roll src/third_party/skia 7655168e6865..7edb0eb8a458 (16 commits) (autoroller: commit, cla: yes)\n\n15683 Roll src/third_party/dart 862d5012ae9c..515d4bd7adb1 (18 commits) (autoroller: commit, cla: yes)\n\n15686 Roll src/third_party/skia 7edb0eb8a458..2900040bc4a0 (3 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-709", "text": "15687 Roll src/third_party/dart 515d4bd7adb1..009537bbf0ff (1 commits) (autoroller: commit, cla: yes)\n\n15689 Roll fuchsia/sdk/core/linux-amd64 from UlOSN\u2026 to YPYqb\u2026 (autoroller: commit, cla: yes)\n\n15690 [web] edge launcher for windows (cla: yes, platform-web)\n\n15693 Roll src/third_party/dart 009537bbf0ff..e33b9e2d265a (30 commits) (autoroller: commit, cla: yes)\n\n15694 [web] Add BoxHeightStyle.strut (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-710", "text": "15695 Roll src/third_party/skia 2900040bc4a0..2cd5d43f022c (5 commits) (autoroller: commit, cla: yes)\n\n15697 [fuchsia] Add LogSink to runners cmx files to route logs to fuchsia syslog (cla: yes)\n\n15698 implicit casts and add missing docs (cla: yes)\n\n15699 Make internal cache vars private (cla: yes)\n\n15700 v1.12.13+hotfix.7 cherry-picks (cla: yes)\n\n15701 Samsung fix duplication on punctuation: Update keyboard on finish compose. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-711", "text": "15702 Roll src/third_party/dart e33b9e2d265a..f1df196ddfe4 (24 commits) (autoroller: commit, cla: yes)\n\n15706 Disable GPUThreadMerger tests inline instead of via harness flags. (cla: yes)\n\n15707 Roll src/third_party/skia 2cd5d43f022c..d58b643f10f5 (21 commits) (autoroller: commit, cla: yes)\n\n15708 Roll dart to c8f8c11b70 (cla: yes)\n\n15712 Clipping path fix for browsers that don\u2019t use correct units when applying clip-path css using svg (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-712", "text": "15714 Roll src/third_party/dart c8f8c11b70b4..843bd2990881 (5 commits) (autoroller: commit, cla: yes)\n\n15715 fix typo, update path metrics docs (cla: yes)\n\n15736 Roll src/third_party/dart 843bd2990881..f96c48307d14 (10 commits) (autoroller: commit, cla: yes)\n\n15737 Roll fuchsia/sdk/core/linux-amd64 from YPYqb\u2026 to MCe3R\u2026 (autoroller: commit, cla: yes)\n\n15740 Fix Color API, move toCss to helper functions (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-713", "text": "15741 Roll src/third_party/skia d58b643f10f5..bd5ee543633f (12 commits) (autoroller: commit, cla: yes)\n\n15742 [libtxt] Assign a unique ID to each glyph cluster within a line (cla: yes, waiting for tree to go green)\n\n15743 Fix path.contains failure when devicepixelratio != 1.0 (cla: yes)\n\n15744 Roll src/third_party/dart f96c48307d14..020585872a25 (16 commits) (autoroller: commit, cla: yes)\n\n15745 [fuchsia] Support Skia tracing arguments (cla: yes)\n\n15746 [web] windows batch script for running felt. it does not have snapshot option (cla: yes, platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-714", "text": "15747 Roll src/third_party/skia bd5ee543633f..507736fc3abf (3 commits) (autoroller: commit, cla: yes)\n\n15748 Add size parameters to Vulkan surface functions (cla: yes)\n\n15749 Roll src/third_party/dart 020585872a25..65b8b6805dac (8 commits) (autoroller: commit, cla: yes)\n\n15750 Roll src/third_party/skia 507736fc3abf..ee3216d8f835 (2 commits) (autoroller: commit, cla: yes)\n\n15751 Roll fuchsia/sdk/core/linux-amd64 from MCe3R\u2026 to 4od_3\u2026 (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-715", "text": "15752 Roll src/third_party/skia ee3216d8f835..5344cc31ff59 (1 commits) (autoroller: commit, cla: yes)\n\n15753 Roll src/third_party/dart 65b8b6805dac..f34a25099be6 (1 commits) (autoroller: commit, cla: yes)\n\n15754 Roll src/third_party/skia 5344cc31ff59..f0b7edf6cd94 (1 commits) (autoroller: commit, cla: yes)\n\n15755 Roll src/third_party/dart f34a25099be6..29c166f07d3b (6 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-716", "text": "15800 Roll src/third_party/skia f0b7edf6cd94..e8fc3ffdada3 (1 commits) (autoroller: commit, cla: yes)\n\n15835 Roll src/third_party/dart 29c166f07d3b..93ebbe2c7a8e (3 commits) (autoroller: commit, cla: yes)\n\n15836 Roll src/third_party/skia e8fc3ffdada3..e79897c42389 (1 commits) (autoroller: commit, cla: yes)\n\n15837 Roll src/third_party/dart 93ebbe2c7a8e..407cd2bf3b88 (1 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-717", "text": "15838 Roll fuchsia/sdk/core/linux-amd64 from 4od_3\u2026 to omzFN\u2026 (autoroller: commit, cla: yes)\n\n15839 Roll src/third_party/skia e79897c42389..3322aafc36d4 (2 commits) (autoroller: commit, cla: yes)\n\n15840 Roll src/third_party/dart 407cd2bf3b88..e7b1392b0205 (2 commits) (autoroller: commit, cla: yes)\n\n15841 Roll src/third_party/skia 3322aafc36d4..ef05567733eb (1 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-718", "text": "15842 Roll src/third_party/dart e7b1392b0205..e8c1391b26f7 (1 commits) (autoroller: commit, cla: yes)\n\n15843 Roll src/third_party/dart e8c1391b26f7..c790eccdf4c4 (5 commits) (autoroller: commit, cla: yes)\n\n15844 Roll fuchsia/sdk/core/mac-amd64 from rTJJV\u2026 to yMvVd\u2026 (autoroller: commit, cla: yes)\n\n15845 Roll fuchsia/sdk/core/linux-amd64 from omzFN\u2026 to 0ERtT\u2026 (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-719", "text": "15846 Roll src/third_party/dart c790eccdf4c4..7070347bbb7a (4 commits) (autoroller: commit, cla: yes)\n\n15847 Roll src/third_party/skia ef05567733eb..9f22f1ff3190 (1 commits) (autoroller: commit, cla: yes)\n\n15848 Roll src/third_party/skia 9f22f1ff3190..e07936314c2b (3 commits) (autoroller: commit, cla: yes)\n\n15849 Roll src/third_party/dart 7070347bbb7a..f910a7575f3c (2 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-720", "text": "15850 Roll fuchsia/sdk/core/mac-amd64 from yMvVd\u2026 to jAkm1\u2026 (autoroller: commit, cla: yes)\n\n15851 Roll fuchsia/sdk/core/linux-amd64 from 0ERtT\u2026 to p1UDn\u2026 (autoroller: commit, cla: yes)\n\n15852 Roll src/third_party/dart f910a7575f3c..ef0c7f16e609 (1 commits) (autoroller: commit, cla: yes)\n\n15853 Roll src/third_party/skia e07936314c2b..215c34be2bd3 (1 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-721", "text": "15856 Roll src/third_party/skia 215c34be2bd3..cedab522227a (9 commits) (autoroller: commit, cla: yes)\n\n15859 Fix RRect hittest optimization to handle malformed corner radius (cla: yes)\n\n15862 retry on CIPD failure (cla: yes)\n\n15863 Roll src/third_party/skia cedab522227a..4277f0173657 (9 commits) (autoroller: commit, cla: yes)\n\n15867 Add missing include in GLFW and Windows embeddings (cla: yes, waiting for tree to go green)\n\n15870 Implement Canvas drawPoints API for Html backend (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-722", "text": "15872 Remove unused Imports and private method (cla: yes, waiting for tree to go green)\n\n15874 Roll fuchsia/sdk/core/linux-amd64 from p1UDn\u2026 to v-OJE\u2026 (autoroller: commit, cla: yes)\n\n15875 Roll src/third_party/dart ef0c7f16e609..4ad5fab95753 (41 commits) (autoroller: commit, cla: yes)\n\n15876 derp (cla: yes)\n\n15878 [bots] remove auto-assign for web PRs (cla: yes)\n\n15879 Roll src/third_party/skia 4277f0173657..808f021b51df (7 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-723", "text": "15880 Const finder fixes (cla: yes)\n\n15881 Roll src/third_party/dart 4ad5fab95753..439cabaec02f (2 commits) (autoroller: commit, cla: yes)\n\n15882 Roll src/third_party/skia 808f021b51df..d59053987a27 (4 commits) (autoroller: commit, cla: yes)\n\n15884 Roll fuchsia/sdk/core/mac-amd64 from jAkm1\u2026 to LGwl3\u2026 (autoroller: commit, cla: yes)\n\n15886 Roll src/third_party/dart 439cabaec02f..a9ea9365ad8a (4 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-724", "text": "15890 Roll src/third_party/skia d59053987a27..f9aea7f7e502 (10 commits) (autoroller: commit, cla: yes)\n\n15891 errant log (cla: yes, waiting for tree to go green)\n\n15892 Roll fuchsia/sdk/core/linux-amd64 from v-OJE\u2026 to N502w\u2026 (cla: yes, waiting for tree to go green)\n\n15893 Implement new SkCanvas virtuals in testing canvases (cla: yes)\n\n15894 Do not produce timeline events in release mode (cla: yes)\n\n15895 Move tonic into //flutter/third_party. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-725", "text": "15899 Release TextureView surface within FlutterTextureView when disconnected. (#48535) (cla: yes)\n\n15900 [fuchsia] Timeline events in profile mode to observatory (cla: yes)\n\n15903 Revert migration to FML messageloops on Fuchsia (cla: yes)\n\n15906 Roll src/third_party/dart a9ea9365ad8a..582727a4ec3b (33 commits) (autoroller: commit, cla: yes)\n\n15923 Roll src/third_party/dart 582727a4ec3b..6aa7407d6309 (4 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-726", "text": "15930 Roll fuchsia/sdk/core/mac-amd64 from LGwl3\u2026 to LAOYs\u2026 (autoroller: commit, cla: yes)\n\n15931 Roll src/third_party/skia f9aea7f7e502..e4ddb8a7cddc (35 commits) (autoroller: commit, cla: yes)\n\n15934 Roll src/third_party/dart 6aa7407d6309..e84bea25df23 (6 commits) (autoroller: commit, cla: yes)\n\n15935 Roll fuchsia/sdk/core/linux-amd64 from N502w\u2026 to Wc7e4\u2026 (cla: yes, waiting for tree to go green)\n\n15937 Raise API level for reportFullyDrawn (#14146) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-727", "text": "15938 Add script to force build LUCI builders for a specified commit (cla: yes)\n\n15939 Cancel previous WakeUps in MessageLoopFuchsia on subsequent WakeUp calls (cla: yes)\n\n15940 iOS platform view gesture blocking policy. (cla: yes)\n\n15945 Roll src/third_party/skia e4ddb8a7cddc..c88a3bc3f561 (24 commits) (autoroller: commit, cla: yes)\n\n15946 Roll src/third_party/dart e84bea25df23..3eaae5405d37 (17 commits) (autoroller: commit, cla: yes)\n\n15948 Cherry pick infra testing updates into hotfixes (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-728", "text": "15949 Fix data race in DartIsolateGroupData. (cla: yes)\n\n15950 [web] Calling platform message callback after copy (cla: yes, platform-web)\n\n15951 Gets the DPI for all awareness mode and older Windows versions (cla: yes, waiting for tree to go green)\n\n15952 Do not reset the child isolate preparer if the isolate group data already has one (cla: yes)\n\n15953 Ensure we export the various dart snapshot symbols on Fuchsia (cla: yes, waiting for tree to go green)\n\n15954 Roll fuchsia/sdk/core/mac-amd64 from LAOYs\u2026 to 6_pZp\u2026 (autoroller: commit, cla: yes)\n\n15955 Cache computed window.physicalSize in a FrameReference (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-729", "text": "15956 Prevent duplicate plugin registration in FlutterEnginePluginRegistry. (#49365) (affects: add-to-app, cla: yes)\n\n15957 Roll src/third_party/skia c88a3bc3f561..a7e557f3e353 (6 commits) (autoroller: commit, cla: yes)\n\n15958 [fuchsia] Expose view_ref as part of dart:fuchsia initialization (cla: yes)\n\n15959 Roll src/third_party/dart 3eaae5405d37..c359b5943a52 (13 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-730", "text": "15962 Roll src/third_party/dart c359b5943a52..bc9348829ef8 (1 commits) (autoroller: commit, cla: yes)\n\n15963 Roll src/third_party/skia a7e557f3e353..3ea4d5bb857d (4 commits) (autoroller: commit, cla: yes)\n\n15964 Roll fuchsia/sdk/core/linux-amd64 from Wc7e4\u2026 to 8Ns10\u2026 (cla: yes, waiting for tree to go green)\n\n15965 Roll src/third_party/dart bc9348829ef8..fc3af737c759 (2 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-731", "text": "15966 Roll fuchsia/sdk/core/mac-amd64 from 6_pZp\u2026 to 7fqYj\u2026 (autoroller: commit, cla: yes)\n\n15967 Roll src/third_party/skia 3ea4d5bb857d..45add166fdb9 (1 commits) (autoroller: commit, cla: yes)\n\n15969 [web] Reduce canvas allocation when drawing image. (cla: yes)\n\n15970 Optimize drawRRect to use dom_canvas (cla: yes)\n\n15971 Roll fuchsia/sdk/core/linux-amd64 from 8Ns10\u2026 to 2rLoq\u2026 (cla: yes, waiting for tree to go green)\n\n15972 Refactor ShellTest to allow for different ShellTestPlatformViews (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-732", "text": "15973 the the fix (cla: yes)\n\n15974 Retry CIPD upload in second place (cla: yes)\n\n15975 Eliminate unused import in Android embedding (cla: yes)\n\n15976 Use 2d matrix for transform to work around Safari clipping bug (cla: yes)\n\n15977 updating the versions of the browsers for flutter web engine unit tests (cla: yes, platform-web)\n\n15978 Ensure GetFixturesPath works on Fuchsia (cla: yes)\n\n15979 Register plugins at the right time, once (affects: add-to-app, affects: engine, cla: yes)\n\n15980 Allow embedders to schedule a callback on all engine managed threads. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-733", "text": "15981 [libtxt] Fix the flag used to check validity of the strikeout position in Skia font metrics (cla: yes)\n\n15982 Disable flakey CountDownLatchTest.CanWait unit test on Fuchsia (cla: yes)\n\n15984 Roll fuchsia/sdk/core/mac-amd64 from 7fqYj\u2026 to 35pbn\u2026 (autoroller: commit, cla: yes)\n\n15985 Remove stale recipe changelog. (cla: yes)\n\n16022 Roll src/third_party/skia 45add166fdb9..d92e4e9de7f1 (32 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-734", "text": "16029 Roll src/third_party/skia d92e4e9de7f1..f93a8436cea5 (1 commits) (autoroller: commit, cla: yes)\n\n16036 Roll src/third_party/skia f93a8436cea5..0fb0a21bd999 (3 commits) (autoroller: commit, cla: yes)\n\n16040 Roll fuchsia/sdk/core/mac-amd64 from 35pbn\u2026 to gNitp\u2026 (autoroller: commit, cla: yes)\n\n16053 Roll src/third_party/skia 0fb0a21bd999..f1b2b42613cb (4 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-735", "text": "16060 Roll src/third_party/skia f1b2b42613cb..9c1d30dd163e (8 commits) (autoroller: commit, cla: yes)\n\n16062 Remove tonic/platform. (cla: yes)\n\n16068 Always make gpu thread different from platform thread regardless of platform view (cla: yes)\n\n16071 Remove buggy assertion in EmbedderTest::CanPostTaskToAllNativeThreads. (cla: yes)\n\n16074 Add test to ensure that concurrent message loops have at least one worker. (cla: yes)\n\n16075 Web PargraphStyle TextHeightBehavior integration (cla: yes)\n\n16081 Fix flake by making thread ID tracking in CanPostTaskToAllNativeThreads thread safe. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-736", "text": "16085 Hold a mutex when updating all CanPostTaskToAllNativeThreads::Captures members. (cla: yes)\n\n16086 Disable setting a library tag handler. (cla: yes)\n\n16105 Fix Windows file checks of unicode paths (cla: yes, waiting for tree to go green)\n\n16148 Revert breaking PRs (cla: yes)\n\n16152 [web] Text width should never exceed constraint width (cla: yes, platform-web, waiting for tree to go green)\n\n16153 Roll fuchsia/sdk/core/mac-amd64 from gNitp\u2026 to 5fMtM\u2026 (autoroller: commit, cla: yes)\n\n16155 Reland \u201cEngine/LibTxt/dart:ui impl of TextHeightBehavior #15087\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-737", "text": "16157 Revert \u201cDisable setting a library tag handler.\u201d (cla: yes)\n\n16158 Roll src/third_party/skia 9c1d30dd163e..9ae06637d069 (24 commits) (autoroller: commit, cla: yes)\n\n16161 Revert \u201cAlways make gpu thread different from platform thread regardless of platform view\u201d (cla: yes)\n\n16167 Allow \u2013enable-service-port-fallback as a white listed arg (cla: yes)\n\n16173 Roll src/third_party/skia 9ae06637d069..dcc8c5431bcb (16 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-738", "text": "16181 Roll fuchsia/sdk/core/mac-amd64 from 5fMtM\u2026 to c3sk5\u2026 (autoroller: commit, cla: yes)\n\n16182 Roll src/third_party/skia dcc8c5431bcb..3d23fc123c37 (6 commits) (autoroller: commit, cla: yes)\n\n16189 Roll src/third_party/skia 3d23fc123c37..dc49b0ca9816 (1 commits) (autoroller: commit, cla: yes)\n\n16195 Roll fuchsia/sdk/core/linux-amd64 from 2rLoq\u2026 to -mGIA\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-739", "text": "16197 Roll src/third_party/skia dc49b0ca9816..a2a0c8a2c475 (4 commits) (autoroller: commit, cla: yes)\n\n16204 Ensure that Android embedding initialization always uses an application context (cla: yes)\n\n16206 [web] Correct getPositionForOffset for multi-line paragraphs (cla: yes, platform-web)\n\n16208 Fix safe area reporting with transparent FlutterActivitys. (#46060) (cla: yes)\n\n16210 In the test harness, don\u2019t attempt to load AOT snapshots from non-existent dylibs. (cla: yes)\n\n16211 Copied Apple\u2019s semantics for switches, made checkboxes the same. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-740", "text": "16214 Remove buggy test to check if tasks can be posted on all native threads recursively from the emebdder. (cla: yes)\n\n16215 Correct the Fuchsia licenses golden file (cla: yes)\n\n16216 Roll src/third_party/skia a2a0c8a2c475..24ed75db12ba (12 commits) (autoroller: commit, cla: yes)\n\n16218 Use bundled Roboto in all tests (cla: yes)\n\n16221 Roll fuchsia/sdk/core/mac-amd64 from c3sk5\u2026 to MK0YU\u2026 (autoroller: commit, cla: yes)\n\n16224 Refactor of Vulkan GPUSurface code (cla: yes)\n\n16229 Make output of run_tests.py easier to understand. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-741", "text": "16230 Notify PlatformViewsController within FlutterEngine when a hot restart occurs. (#48518) (cla: yes)\n\n16234 Roll src/third_party/skia 24ed75db12ba..25bcd6a6215e (5 commits) (autoroller: commit, cla: yes)\n\n16243 Roll src/third_party/skia 25bcd6a6215e..8f44c3504ca6 (2 commits) (autoroller: commit, cla: yes)\n\n16248 Avoid generating VSYNC trace events when tracing to systrace. (cla: yes)\n\n16250 Roll fuchsia/sdk/core/mac-amd64 from MK0YU\u2026 to yissX\u2026 (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-742", "text": "16251 Roll src/third_party/skia 8f44c3504ca6..d1be5d64f8a7 (4 commits) (autoroller: commit, cla: yes)\n\n16257 Roll fuchsia/sdk/core/linux-amd64 from -mGIA\u2026 to 93K0d\u2026 (cla: yes, waiting for tree to go green)\n\n16260 Roll src/third_party/skia d1be5d64f8a7..36c0521d57de (13 commits) (autoroller: commit, cla: yes)\n\n16261 Roll src/third_party/dart fc3af737c759..162d6c5634a0 (209 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-743", "text": "16262 [fuchsia] SceneHostBindings are no longer thread locals (cla: yes)\n\n16264 Don\u2019t constexpr iphone_xs_times (cla: yes)\n\n16265 Pass through invoker.resources in fuchsia_test_archive (cla: yes)\n\n16266 Expose the dart kernel snapshot target and copied assets as a public dependency (cla: yes)\n\n16267 Roll fuchsia/sdk/core/linux-amd64 from 93K0d\u2026 to VMcGV\u2026 (cla: yes, waiting for tree to go green)\n\n16268 Revert \u201c[web] Correct getPositionForOffset for multi-line paragraphs (#16206)\u201d (cla: yes)\n\n16269 [fuchsia] Fix the import for dart_api.h (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-744", "text": "16270 Started coalescing updates to viewport metrics after foregrounding the app. (cla: yes)\n\n16272 Roll src/third_party/skia 36c0521d57de..6305b2f8342a (8 commits) (autoroller: commit, cla: yes)\n\n16276 Fix delete of entire selection in macOS text input (cla: yes)\n\n16277 Revert \u201cMigrate flutter_runner from flutter_runner::{Thread,Loop} to fml::{Thread,MessageLoop} (#15118)\u201d (cla: yes)\n\n16280 Remove superfluous INFO logs from //flutter/runtime. (cla: yes)\n\n16283 Fix runtime_unittest in AOT mode by loading AOT symbols from ELF loader. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-745", "text": "16286 Roll src/third_party/skia 6305b2f8342a..0ee16f689843 (2 commits) (autoroller: commit, cla: yes)\n\n16288 Roll fuchsia/sdk/core/mac-amd64 from yissX\u2026 to x6sVj\u2026 (autoroller: commit, cla: yes)\n\n16303 Roll src/third_party/dart 162d6c5634a0..5ae5aff6406a (28 commits) (autoroller: commit, cla: yes)\n\n16304 Deprecated FlutterView v1 points to FlutterView v2 (cla: yes, waiting for tree to go green)\n\n16305 Isolate and move common portable ELF loading from fixtures into //flutter/testing. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-746", "text": "16307 Roll src/third_party/skia 0ee16f689843..4513cdde4912 (13 commits) (autoroller: commit, cla: yes)\n\n16308 Roll fuchsia/sdk/core/linux-amd64 from VMcGV\u2026 to AtXwP\u2026 (cla: yes, waiting for tree to go green)\n\n16309 supporting changes for evaluation in web debugger (cla: yes)\n\n16310 Roll src/third_party/dart 5ae5aff6406a..91a3ea89c8e4 (22 commits) (autoroller: commit, cla: yes)\n\n16311 Remove all uses of the redundant flutter_root variable. (cla: yes)\n\n16312 Fix runtime type errors when running with canvaskit (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-747", "text": "16313 Expose DPI helper functions for Runner apps to use (cla: yes, waiting for tree to go green)\n\n16318 Roll src/third_party/skia 4513cdde4912..1b80c357926b (1 commits) (autoroller: commit, cla: yes)\n\n16319 Roll src/third_party/dart 91a3ea89c8e4..ed441e48d055 (4 commits) (autoroller: commit, cla: yes)\n\n16320 Roll fuchsia/sdk/core/mac-amd64 from x6sVj\u2026 to jtwQF\u2026 (autoroller: commit, cla: yes)\n\n16321 Fuchsia a11y actions (cla: yes)\n\n16322 use echo to test whether host is up (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-748", "text": "16322 use echo to test whether host is up (cla: yes)\n\n16323 Revert \u201cModifies accessibility bridge to populate new node fields in semantic\u2026\u201d (cla: yes)\n\n16324 Roll src/third_party/skia 1b80c357926b..776293dceefd (2 commits) (autoroller: commit, cla: yes)\n\n16325 Roll src/third_party/skia 776293dceefd..5d92ae2b56df (1 commits) (autoroller: commit, cla: yes)\n\n16326 Roll src/third_party/skia 5d92ae2b56df..3d05192abedf (1 commits) (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-749", "text": "16328 Roll src/third_party/dart ed441e48d055..c8ed304e979a (1 commits) (autoroller: commit, cla: yes)\n\n16329 Roll src/third_party/skia 3d05192abedf..f1e316ff39e7 (3 commits) (cla: yes, waiting for tree to go green)\n\n16331 Change NSLog to FML_DLOG (cla: yes, waiting for tree to go green)\n\n16332 Roll fuchsia/sdk/core/mac-amd64 from jtwQF\u2026 to 6h3IH\u2026 (autoroller: commit, cla: yes)\n\n16334 Roll fuchsia/sdk/core/linux-amd64 from AtXwP\u2026 to Tszo5\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-750", "text": "16335 Roll src/third_party/skia f1e316ff39e7..af99f3ee6017 (13 commits) (cla: yes, waiting for tree to go green)\n\n16336 Added a plugin method that gets called when the engine is about to be deleted (cla: yes)\n\n16337 [fuchsia] Add additional contributing instructions for Googlers (cla: yes)\n\n16339 Update buildroot to 02b77827fd4. (cla: yes)\n\n16340 Disable flaky MessageLoop tests on Fuchsia. (cla: yes)\n\n16341 [web][felt] If full dart-sdk isn\u2019t available, install it (cla: yes, platform-web)\n\n16342 Wstring conversion cleanup (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-751", "text": "16342 Wstring conversion cleanup (cla: yes)\n\n16343 Run Flutter framework tests against the web engine in Cirrus (cla: yes, platform-web)\n\n16344 trivial dart-sdk update to trigger engine rebuild for flutter hotfix (cla: yes)\n\n16347 Roll rapidjson (cla: yes)\n\n16349 Kill the test harness if any test exceeds a timeout. (cla: yes)\n\n16351 Fix race in SkiaGPUObject unit-tests. (cla: yes)\n\n16355 Revert \u201cRemove use of the deprecated AccessibilityNodeInfo boundsInPa\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-752", "text": "16356 Roll src/third_party/skia af99f3ee6017..71ce449d2814 (19 commits) (cla: yes, waiting for tree to go green)\n\n16360 Roll fuchsia/sdk/core/mac-amd64 from 6h3IH\u2026 to Ke00Y\u2026 (autoroller: commit, cla: yes)\n\n16362 Roll src/third_party/dart c8ed304e979a..3414b5167554 (52 commits) (autoroller: commit, cla: yes)\n\n16363 Roll fuchsia/sdk/core/linux-amd64 from Tszo5\u2026 to VJv0H\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-753", "text": "16364 Roll src/third_party/skia 71ce449d2814..2aee7d24da8f (5 commits) (cla: yes, waiting for tree to go green)\n\n16365 Reland #16206: \u201c[web] Correct getPositionForOffset for multi-line paragraphs\u201d (cla: yes, platform-web, waiting for tree to go green)\n\n16366 Expose enable-service-port-fallback switch (cla: yes)\n\n16367 Roll src/third_party/dart 3414b5167554..68e904e444dc (17 commits) (autoroller: commit, cla: yes)\n\n16368 Add docs linking BoxHeightStyle and BoxWidthStyle. (affects: docs, cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-754", "text": "16369 Fix Windows embedding issues caught by clang (cla: yes)\n\n16370 Add explicit casts to printing of function pointers (cla: yes)\n\n16371 Roll buildroot to c44791c89d2b51bfce864ab2cf5228d41ece1fcc (cla: yes)\n\n16372 Wrap strdup to use compliant name on Windows (cla: yes)\n\n16373 [SkParagraph] Text layout benchmarks using SkParagraph (cla: yes)\n\n16374 Roll src/third_party/skia 2aee7d24da8f..14d64afaa8a3 (10 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-755", "text": "16375 Control test timeouts based on debugger status or command line flags. (cla: yes, waiting for tree to go green)\n\n16376 Enable shell_unittests on Fuchsia with Vulkan dependencies. (cla: yes)\n\n16377 Roll src/third_party/dart 68e904e444dc..48808f7dce81 (17 commits) (autoroller: commit, cla: yes)\n\n16378 Roll fuchsia/sdk/core/mac-amd64 from Ke00Y\u2026 to ubThi\u2026 (autoroller: commit, cla: yes)\n\n16379 Update license output (cla: yes)\n\n16380 Roll src/third_party/skia 14d64afaa8a3..6c9b1fd6663e (7 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-756", "text": "16381 Roll src/third_party/dart 48808f7dce81..34893faa6079 (7 commits) (autoroller: commit, cla: yes)\n\n16383 Roll src/third_party/skia 6c9b1fd6663e..bc3307c395e2 (1 commits) (cla: yes, waiting for tree to go green)\n\n16397 fix build_id logic for fuchsia symbols (cla: yes)\n\n16412 [web] Fixes incorrect transform when context save and transforms are deferred. (cla: yes)\n\n16416 Suppress some deprecation warnings on Windows (cla: yes)\n\n16419 Roll buildroot (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-757", "text": "16419 Roll buildroot (cla: yes)\n\n16422 Roll src/third_party/dart 34893faa6079..b3396cbdcae1 (36 commits) (cla: yes, waiting for tree to go green)\n\n16424 Doc fixes in BoxHeightStyle (cla: yes)\n\n16425 [fuchsia] change kMaxFramesInFlight to 3, add offset option (cla: yes)\n\n16428 Update node fields fix (cla: yes)\n\n16429 Roll src/third_party/skia bc3307c395e2..ebc00f97fab1 (21 commits) (cla: yes, waiting for tree to go green)\n\n16430 use percent for golden diff rates; tighten the values (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-758", "text": "16433 Various fixes in CanvasKit (cla: yes)\n\n16434 Fix RasterCache LRU logic + opportunistic simplifications. (cla: yes)\n\n16440 fix bad reference to maxDiffRatePercent (cla: yes)\n\n16442 Include in hb_wrapper.h because unique_ptr is used. (cla: yes)\n\n16446 Relax timing restrictions on WakeUpTimersAreSingletons. (cla: yes)\n\n16450 Gather demangled stack traces and report the same to console on crashes. (cla: yes, waiting for tree to go green)\n\n16454 Roll fuchsia/sdk/core/mac-amd64 from ubThi\u2026 to fvWgE\u2026 (autoroller: commit, cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-759", "text": "16456 Roll src/third_party/skia ebc00f97fab1..cbf79b95c2d4 (4 commits) (cla: yes, waiting for tree to go green)\n\n16457 Roll fuchsia/sdk/core/linux-amd64 from VJv0H\u2026 to A9STP\u2026 (cla: yes, waiting for tree to go green)\n\n16459 Roll src/third_party/skia cbf79b95c2d4..4721e067812f (1 commits) (cla: yes, waiting for tree to go green)\n\n16461 Roll src/third_party/skia 4721e067812f..f6e3eaf05150 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-760", "text": "16463 Roll src/third_party/skia f6e3eaf05150..cc21d0c1f2ce (1 commits) (cla: yes, waiting for tree to go green)\n\n16465 Ensure fields of Rect and OffsetBase classes are optimized as non-null. (cla: yes)\n\n16466 Roll src/third_party/skia cc21d0c1f2ce..116b33e8ab21 (3 commits) (cla: yes, waiting for tree to go green)\n\n16469 [web] Reset width/height before deallocation for Safari allocation bug. (cla: yes)\n\n16470 Fix analyzer warnings for frontend_server change (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-761", "text": "16471 Roll src/third_party/skia 116b33e8ab21..7f36405ea3ec (3 commits) (cla: yes, waiting for tree to go green)\n\n16472 Disable unit tests using \u2013gtest-filter instead of at compile time (cla: yes)\n\n16473 opt out dart:ui from nnbd (cla: yes)\n\n16474 Enable runtime_unittests on Fuchsia (cla: yes)\n\n16476 Roll src/third_party/skia 7f36405ea3ec..c0360582d211 (6 commits) (cla: yes, waiting for tree to go green)\n\n16477 Simplify task queues locking mechanism (cla: yes)\n\n16478 Add noexcept annotations to EnableValue moves (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-762", "text": "16479 Roll src/third_party/skia c0360582d211..121750c2efff (7 commits) (cla: yes, waiting for tree to go green)\n\n16480 Roll src/third_party/dart b3396cbdcae1..49850e6919f7 (45 commits) (cla: yes, waiting for tree to go green)\n\n16481 Code cleanup on destructors (cla: yes, waiting for tree to go green)\n\n16482 Roll src/third_party/skia 121750c2efff..046f9893b953 (4 commits) (cla: yes, waiting for tree to go green)\n\n16483 Partially fix canvas vs text paint order when running on Blink/Webkit browsers (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-763", "text": "16484 Roll fuchsia/sdk/core/linux-amd64 from A9STP\u2026 to g2s3c\u2026 (cla: yes, waiting for tree to go green)\n\n16485 Roll src/third_party/dart 49850e6919f7..16782e6c171f (16 commits) (cla: yes, waiting for tree to go green)\n\n16486 Roll src/third_party/skia 046f9893b953..97bf6578796c (1 commits) (cla: yes, waiting for tree to go green)\n\n16487 Roll src/third_party/skia 97bf6578796c..f3560b680e35 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-764", "text": "16488 Roll src/third_party/dart 16782e6c171f..d765d237460d (1 commits) (cla: yes, waiting for tree to go green)\n\n16489 Roll fuchsia/sdk/core/linux-amd64 from g2s3c\u2026 to LvSlH\u2026 (cla: yes, waiting for tree to go green)\n\n16490 Roll src/third_party/skia f3560b680e35..77fdf66946d2 (1 commits) (cla: yes, waiting for tree to go green)\n\n16491 Roll src/third_party/dart d765d237460d..514a8d4c8417 (7 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-765", "text": "16492 Roll src/third_party/skia 77fdf66946d2..87e3bef6f82f (2 commits) (cla: yes, waiting for tree to go green)\n\n16493 Roll src/third_party/skia 87e3bef6f82f..9f3eef796f63 (7 commits) (cla: yes, waiting for tree to go green)\n\n16494 Fix unused import in Android embedder (cla: yes)\n\n16495 Disable ShellTest.WaitForFirstFrameTimeout on Fuchsia (cla: yes)\n\n16496 Fix text range logic for a11y (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-766", "text": "16497 Roll src/third_party/dart 514a8d4c8417..fd992e423ef6 (8 commits) (cla: yes, waiting for tree to go green)\n\n16498 Roll fuchsia/sdk/core/mac-amd64 from fvWgE\u2026 to FLFOw\u2026 (cla: yes, waiting for tree to go green)\n\n16499 Roll src/third_party/skia 9f3eef796f63..b2031d4255e2 (12 commits) (cla: yes, waiting for tree to go green)\n\n16500 Check Java formatting in format.sh (cla: yes, waiting for tree to go green)\n\n16501 Apply Google Java format (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-767", "text": "16502 Roll src/third_party/skia b2031d4255e2..a9405c2a2967 (5 commits) (cla: yes, waiting for tree to go green)\n\n16503 Fix ensureInitializationCompleteAsync callback when already initialized. (#39675) (cla: yes)\n\n16504 Use Skia to determine \u201cactual\u201d font name in CanvasKit backend (cla: yes)\n\n16505 Roll src/third_party/skia a9405c2a2967..8dad1ffd81f8 (1 commits) (cla: yes, waiting for tree to go green)\n\n16506 Roll src/third_party/dart fd992e423ef6..4310f50edc95 (17 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-768", "text": "16508 Roll fuchsia/sdk/core/linux-amd64 from LvSlH\u2026 to 8L7NY\u2026 (cla: yes, waiting for tree to go green)\n\n16509 Apply lints from internal roll (cla: yes, waiting for tree to go green)\n\n16510 Roll src/third_party/skia 8dad1ffd81f8..c03e6982f96f (2 commits) (cla: yes, waiting for tree to go green)\n\n16511 Roll src/third_party/dart 4310f50edc95..9464eb51f539 (2 commits) (cla: yes, waiting for tree to go green)\n\n16512 Roll fuchsia/sdk/core/mac-amd64 from FLFOw\u2026 to PMcw3\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-769", "text": "16513 Roll src/third_party/dart 9464eb51f539..f120417ddbfc (1 commits) (cla: yes, waiting for tree to go green)\n\n16514 Roll src/third_party/dart f120417ddbfc..b158bf7bd537 (2 commits) (cla: yes, waiting for tree to go green)\n\n16516 Remove mirrors on the web (cla: yes, waiting for tree to go green)\n\n16517 Roll src/third_party/dart b158bf7bd537..5244d99a5d4e (1 commits) (cla: yes, waiting for tree to go green)\n\n16520 support endless trace buffer (cla: yes, waiting for tree to go green)\n\n16523 Adds new route annoucement method. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-770", "text": "16524 Roll src/third_party/skia c03e6982f96f..465864cad5d2 (14 commits) (cla: yes, waiting for tree to go green)\n\n16525 Clear frame references at the end of every CanvasKit frame (cla: yes)\n\n16526 Enable verbose logging for shell unittests on Fuchsia (cla: yes)\n\n16527 Prevent long flash when switching to Flutter app. (#47903) (cla: yes)\n\n16528 Roll src/third_party/skia 465864cad5d2..21f382c19d76 (6 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-771", "text": "16529 Roll fuchsia/sdk/core/linux-amd64 from 8L7NY\u2026 to Bmq1m\u2026 (cla: yes, waiting for tree to go green)\n\n16530 Roll fuchsia/sdk/core/mac-amd64 from PMcw3\u2026 to 7JkB7\u2026 (cla: yes, waiting for tree to go green)\n\n16531 libtxt: use a fixture in the benchmarks (cla: yes)\n\n16532 Roll src/third_party/skia 21f382c19d76..f83d0346c06a (2 commits) (cla: yes, waiting for tree to go green)\n\n16533 Roll src/third_party/dart 5244d99a5d4e..5fc031ebc1d7 (42 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-772", "text": "16534 Roll src/third_party/skia f83d0346c06a..88c3793a4eaa (1 commits) (cla: yes, waiting for tree to go green)\n\n16535 Roll src/third_party/skia 88c3793a4eaa..abefc9c170c9 (1 commits) (cla: yes, waiting for tree to go green)\n\n16536 Roll src/third_party/skia abefc9c170c9..4fe89b4d871d (2 commits) (cla: yes, waiting for tree to go green)\n\n16537 Roll src/third_party/dart 5fc031ebc1d7..30151a654151 (2 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-773", "text": "16538 Roll src/third_party/skia 4fe89b4d871d..dc2782c380f6 (1 commits) (cla: yes, waiting for tree to go green)\n\n16539 Roll src/third_party/dart 30151a654151..76b18c455e2c (1 commits) (cla: yes, waiting for tree to go green)\n\n16540 Roll src/third_party/skia dc2782c380f6..cdf2491afa04 (1 commits) (cla: yes, waiting for tree to go green)\n\n16541 Roll src/third_party/skia cdf2491afa04..50a490a1a4fb (2 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-774", "text": "16542 Roll src/third_party/skia 50a490a1a4fb..c3b67eb988c8 (4 commits) (cla: yes, waiting for tree to go green)\n\n16543 Roll src/third_party/skia c3b67eb988c8..b1525c721ea6 (4 commits) (cla: yes, waiting for tree to go green)\n\n16544 Roll src/third_party/dart 76b18c455e2c..e4c39721c473 (6 commits) (cla: yes, waiting for tree to go green)\n\n16545 Try rasterizing each picture and layer at most once. Apply a consistent caching treshold to layers and pictures. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-775", "text": "16546 Revert \u201cUse os_log instead of syslog on Apple platforms (#13487)\u201d (cla: yes)\n\n16547 Samsung duplication bug hack-fix (affects: text input, cla: yes, platform-android, waiting for tree to go green)\n\n16548 [fuchsia] Disable retained layers (cla: yes)\n\n16549 Re-land: Use os_log instead of syslog on Apple platforms (cla: yes, waiting for tree to go green)\n\n16550 [web] skipping unit tests in Safari (cla: yes, platform-web)\n\n16552 Exposes FlutterView, FlutterSurfaceView, and FlutterTextureView to FlutterActivity and FlutterFragment. (#41984, #47557) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-776", "text": "16553 Roll src/third_party/dart e4c39721c473..0299903f3e78 (31 commits) (cla: yes, waiting for tree to go green)\n\n16555 Roll fuchsia/sdk/core/mac-amd64 from 7JkB7\u2026 to t4kck\u2026 (cla: yes, waiting for tree to go green)\n\n16556 Enable lazy-async-stacks by-default in all modes (cla: yes)\n\n16557 [web] Fix edge cases in Paragraph.getPositionForOffset to match Flutter (affects: text input, cla: yes, platform-web)\n\n16558 Revert \u201cRe-land: Use os_log instead of syslog on Apple platforms (#16\u2026 (cla: yes)\n\n16559 Update felt documentation (cla: yes, platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-777", "text": "16559 Update felt documentation (cla: yes, platform-web)\n\n16560 Fix the newline on some keyboards (cla: yes, waiting for tree to go green)\n\n16561 [Fuchsia] Dump syslog output after tests have run (cla: yes)\n\n16562 Roll src/third_party/skia b1525c721ea6..67da665c27ff (32 commits) (cla: yes, waiting for tree to go green)\n\n16564 Move log_listener to reboot trap (cla: yes)\n\n16565 Fix multi-line Javadoc code blocks (cla: yes)\n\n16566 Roll src/third_party/skia 67da665c27ff..886e8500a9f2 (3 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-778", "text": "16567 [web] Unskip tests that are already passing in Safari (affects: tests, cla: yes, platform-web, waiting for tree to go green)\n\n16568 Revert \u201cRe-arm timer as necessary in MessageLoopFuchsia\u201d (cla: yes)\n\n16569 [web] Handle alignment correctly in Paragraph.getPositionForOffset (affects: text input, cla: yes, platform-web)\n\n16570 Roll src/third_party/skia 886e8500a9f2..9102c86a81ad (1 commits) (cla: yes, waiting for tree to go green)\n\n16572 Set the current GL context to the most recently acquired Surface (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-779", "text": "16575 Roll src/third_party/skia 9102c86a81ad..6029cbd560b7 (2 commits) (cla: yes, waiting for tree to go green)\n\n16577 Roll src/third_party/skia 6029cbd560b7..1a733b5b760a (1 commits) (cla: yes, waiting for tree to go green)\n\n16578 Roll src/third_party/skia 1a733b5b760a..1d1333fcedf8 (3 commits) (cla: yes, waiting for tree to go green)\n\n16581 Roll fuchsia/sdk/core/mac-amd64 from t4kck\u2026 to oHa-O\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-780", "text": "16584 Roll src/third_party/skia 1d1333fcedf8..3bf3b92dfab0 (1 commits) (cla: yes, waiting for tree to go green)\n\n16587 Roll src/third_party/skia 3bf3b92dfab0..55f040bcb943 (3 commits) (cla: yes, waiting for tree to go green)\n\n16588 Remove usage of Dart_AllocateWithNativeFields from tonic (cla: yes)\n\n16590 [web] Fixing launching Safari. This should solve the LUCI issue (cla: yes)\n\n16592 Roll fuchsia/sdk/core/linux-amd64 from Bmq1m\u2026 to J-_s6\u2026 (cla: yes, waiting for tree to go green)\n\n16595 improve surface state assert error messages (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-781", "text": "16595 improve surface state assert error messages (cla: yes)\n\n16599 Implement Path extractPath, tangent APIs (cla: yes)\n\n16601 Fix drawRRect failure when shader is specified (cla: yes)\n\n16604 Manual roll of Dart 0299903f3e\u2026edd64e6d5c (cla: yes)\n\n16613 Roll buildroot to d14f3c708fb132381f7053b4ee9e628be915ed96 (cla: yes)\n\n16621 [shell tests] Integrate Vulkan with Shell Tests (cla: yes)\n\n16624 update hash code logic on the web (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-782", "text": "16624 update hash code logic on the web (cla: yes)\n\n16625 [web] Paragraph.getBoxesForRange uses LineMetrics (affects: text input, cla: yes, platform-web)\n\n16626 [web] Skipping failing edge tests (cla: yes)\n\n16628 Roll src/third_party/dart edd64e6d5c79..11ae06e988de (44 commits) (cla: yes, waiting for tree to go green)\n\n16629 Kick LUCI (cla: yes)\n\n16630 URL-encode asset URLs so assets are properly loaded (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-783", "text": "16631 Roll src/third_party/skia 55f040bcb943..05676f7bc238 (47 commits) (cla: yes, waiting for tree to go green)\n\n16632 Roll src/third_party/dart 11ae06e988de..361f881b8edc (7 commits) (cla: yes, waiting for tree to go green)\n\n16633 Roll src/third_party/skia 05676f7bc238..b7ceaa8efd2b (1 commits) (cla: yes, waiting for tree to go green)\n\n16634 Roll src/third_party/dart 361f881b8edc..6ae9dedc6058 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-784", "text": "16635 Roll fuchsia/sdk/core/linux-amd64 from J-_s6\u2026 to Dx_qu\u2026 (cla: yes, waiting for tree to go green)\n\n16636 Roll src/third_party/skia b7ceaa8efd2b..81e84a6e7f03 (2 commits) (cla: yes, waiting for tree to go green)\n\n16637 Roll src/third_party/skia 81e84a6e7f03..2c5ee187245a (1 commits) (cla: yes, waiting for tree to go green)\n\n16638 Roll src/third_party/skia 2c5ee187245a..a27ca5566533 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-785", "text": "16639 Roll fuchsia/sdk/core/linux-amd64 from Dx_qu\u2026 to CNbNp\u2026 (cla: yes, waiting for tree to go green)\n\n16640 Roll src/third_party/skia a27ca5566533..8935981317ca (1 commits) (cla: yes, waiting for tree to go green)\n\n16641 Roll src/third_party/dart 6ae9dedc6058..374c9c448fdc (1 commits) (cla: yes, waiting for tree to go green)\n\n16642 Roll src/third_party/skia 8935981317ca..bfe80bb552b0 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-786", "text": "16643 Roll src/third_party/skia bfe80bb552b0..660a73ada09d (1 commits) (cla: yes, waiting for tree to go green)\n\n16644 Roll src/third_party/skia 660a73ada09d..c65cd5c8dba9 (2 commits) (cla: yes, waiting for tree to go green)\n\n16645 Roll fuchsia/sdk/core/linux-amd64 from CNbNp\u2026 to m7Xt4\u2026 (cla: yes, waiting for tree to go green)\n\n16646 Roll fuchsia/sdk/core/mac-amd64 from oHa-O\u2026 to FS4mm\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-787", "text": "16647 Roll src/third_party/dart 374c9c448fdc..7ed1690b4ed6 (1 commits) (cla: yes, waiting for tree to go green)\n\n16648 Roll src/third_party/dart 7ed1690b4ed6..b20c35c7d90f (9 commits) (cla: yes, waiting for tree to go green)\n\n16649 Roll src/third_party/skia c65cd5c8dba9..706f6b4069b1 (1 commits) (cla: yes, waiting for tree to go green)\n\n16650 Roll src/third_party/skia 706f6b4069b1..3c4f3c178ade (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-788", "text": "16651 Roll fuchsia/sdk/core/mac-amd64 from FS4mm\u2026 to PGe1A\u2026 (cla: yes, waiting for tree to go green)\n\n16652 Roll fuchsia/sdk/core/linux-amd64 from m7Xt4\u2026 to Uc8XS\u2026 (cla: yes, waiting for tree to go green)\n\n16653 Lift restriction that embedders may not trample the render thread OpenGL context in composition callbacks. (cla: yes)\n\n16655 Roll src/third_party/skia 3c4f3c178ade..9dbb98007b7b (2 commits) (cla: yes, waiting for tree to go green)\n\n16656 Roll src/third_party/skia 9dbb98007b7b..4af17e434cdc (2 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-789", "text": "16657 Roll src/third_party/dart b20c35c7d90f..a314cff6ee03 (4 commits) (cla: yes, waiting for tree to go green)\n\n16658 Roll fuchsia/sdk/core/mac-amd64 from PGe1A\u2026 to 06MUz\u2026 (cla: yes, waiting for tree to go green)\n\n16659 Roll fuchsia/sdk/core/linux-amd64 from Uc8XS\u2026 to 2W9Xr\u2026 (cla: yes, waiting for tree to go green)\n\n16660 Roll src/third_party/skia 4af17e434cdc..78b471760dd9 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-790", "text": "16661 Roll src/third_party/dart a314cff6ee03..999eeea5a3ff (15 commits) (cla: yes, waiting for tree to go green)\n\n16662 Roll src/third_party/skia 78b471760dd9..c1bb9cba16be (1 commits) (cla: yes, waiting for tree to go green)\n\n16665 Roll src/third_party/skia c1bb9cba16be..7281a8623799 (9 commits) (cla: yes, waiting for tree to go green)\n\n16666 Roll src/third_party/dart 999eeea5a3ff..3883c6070942 (5 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-791", "text": "16667 Roll src/third_party/skia 7281a8623799..fe6fe6c5a8a8 (7 commits) (cla: yes, waiting for tree to go green)\n\n16668 Roll fuchsia/sdk/core/mac-amd64 from 06MUz\u2026 to _jvYk\u2026 (cla: yes, waiting for tree to go green)\n\n16669 Roll src/third_party/skia fe6fe6c5a8a8..799a23cf0602 (1 commits) (cla: yes, waiting for tree to go green)\n\n16670 Roll fuchsia/sdk/core/linux-amd64 from 2W9Xr\u2026 to VHyDa\u2026 (cla: yes, waiting for tree to go green)\n\n16672 Fix issue viewdidload call while init FlutterViewController (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-792", "text": "16673 Roll src/third_party/dart 3883c6070942..c11c0ae3fdca (9 commits) (cla: yes, waiting for tree to go green)\n\n16674 Revert \u201cLift restriction that embedders may not trample the render thread OpenGL context in composition callbacks.\u201d (cla: yes)\n\n16675 Roll src/third_party/skia 799a23cf0602..d0d033a12556 (3 commits) (cla: yes, waiting for tree to go green)\n\n16676 Roll src/third_party/skia d0d033a12556..a037445e07a7 (4 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-793", "text": "16677 Roll src/third_party/skia a037445e07a7..c5ff41f2976e (1 commits) (cla: yes, waiting for tree to go green)\n\n16678 Roll src/third_party/dart c11c0ae3fdca..707ecda05e14 (1 commits) (cla: yes, waiting for tree to go green)\n\n16683 Roll src/third_party/dart 707ecda05e14..0f141be8bd52 (4 commits) (cla: yes, waiting for tree to go green)\n\n16684 Revert \u201cRemove usage of Dart_AllocateWithNativeFields from tonic\u201d (cla: yes)\n\n16689 Add more child lifecycle tests (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-794", "text": "16689 Add more child lifecycle tests (cla: yes)\n\n16690 fuchsia: remove use of replace_as_executable (cla: yes)\n\n16691 Roll src/third_party/skia c5ff41f2976e..7dfb46e7f397 (20 commits) (cla: yes, waiting for tree to go green)\n\n16692 Roll fuchsia/sdk/core/mac-amd64 from _jvYk\u2026 to WZgbp\u2026 (cla: yes, waiting for tree to go green)\n\n16693 Roll src/third_party/dart 0f141be8bd52..7469b87b042a (9 commits) (cla: yes, waiting for tree to go green)\n\n16694 Fix FlutterPlugin doc param reference (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-795", "text": "16696 Roll src/third_party/skia 7dfb46e7f397..9baef3593c3c (3 commits) (cla: yes, waiting for tree to go green)\n\n16698 [runner] Corrects logging of close() status (cla: yes)\n\n16699 Roll src/third_party/skia 9baef3593c3c..ed1ff23c2768 (5 commits) (cla: yes, waiting for tree to go green)\n\n16700 [i18n] Deprecates fuchsia.timezone.Timezone (cla: yes)\n\n16701 Roll fuchsia/sdk/core/linux-amd64 from VHyDa\u2026 to YPr0t\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-796", "text": "16702 Roll src/third_party/dart 7469b87b042a..e187e42593e8 (11 commits) (cla: yes, waiting for tree to go green)\n\n16703 Roll src/third_party/skia ed1ff23c2768..a5097354217b (1 commits) (cla: yes, waiting for tree to go green)\n\n16704 Roll src/third_party/skia a5097354217b..2c2db2762809 (1 commits) (cla: yes, waiting for tree to go green)\n\n16705 Roll src/third_party/dart e187e42593e8..81d4cc6bc99a (3 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-797", "text": "16706 Roll fuchsia/sdk/core/mac-amd64 from WZgbp\u2026 to 78ZcV\u2026 (cla: yes, waiting for tree to go green)\n\n16707 Roll src/third_party/skia 2c2db2762809..9d4e31d6cda5 (1 commits) (cla: yes, waiting for tree to go green)\n\n16708 Roll fuchsia/sdk/core/linux-amd64 from YPr0t\u2026 to CZTpy\u2026 (cla: yes, waiting for tree to go green)\n\n16710 Roll src/third_party/skia 9d4e31d6cda5..62076977a0b7 (11 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-798", "text": "16711 Reland \u201cLift restriction that embedders may not trample the render thread OpenGL context in composition callbacks.\u201d (cla: yes)\n\n16712 Roll src/third_party/skia 62076977a0b7..1d589a578ca4 (6 commits) (cla: yes, waiting for tree to go green)\n\n16713 Reland \u201cRemove usage of Dart_AllocateWithNativeFields\u201d (cla: yes, waiting for tree to go green)\n\n16714 Roll src/third_party/skia 1d589a578ca4..706851dc99d9 (2 commits) (cla: yes, waiting for tree to go green)\n\n16715 [web] Running safari tests on LUCI (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-799", "text": "16716 Roll src/third_party/dart 81d4cc6bc99a..fd20c7b92bb8 (31 commits) (cla: yes, waiting for tree to go green)\n\n16717 Flush the SkCanvas when submitting a frame in ShellTestPlatformViewVulkan::OffscreenSurface (cla: yes)\n\n16718 Enable Vulkan-related shell unittests on Fuchsia (cla: yes)\n\n16719 Roll src/third_party/skia 706851dc99d9..df283d01cabb (3 commits) (cla: yes, waiting for tree to go green)\n\n16720 Refactor of ClaimDartHandle -> AssociateWithDartWrapper (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-800", "text": "16721 [web] Fix canvas leak when dpi changes. Evict from BitmapCanvas cache under\u2026 (cla: yes)\n\n16722 Roll src/third_party/skia df283d01cabb..3ffa7af75301 (1 commits) (cla: yes, waiting for tree to go green)\n\n16723 Roll src/third_party/dart fd20c7b92bb8..6ef9131d82c4 (7 commits) (cla: yes, waiting for tree to go green)\n\n16725 Roll src/third_party/skia 3ffa7af75301..77521d9e06e8 (2 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-801", "text": "16726 Roll fuchsia/sdk/core/mac-amd64 from 78ZcV\u2026 to iYYAH\u2026 (cla: yes, waiting for tree to go green)\n\n16727 Roll fuchsia/sdk/core/linux-amd64 from CZTpy\u2026 to -u-iU\u2026 (cla: yes, waiting for tree to go green)\n\n16728 Roll src/third_party/dart 6ef9131d82c4..5829fc7829d5 (3 commits) (cla: yes, waiting for tree to go green)\n\n16729 Roll src/third_party/skia 77521d9e06e8..392846665c40 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-802", "text": "16730 Roll src/third_party/skia 392846665c40..bf5cb0f539e7 (1 commits) (cla: yes, waiting for tree to go green)\n\n16732 Roll src/third_party/skia bf5cb0f539e7..46f5c5f08b61 (2 commits) (cla: yes, waiting for tree to go green)\n\n16733 Fix some compiler warnings in newer versions of Clang. (cla: yes)\n\n16734 [web] Rename LineMetrics.text to LineMetrics.displayText (cla: yes, platform-web)\n\n16736 [web] Paragraph.longestLine doesn\u2019t need to check for isSingleLine anymore (cla: yes, platform-web)\n\n16737 [web] add comment to skipped safari test (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-803", "text": "16744 Roll fuchsia/sdk/core/mac-amd64 from iYYAH\u2026 to 5B5jq\u2026 (cla: yes, waiting for tree to go green)\n\n16745 [web] Reduce the usage of unnecessary lists in pointer binding (cla: yes, platform-web, waiting for tree to go green)\n\n16749 [web] Respect maxLines when calculating boxes for a range (cla: yes, platform-web, waiting for tree to go green)\n\n16752 Roll fuchsia/sdk/core/linux-amd64 from -u-iU\u2026 to 3rB22\u2026 (cla: yes, waiting for tree to go green)\n\n16753 Migrate Path to AssociateWithDartWrapper (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-804", "text": "16754 Roll src/third_party/skia 46f5c5f08b61..9e8f60534464 (29 commits) (cla: yes, waiting for tree to go green)\n\n16755 Roll fuchsia/sdk/core/mac-amd64 from 5B5jq\u2026 to g1vJn\u2026 (cla: yes, waiting for tree to go green)\n\n16757 Roll src/third_party/skia 9e8f60534464..d1c90e10f0ca (1 commits) (cla: yes, waiting for tree to go green)\n\n16759 Roll src/third_party/skia d1c90e10f0ca..998066127e0d (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-805", "text": "16762 Roll src/third_party/skia 998066127e0d..57bc977e124c (3 commits) (cla: yes, waiting for tree to go green)\n\n16763 Roll fuchsia/sdk/core/linux-amd64 from 3rB22\u2026 to PGfiE\u2026 (cla: yes, waiting for tree to go green)\n\n16764 Roll fuchsia/sdk/core/mac-amd64 from g1vJn\u2026 to mcI8X\u2026 (cla: yes, waiting for tree to go green)\n\n16767 Roll src/third_party/skia 57bc977e124c..cc5415a8ce36 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-806", "text": "16769 Roll src/third_party/skia cc5415a8ce36..1cec4d5e3d92 (2 commits) (cla: yes, waiting for tree to go green)\n\n16770 Roll src/third_party/dart 5829fc7829d5..c75256299280 (43 commits) (cla: yes, waiting for tree to go green)\n\n16771 Roll src/third_party/skia 1cec4d5e3d92..7d252302268a (2 commits) (cla: yes, waiting for tree to go green)\n\n16772 Delete FlutterAppDelegate_Internal.h (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-807", "text": "16773 Roll src/third_party/skia 7d252302268a..03b8ab225fd7 (8 commits) (cla: yes, waiting for tree to go green)\n\n16774 Roll src/third_party/skia 03b8ab225fd7..659cc1c90705 (4 commits) (cla: yes, waiting for tree to go green)\n\n16776 Roll src/third_party/dart c75256299280..73f6d15665a3 (9 commits) (cla: yes, waiting for tree to go green)\n\n16777 Roll fuchsia/sdk/core/mac-amd64 from mcI8X\u2026 to O6w2L\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-808", "text": "16778 Roll src/third_party/skia 659cc1c90705..19304d88c8be (5 commits) (cla: yes, waiting for tree to go green)\n\n16779 Roll fuchsia/sdk/core/linux-amd64 from PGfiE\u2026 to QU3ft\u2026 (cla: yes, waiting for tree to go green)\n\n16780 Roll src/third_party/dart 73f6d15665a3..7aa824076c34 (11 commits) (cla: yes, waiting for tree to go green)\n\n16781 Revert \u201cEnable lazy-async-stacks by-default in all modes\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-809", "text": "16782 Roll src/third_party/skia 19304d88c8be..6d927b63a311 (3 commits) (cla: yes, waiting for tree to go green)\n\n16783 Roll src/third_party/skia 6d927b63a311..a6572f78d084 (3 commits) (cla: yes, waiting for tree to go green)\n\n16785 Manually add third_party/dart/third_party/pkg/stagehand to DEPS (cla: yes)\n\n16787 Roll fuchsia/sdk/core/mac-amd64 from O6w2L\u2026 to 8gjOI\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-810", "text": "16788 Roll src/third_party/dart 7aa824076c34..2ce1df76309d (11 commits) (cla: yes, waiting for tree to go green)\n\n16789 Roll src/third_party/skia a6572f78d084..c8d092a060ad (1 commits) (cla: yes, waiting for tree to go green)\n\n16791 [web] Guard the remaining calls to window.onPlatformMessage (cla: yes, platform-web)\n\n16792 Roll src/third_party/dart 2ce1df76309d..85f6d51c3fd1 (6 commits) (cla: yes, waiting for tree to go green)\n\n16793 Evict BitmapCanvas(s) from cache when canvas allocation fails (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-811", "text": "16794 Fix handler unregistration in C++ channels (cla: yes)\n\n16795 Roll src/third_party/skia c8d092a060ad..7a6db4cbf48b (2 commits) (cla: yes, waiting for tree to go green)\n\n16797 [web] changing user limits for macos (cla: yes)\n\n16799 Roll src/third_party/skia 7a6db4cbf48b..d8575452ebf3 (3 commits) (cla: yes, waiting for tree to go green)\n\n16800 Enable HTTP and socket profiling dart:io service extensions for Flutter (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-812", "text": "16801 Roll src/third_party/skia d8575452ebf3..adc9bbb2aaca (2 commits) (cla: yes, waiting for tree to go green)\n\n16803 Roll fuchsia/sdk/core/mac-amd64 from 8gjOI\u2026 to 3B3a6\u2026 (cla: yes, waiting for tree to go green)\n\n16804 Roll src/third_party/skia adc9bbb2aaca..7b96793ccc5b (3 commits) (cla: yes, waiting for tree to go green)\n\n16805 Roll src/third_party/skia 7b96793ccc5b..f0a13d04c233 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-813", "text": "16810 Roll src/third_party/skia f0a13d04c233..7f5e3c7e43c7 (6 commits) (cla: yes, waiting for tree to go green)\n\n16813 Roll src/third_party/dart 85f6d51c3fd1..418923733006 (30 commits) (cla: yes, waiting for tree to go green)\n\n16814 Roll fuchsia/sdk/core/mac-amd64 from 3B3a6\u2026 to NVGXM\u2026 (cla: yes, waiting for tree to go green)\n\n16815 Roll src/third_party/skia 7f5e3c7e43c7..dc2a97774bb6 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-814", "text": "16817 Roll src/third_party/dart 418923733006..9c05fde96b62 (2 commits) (cla: yes, waiting for tree to go green)\n\n16818 script for fetching correct flutter version (cla: yes)\n\n16820 Fixed the ability to scroll to the top on iOS 13 (cla: yes)\n\n16821 Roll fuchsia/sdk/core/linux-amd64 from QU3ft\u2026 to 94el1\u2026 (cla: yes)\n\n16822 Fix stale physicalSize on resize event (cla: yes)\n\n16824 Avoid capturing this unsafely in MultiFrameCodec (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-815", "text": "16825 Roll fuchsia/sdk/core/linux-amd64 from 94el1\u2026 to P70YB\u2026 (cla: yes, waiting for tree to go green)\n\n16828 Roll src/third_party/skia dc2a97774bb6..93afe641d0be (22 commits) (cla: yes, waiting for tree to go green)\n\n16829 Revert \u201cfuchsia: remove use of replace_as_executable (#16690)\u201d (cla: yes)\n\n16830 Roll src/third_party/skia 93afe641d0be..7b3999edcb18 (2 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-816", "text": "16832 Roll src/third_party/skia 7b3999edcb18..4c690b442f89 (6 commits) (cla: yes, waiting for tree to go green)\n\n16833 Roll src/third_party/dart 9c05fde96b62..501af5ac3b02 (53 commits) (cla: yes, waiting for tree to go green)\n\n16834 [fuchsia] fix broken flows when under high load (cla: yes)\n\n16835 Roll src/third_party/skia 4c690b442f89..f106bc27a4a3 (3 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-817", "text": "16836 Roll src/third_party/skia f106bc27a4a3..2536b7f974b6 (9 commits) (cla: yes, waiting for tree to go green)\n\n16837 remove usage of Dart_New for paragraph/libtxt (cla: yes)\n\n16838 Drop last usages of Dart_New from engine (cla: yes)\n\n16839 Roll src/third_party/skia 2536b7f974b6..0e29459cda65 (1 commits) (cla: yes, waiting for tree to go green)\n\n16840 [SkParagraph] Set the skia_use_icu GN flag required to build SkParagraph (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-818", "text": "16841 Roll src/third_party/dart 501af5ac3b02..f5669caec7c3 (18 commits) (cla: yes, waiting for tree to go green)\n\n16842 Roll src/third_party/skia 0e29459cda65..d8c604b855b8 (1 commits) (cla: yes, waiting for tree to go green)\n\n16843 Roll src/third_party/skia d8c604b855b8..23d978da38f9 (2 commits) (cla: yes, waiting for tree to go green)\n\n16844 Roll fuchsia/sdk/core/linux-amd64 from P70YB\u2026 to RYDur\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-819", "text": "16845 Roll fuchsia/sdk/core/mac-amd64 from NVGXM\u2026 to K26F5\u2026 (cla: yes, waiting for tree to go green)\n\n16846 Roll src/third_party/skia 23d978da38f9..52037e8ecce6 (2 commits) (cla: yes, waiting for tree to go green)\n\n16847 Roll src/third_party/skia 52037e8ecce6..0a3900fb33dc (2 commits) (cla: yes, waiting for tree to go green)\n\n16848 Roll src/third_party/dart f5669caec7c3..c790e0c4017d (4 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-820", "text": "16849 Avoid using Dart_New for semantics (cla: yes, waiting for tree to go green)\n\n16850 shake out Paint.toString (cla: yes, perf: app size, severe: performance)\n\n16851 Roll src/third_party/dart c790e0c4017d..dda5bcee00d3 (5 commits) (cla: yes, waiting for tree to go green)\n\n16852 Roll src/third_party/skia 0a3900fb33dc..bde9fcce155f (1 commits) (cla: yes, waiting for tree to go green)\n\n16853 Roll src/third_party/skia bde9fcce155f..55f681faf391 (2 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-821", "text": "16854 Roll src/third_party/skia 55f681faf391..03d9e8af0d25 (6 commits) (cla: yes, waiting for tree to go green)\n\n16855 Roll fuchsia/sdk/core/linux-amd64 from RYDur\u2026 to bgFop\u2026 (cla: yes, waiting for tree to go green)\n\n16856 Roll src/third_party/dart dda5bcee00d3..4dad6d77ba50 (6 commits) (cla: yes, waiting for tree to go green)\n\n16857 Roll src/third_party/skia 03d9e8af0d25..262796edeba6 (11 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-822", "text": "16860 Roll src/third_party/dart 4dad6d77ba50..6708f6d4c7df (15 commits) (cla: yes, waiting for tree to go green)\n\n16861 Roll src/third_party/skia 262796edeba6..54cb21430ccb (23 commits) (cla: yes, waiting for tree to go green)\n\n16863 Roll src/third_party/skia 54cb21430ccb..e1ae9c4bcf2e (4 commits) (cla: yes, waiting for tree to go green)\n\n16864 Manual roll of Dart 09bbd3cca5\u20266708f6d4c7 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-823", "text": "16865 Roll src/third_party/skia e1ae9c4bcf2e..5d1c3e2ead61 (2 commits) (cla: yes, waiting for tree to go green)\n\n16866 Roll src/third_party/skia 5d1c3e2ead61..59b160f99106 (2 commits) (cla: yes, waiting for tree to go green)\n\n16867 Roll src/third_party/skia 59b160f99106..71a20b2685c6 (1 commits) (cla: yes, waiting for tree to go green)\n\n16869 Roll src/third_party/skia 71a20b2685c6..ecbb0fb2d5bc (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-824", "text": "16871 Roll fuchsia/sdk/core/linux-amd64 from bgFop\u2026 to F_Ihm\u2026 (cla: yes, waiting for tree to go green)\n\n16872 Roll fuchsia/sdk/core/mac-amd64 from K26F5\u2026 to 79I0C\u2026 (cla: yes, waiting for tree to go green)\n\n16873 Roll src/third_party/skia ecbb0fb2d5bc..666707336e07 (1 commits) (cla: yes, waiting for tree to go green)\n\n16874 Roll fuchsia/sdk/core/mac-amd64 from 79I0C\u2026 to NoQzJ\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-825", "text": "16875 Roll fuchsia/sdk/core/linux-amd64 from F_Ihm\u2026 to 22R78\u2026 (cla: yes, waiting for tree to go green)\n\n16876 Roll src/third_party/skia 666707336e07..231f1bf56556 (1 commits) (cla: yes, waiting for tree to go green)\n\n16877 Roll src/third_party/dart 09bbd3cca5d4..860dca93ea42 (1 commits) (cla: yes, waiting for tree to go green)\n\n16878 Roll src/third_party/skia 231f1bf56556..d6205322cdc5 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-826", "text": "16879 Roll src/third_party/skia d6205322cdc5..6729496a037f (1 commits) (cla: yes, waiting for tree to go green)\n\n16880 Roll src/third_party/skia 6729496a037f..367dbff98555 (1 commits) (cla: yes, waiting for tree to go green)\n\n16881 Roll fuchsia/sdk/core/mac-amd64 from NoQzJ\u2026 to q2DAy\u2026 (cla: yes, waiting for tree to go green)\n\n16882 Roll fuchsia/sdk/core/linux-amd64 from 22R78\u2026 to 9NHsJ\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-827", "text": "16884 Roll src/third_party/skia 367dbff98555..986680240f81 (1 commits) (cla: yes, waiting for tree to go green)\n\n16885 Roll src/third_party/dart 860dca93ea42..fbe9f6115d2f (9 commits) (cla: yes, waiting for tree to go green)\n\n16886 Roll src/third_party/skia 986680240f81..9dd0bd78b2d7 (2 commits) (cla: yes, waiting for tree to go green)\n\n16887 Roll src/third_party/skia 9dd0bd78b2d7..470f0637aeea (11 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-828", "text": "16888 Roll src/third_party/dart fbe9f6115d2f..0b819161d778 (3 commits) (cla: yes, waiting for tree to go green)\n\n16889 Revert \u201cTry rasterizing images and layers only once , even when their\u2026 (cla: yes, waiting for tree to go green)\n\n16891 Roll src/third_party/skia 470f0637aeea..ded437003d0e (6 commits) (cla: yes, waiting for tree to go green)\n\n16892 Roll fuchsia/sdk/core/mac-amd64 from q2DAy\u2026 to WmA2M\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-829", "text": "16893 Roll fuchsia/sdk/core/linux-amd64 from 9NHsJ\u2026 to uiAI5\u2026 (cla: yes, waiting for tree to go green)\n\n16894 Roll src/third_party/skia ded437003d0e..b43cfa4d3f96 (7 commits) (cla: yes, waiting for tree to go green)\n\n16896 Const finder missing static const list/map/set fields. (cla: yes)\n\n16898 Roll src/third_party/dart 0b819161d778..ca3ad264a649 (18 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-830", "text": "16899 Roll src/third_party/skia b43cfa4d3f96..8121d27b297c (10 commits) (cla: yes, waiting for tree to go green)\n\n16900 Roll src/third_party/skia 8121d27b297c..73ae40a424fa (1 commits) (cla: yes, waiting for tree to go green)\n\n16901 Roll src/third_party/skia 73ae40a424fa..b19408040143 (4 commits) (cla: yes, waiting for tree to go green)\n\n16902 Roll src/third_party/dart ca3ad264a649..06155d499645 (3 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-831", "text": "16903 Roll fuchsia/sdk/core/mac-amd64 from WmA2M\u2026 to cGxwD\u2026 (cla: yes, waiting for tree to go green)\n\n16904 Roll src/third_party/dart 06155d499645..c07d5d84b828 (3 commits) (cla: yes, waiting for tree to go green)\n\n16905 Roll src/third_party/skia b19408040143..853789cdfe3c (1 commits) (cla: yes, waiting for tree to go green)\n\n16906 Roll src/third_party/skia 853789cdfe3c..96c2eb6258ae (3 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-832", "text": "16907 Roll fuchsia/sdk/core/linux-amd64 from uiAI5\u2026 to ULy6Z\u2026 (cla: yes, waiting for tree to go green)\n\n16908 Roll src/third_party/skia 96c2eb6258ae..b58098f34c56 (2 commits) (cla: yes, waiting for tree to go green)\n\n16909 Roll src/third_party/dart c07d5d84b828..e7e45599cb1a (9 commits) (cla: yes, waiting for tree to go green)\n\n16910 Roll src/third_party/skia b58098f34c56..ae2da5e7f9b5 (3 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-833", "text": "16911 Roll src/third_party/skia ae2da5e7f9b5..964aa91580b6 (4 commits) (cla: yes, waiting for tree to go green)\n\n16912 Roll src/third_party/skia 964aa91580b6..4036cb1f0b6e (5 commits) (cla: yes, waiting for tree to go green)\n\n16913 Roll src/third_party/dart e7e45599cb1a..5701c4fd3b11 (25 commits) (cla: yes, waiting for tree to go green)\n\n16914 Roll fuchsia/sdk/core/mac-amd64 from cGxwD\u2026 to VQHsS\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-834", "text": "16915 Revert \u201cDrop last usages of Dart_New from engine (#16838)\u201d (cla: yes)\n\n16916 Fixed splash screen crash when bringing Android app back to foreground after being evicted from memory. (#47635) (cla: yes)\n\n16917 Roll src/third_party/skia 4036cb1f0b6e..a54af923929b (1 commits) (cla: yes, waiting for tree to go green)\n\n16918 Roll src/third_party/skia a54af923929b..20ed48e8e963 (1 commits) (cla: yes, waiting for tree to go green)\n\n16920 Roll fuchsia/sdk/core/linux-amd64 from ULy6Z\u2026 to vH9-3\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-835", "text": "16921 Roll src/third_party/skia 20ed48e8e963..64a3f8fcb749 (1 commits) (cla: yes, waiting for tree to go green)\n\n16922 Roll src/third_party/dart 5701c4fd3b11..57462f9ca520 (7 commits) (cla: yes, waiting for tree to go green)\n\n16923 Add Flutter RTree (cla: yes)\n\n16924 Request EGL in GLFW window creation (cla: yes)\n\n16925 Roll fuchsia/sdk/core/mac-amd64 from VQHsS\u2026 to 8HrJn\u2026 (cla: yes, waiting for tree to go green)\n\n16928 Make GetDefaultFontFamilies return a vector instead of a string. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-836", "text": "16930 [web] Engine integration test (cla: yes, platform-web)\n\n16932 Remove debug log (cla: yes, waiting for tree to go green)\n\n16933 Refactor isolate test (cla: yes, waiting for tree to go green)\n\n16934 Roll src/third_party/skia 64a3f8fcb749..3a5974f68d4b (8 commits) (cla: yes, waiting for tree to go green)\n\n16936 Roll Dart to df5036eb6e738c723339ed74c1e8ca93bea2570d. (cla: yes)\n\n16937 Added compiling the dart code for scenario tests as part of the xcode build (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-837", "text": "16940 Roll src/third_party/skia 3a5974f68d4b..93d75eff08b0 (5 commits) (cla: yes, waiting for tree to go green)\n\n16941 fix OOL def for dart_isolate_runner (cla: yes)\n\n16942 Roll src/third_party/skia 93d75eff08b0..50d7d6fd7280 (4 commits) (cla: yes, waiting for tree to go green)\n\n16943 Roll src/third_party/dart df5036eb6e73..8e5354dccb64 (14 commits) (cla: yes, waiting for tree to go green)\n\n16944 Allow relative resource paths in GLFW embedding (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-838", "text": "16945 Fixed FlutterPlugin.h doxygen. (cla: yes)\n\n16947 doxygen tooling updates and doxygen for FlutterCodecs.h (cla: yes)\n\n16948 Remove duplicate dependency on the Dart language model (cla: yes)\n\n16949 Roll fuchsia/sdk/core/mac-amd64 from 8HrJn\u2026 to 6eF38\u2026 (cla: yes, waiting for tree to go green)\n\n16950 documented fluttertexture.h (cla: yes)\n\n16952 Roll fuchsia/sdk/core/linux-amd64 from vH9-3\u2026 to cXgMr\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-839", "text": "16953 Roll src/third_party/skia 50d7d6fd7280..f6ed96d1c23b (11 commits) (cla: yes, waiting for tree to go green)\n\n16954 Roll src/third_party/dart 8e5354dccb64..d1d89c8ce1a1 (10 commits) (cla: yes, waiting for tree to go green)\n\n16955 Roll src/third_party/skia f6ed96d1c23b..d2f18734aa84 (5 commits) (cla: yes, waiting for tree to go green)\n\n16956 Roll src/third_party/skia d2f18734aa84..b803ef83d68f (2 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-840", "text": "16957 Roll src/third_party/dart d1d89c8ce1a1..9983424a3c50 (10 commits) (cla: yes, waiting for tree to go green)\n\n16958 Roll src/third_party/skia b803ef83d68f..1b1b0d5abb75 (5 commits) (cla: yes, waiting for tree to go green)\n\n16959 Roll src/third_party/skia 1b1b0d5abb75..db20afc1bf3c (7 commits) (cla: yes, waiting for tree to go green)\n\n16960 Fix bounds of image_filter_layer (cla: yes)\n\n16963 fix shadows and mask filter blurs (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-841", "text": "16963 fix shadows and mask filter blurs (cla: yes)\n\n16965 [web] Fixes IE11 crash due to missing canvas ellipse support and font polyfill failure (cla: yes)\n\n16966 Roll src/third_party/skia db20afc1bf3c..012f8497802e (6 commits) (cla: yes, waiting for tree to go green)\n\n16969 Roll fuchsia/sdk/core/mac-amd64 from 6eF38\u2026 to J6ct_\u2026 (cla: yes, waiting for tree to go green)\n\n16970 Roll fuchsia/sdk/core/linux-amd64 from cXgMr\u2026 to cTw2C\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-842", "text": "16974 Roll src/third_party/skia 012f8497802e..93a2a6b8badb (4 commits) (cla: yes, waiting for tree to go green)\n\n16977 Add a Linux Shell that uses GTK for rendering. (cla: yes, waiting for tree to go green)\n\n16981 Roll src/third_party/skia 93a2a6b8badb..74055566bd14 (2 commits) (cla: yes, waiting for tree to go green)\n\n16982 Roll fuchsia/sdk/core/mac-amd64 from J6ct_\u2026 to 95geB\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-843", "text": "16983 Roll src/third_party/skia 74055566bd14..54de2fa48d85 (3 commits) (cla: yes, waiting for tree to go green)\n\n16984 Roll fuchsia/sdk/core/linux-amd64 from cTw2C\u2026 to K1wwe\u2026 (cla: yes, waiting for tree to go green)\n\n16987 Roll src/third_party/skia 54de2fa48d85..beaaf4700f50 (3 commits) (cla: yes, waiting for tree to go green)\n\n16988 remove 10s timeouts from tests (cla: yes)\n\n16990 Roll src/third_party/skia beaaf4700f50..6e58290ba639 (9 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-844", "text": "16991 Record fml and shell benchmarks (cla: yes)\n\n16992 fushia licenses fix (cla: yes)\n\n16994 [web] Fixes for Firefox & Safari double underline decoration bugs. (cla: yes)\n\n16995 fix \u201cTREE INCONSISTENT\u201d noise in compositing_test.dart (cla: yes)\n\n16996 Roll src/third_party/skia 6e58290ba639..24a8e9e170f7 (5 commits) (cla: yes, waiting for tree to go green)\n\n16998 Started deleting .DS_Store files so licenses can run on mac os x. (cla: yes)\n\n17002 [frontend_server] forward new module name flag (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-845", "text": "17004 Roll src/third_party/skia 24a8e9e170f7..cf573d844da6 (4 commits) (cla: yes, waiting for tree to go green)\n\n17005 [Fuchsia] Move physical shape layer compositing to Flutter (cla: yes)\n\n17006 Roll fuchsia/sdk/core/mac-amd64 from 95geB\u2026 to hW33F\u2026 (cla: yes, waiting for tree to go green)\n\n17007 Roll fuchsia/sdk/core/linux-amd64 from K1wwe\u2026 to FGMpI\u2026 (cla: yes, waiting for tree to go green)\n\n17008 Revert \u201cfix shadows and mask filter blurs (#16963)\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-846", "text": "17009 Roll src/third_party/skia cf573d844da6..2e19af063bcc (1 commits) (cla: yes, waiting for tree to go green)\n\n17011 Update linux desktop deps installation script (cla: yes)\n\n17012 Roll fuchsia/sdk/core/linux-amd64 from FGMpI\u2026 to YcueJ\u2026 (cla: yes, waiting for tree to go green)\n\n17013 Roll fuchsia/sdk/core/mac-amd64 from hW33F\u2026 to t3S3W\u2026 (cla: yes, waiting for tree to go green)\n\n17014 Roll src/third_party/skia 2e19af063bcc..b18390699ea2 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-847", "text": "17016 Roll fuchsia/sdk/core/linux-amd64 from YcueJ\u2026 to Rhz2c\u2026 (cla: yes, waiting for tree to go green)\n\n17018 Roll fuchsia/sdk/core/mac-amd64 from t3S3W\u2026 to 8Wp6x\u2026 (cla: yes, waiting for tree to go green)\n\n17019 Roll src/third_party/skia b18390699ea2..475b9d0fb796 (1 commits) (cla: yes, waiting for tree to go green)\n\n17020 Add libfreetype6-dev to desktop Linux dependencies (cla: yes)\n\n17021 Roll src/third_party/skia 475b9d0fb796..c56950442dd1 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-848", "text": "17024 Roll fuchsia/sdk/core/linux-amd64 from Rhz2c\u2026 to v32mJ\u2026 (cla: yes, waiting for tree to go green)\n\n17027 Roll fuchsia/sdk/core/mac-amd64 from 8Wp6x\u2026 to r_oCI\u2026 (cla: yes, waiting for tree to go green)\n\n17032 clone_flutter.sh: use commit date instead of author date (cla: yes)\n\n17033 Roll src/third_party/skia c56950442dd1..23899c64e3db (11 commits) (cla: yes, waiting for tree to go green)\n\n17038 Disable shell benchmarks (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-849", "text": "17038 Disable shell benchmarks (cla: yes)\n\n17040 Revert \u201cRevert \u201cfix shadows and mask filter blurs (#16963)\u201d (#17008)\u201d (cla: yes)\n\n17044 Add support for firefox mac installer. Update web_ui pubspec for http.wq (cla: yes)\n\n17046 Implement asynchronous texture uploads when using the Metal backend on iOS. (cla: yes)\n\n17049 Implement unobstructed Platform Views on iOS (cla: yes)\n\n17051 Use the ELF loader to setup AOT symbols in benchmark runner. (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-850", "text": "17067 Roll dart to 97674262bc29447dc59d5c93024b18b27d4bcf98. (cla: yes)\n\n17068 Teach frontend compiler to replace toString with super.toString for selected packages (cla: yes, perf: app size, severe: performance, waiting for tree to go green)\n\n17069 Roll src/third_party/skia 23899c64e3db..78dac6dcb222 (19 commits) (cla: yes, waiting for tree to go green)\n\n17072 Roll src/third_party/skia 78dac6dcb222..d3f67dbf9f36 (6 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-851", "text": "17073 Add build_and_test_linux_release presubmit test (cla: yes, waiting for tree to go green)\n\n17074 Revert \u201cFix bounds of image_filter_layer\u201d (cla: yes)\n\n17075 Migrate embedding to AndroidX (cla: yes)\n\n17077 Reland ImageFiltered bounds fix (cla: yes)\n\n17078 Roll src/third_party/dart 97674262bc29..ace1d9b9213a (14 commits) (cla: yes, waiting for tree to go green)\n\n17079 Roll src/third_party/skia d3f67dbf9f36..bf355123ae3b (9 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-852", "text": "17080 Add support for the Metal backend on all iOS builds. (cla: yes, waiting for tree to go green)\n\n17081 Disable Embedder11yTest::A11yTreeIsConsistent to unblock LUCI. (cla: yes)\n\n17082 Roll src/third_party/dart ace1d9b9213a..4093d08271f6 (12 commits) (cla: yes, waiting for tree to go green)\n\n17084 Remove the unused method on iOS surface to make the resource context current. (cla: yes, waiting for tree to go green)\n\n17086 Roll fuchsia/sdk/core/linux-amd64 from v32mJ\u2026 to X3Xm2\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-853", "text": "17087 Roll fuchsia/sdk/core/mac-amd64 from r_oCI\u2026 to 0Z8VF\u2026 (cla: yes, waiting for tree to go green)\n\n17088 Revert \u201cAdd support for the Metal backend on all iOS builds.\u201d (cla: yes)\n\n17089 Roll src/third_party/skia bf355123ae3b..0340292972b9 (9 commits) (cla: yes, waiting for tree to go green)\n\n17090 Roll src/third_party/dart 4093d08271f6..37530145ff53 (4 commits) (cla: yes, waiting for tree to go green)\n\n17094 Fixes comments typo in FlutterPlatformViews (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-854", "text": "17095 Roll src/third_party/skia 0340292972b9..6dc0f63a509c (4 commits) (cla: yes, waiting for tree to go green)\n\n17096 Roll src/third_party/dart 37530145ff53..684c53a6f174 (16 commits) (cla: yes, waiting for tree to go green)\n\n17097 [web] increasing user limits for macos (cla: yes)\n\n17098 Roll src/third_party/skia 6dc0f63a509c..dafbf121a8b1 (1 commits) (cla: yes, waiting for tree to go green)\n\n17099 [web] Introduce js interop to enable experimental flags on web (cla: yes, platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-855", "text": "17100 Use the standard [[nodiscard]] attribute instead of an FML macro. (cla: yes, waiting for tree to go green)\n\n17101 Remove unused or unnecessary compiler specific marcos in FML. (cla: yes, waiting for tree to go green)\n\n17103 Roll fuchsia/sdk/core/linux-amd64 from X3Xm2\u2026 to Yk03L\u2026 (cla: yes, waiting for tree to go green)\n\n17104 Roll src/third_party/skia dafbf121a8b1..f0140ee00f95 (6 commits) (cla: yes, waiting for tree to go green)\n\n17105 Roll src/third_party/dart 684c53a6f174..17eec5bcde78 (6 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-856", "text": "17107 Roll fuchsia/sdk/core/mac-amd64 from 0Z8VF\u2026 to lbDph\u2026 (cla: yes, waiting for tree to go green)\n\n17108 Made it so you can whitelist what events you want to listen to (cla: yes)\n\n17109 Make a pass through all the embedding javadocs (cla: yes)\n\n17110 Roll src/third_party/dart 17eec5bcde78..33349076ee7f (11 commits) (cla: yes, waiting for tree to go green)\n\n17111 Roll src/third_party/skia f0140ee00f95..1743144ab839 (2 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-857", "text": "17112 Roll fuchsia/sdk/core/linux-amd64 from Yk03L\u2026 to _k1WT\u2026 (cla: yes, waiting for tree to go green)\n\n17113 Roll src/third_party/skia 1743144ab839..9b449b73d367 (5 commits) (cla: yes, waiting for tree to go green)\n\n17115 build a precompiled SDK with canvas kit enabled (cla: yes)\n\n17116 Define embedding dependencies in Gradle (cla: yes)\n\n17117 Roll src/third_party/skia 9b449b73d367..bb7684276afd (12 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-858", "text": "17118 [fuchsia] Change vsync trace name back to \u201cvsync callback\u201d on Fuchsia (cla: yes)\n\n17119 Fix link in README.md (cla: yes)\n\n17120 Roll src/third_party/dart 33349076ee7f..7c2f62406bef (23 commits) (cla: yes, waiting for tree to go green)\n\n17122 Replace Pipeline\u2019s ProduceToFront with ProduceIfEmpty to handle thread merging. (cla: yes)\n\n17124 Roll src/third_party/dart 7c2f62406bef..eb9c26bd378f (15 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-859", "text": "17126 Roll fuchsia/sdk/core/mac-amd64 from lbDph\u2026 to eGWV8\u2026 (cla: yes, waiting for tree to go green)\n\n17127 Roll fuchsia/sdk/core/linux-amd64 from _k1WT\u2026 to Fjow3\u2026 (cla: yes, waiting for tree to go green)\n\n17131 Implementing Locale.toLanguageTag() method in flutter web. (cla: yes)\n\n17132 Roll src/third_party/dart eb9c26bd378f..a303769fad9b (4 commits) (cla: yes, waiting for tree to go green)\n\n17133 Roll src/third_party/skia bb7684276afd..ba96256581c2 (7 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-860", "text": "17134 Roll src/third_party/skia ba96256581c2..75e29072e7d6 (2 commits) (cla: yes, waiting for tree to go green)\n\n17135 Canvas: Remove some unused virtuals, and prepare for signature change (cla: yes)\n\n17136 Roll src/third_party/skia 75e29072e7d6..f9329afa27a0 (4 commits) (cla: yes, waiting for tree to go green)\n\n17137 Roll src/third_party/dart a303769fad9b..c3a0bb086a5a (14 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-861", "text": "17138 Roll src/third_party/skia f9329afa27a0..e05b1b7229ca (1 commits) (cla: yes, waiting for tree to go green)\n\n17139 [web] Add HtmlCodec progress callback (cla: yes)\n\n17140 Roll src/third_party/skia e05b1b7229ca..0bd00f438e97 (2 commits) (cla: yes, waiting for tree to go green)\n\n17141 Disable flutter_runner_scenic_tests until the instability is resolved (cla: yes, waiting for tree to go green)\n\n17142 Roll src/third_party/skia 0bd00f438e97..320c32bfa306 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-862", "text": "17144 Roll fuchsia/sdk/core/linux-amd64 from Fjow3\u2026 to 6ds94\u2026 (cla: yes, waiting for tree to go green)\n\n17145 Roll src/third_party/dart c3a0bb086a5a..7c5059f52881 (10 commits) (cla: yes, waiting for tree to go green)\n\n17146 Two point conical gradient for web CanvasKit (cla: yes, platform-web, waiting for tree to go green)\n\n17148 Rename GPU to raster thread in PerformanceOverlay (cla: yes)\n\n17149 Document texture registry threading requirements. (cla: yes)\n\n17154 Allow external texture sources when using the Metal backend. (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-863", "text": "17155 Roll src/third_party/skia 320c32bfa306..190b6e54b016 (1 commits) (cla: yes, waiting for tree to go green)\n\n17156 Roll src/third_party/dart 7c5059f52881..13f1a4f4bf58 (14 commits) (cla: yes, waiting for tree to go green)\n\n17157 Roll fuchsia/sdk/core/mac-amd64 from eGWV8\u2026 to v_ZuR\u2026 (cla: yes, waiting for tree to go green)\n\n17158 Roll src/third_party/dart 13f1a4f4bf58..eff5548a684a (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-864", "text": "17159 Roll src/third_party/skia 190b6e54b016..6352f00c59e4 (1 commits) (cla: yes, waiting for tree to go green)\n\n17160 Roll src/third_party/skia 6352f00c59e4..7e0a7dbd22e0 (1 commits) (cla: yes, waiting for tree to go green)\n\n17161 Roll fuchsia/sdk/core/mac-amd64 from v_ZuR\u2026 to T6G99\u2026 (cla: yes, waiting for tree to go green)\n\n17162 Update the Metal backend selection to use iOS 10.0 and A7 as the version floor. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-865", "text": "17163 Roll src/third_party/skia 7e0a7dbd22e0..9a4ac6e86586 (1 commits) (cla: yes, waiting for tree to go green)\n\n17164 Roll fuchsia/sdk/core/linux-amd64 from 6ds94\u2026 to S9xSp\u2026 (cla: yes, waiting for tree to go green)\n\n17165 Roll src/third_party/dart eff5548a684a..7079c49b054e (1 commits) (cla: yes, waiting for tree to go green)\n\n17166 Roll src/third_party/skia 9a4ac6e86586..276a78573e91 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-866", "text": "17167 Roll src/third_party/dart 7079c49b054e..d2950737b8a2 (2 commits) (cla: yes, waiting for tree to go green)\n\n17168 Roll fuchsia/sdk/core/mac-amd64 from T6G99\u2026 to XRDIh\u2026 (cla: yes, waiting for tree to go green)\n\n17170 Roll src/third_party/skia 276a78573e91..16701eecd595 (5 commits) (cla: yes, waiting for tree to go green)\n\n17171 Roll src/third_party/dart d2950737b8a2..d7a7854a5e98 (2 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-867", "text": "17172 Roll fuchsia/sdk/core/linux-amd64 from S9xSp\u2026 to YJI3-\u2026 (cla: yes, waiting for tree to go green)\n\n17174 Roll src/third_party/skia 16701eecd595..04ef810839cb (10 commits) (cla: yes, waiting for tree to go green)\n\n17176 Roll src/third_party/dart d7a7854a5e98..810d85d4cf89 (21 commits) (cla: yes, waiting for tree to go green)\n\n17177 Roll src/third_party/skia 04ef810839cb..6b48e62ed204 (4 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-868", "text": "17178 Roll src/third_party/dart 810d85d4cf89..db5dc11b9b27 (19 commits) (cla: yes, waiting for tree to go green)\n\n17179 Roll fuchsia/sdk/core/mac-amd64 from XRDIh\u2026 to AvvHp\u2026 (cla: yes, waiting for tree to go green)\n\n17180 Roll src/third_party/skia 6b48e62ed204..a17558c9f702 (3 commits) (cla: yes, waiting for tree to go green)\n\n17183 Roll fuchsia/sdk/core/linux-amd64 from YJI3-\u2026 to p9B8q\u2026 (cla: yes, waiting for tree to go green)\n\n17186 Added a log message when sharing a FlutterEngine across multiple FlutterViewControllers. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-869", "text": "17187 Roll src/third_party/dart db5dc11b9b27..9dfd0127daca (20 commits) (cla: yes, waiting for tree to go green)\n\n17189 Truncate error messages for the crash reporter to the maximum length permitted by the FIDL call (cla: yes)\n\n17190 Felt add integration (cla: yes)\n\n17191 Reland \u201cAdd support for the Metal backend on all iOS builds.\u201d (cla: yes, waiting for tree to go green)\n\n17193 Roll fuchsia/sdk/core/mac-amd64 from AvvHp\u2026 to SY5TH\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-870", "text": "17194 Roll src/third_party/skia a17558c9f702..d7e0131c7edc (19 commits) (cla: yes, waiting for tree to go green)\n\n17195 remove unused packagesFile field (cla: yes)\n\n17196 Roll src/third_party/dart 9dfd0127daca..96cf889e6b7b (26 commits) (cla: yes, waiting for tree to go green)\n\n17197 Revert \u201cReland \u201cAdd support for the Metal backend on all iOS builds.\u201d\u201d (cla: yes)\n\n17198 Fix blend test diffrate on mac (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-871", "text": "17199 Roll src/third_party/skia d7e0131c7edc..afa83bc20b2c (19 commits) (cla: yes, waiting for tree to go green)\n\n17201 Roll src/third_party/skia afa83bc20b2c..d3b92b910ce0 (2 commits) (cla: yes, waiting for tree to go green)\n\n17202 Roll src/third_party/dart 96cf889e6b7b..5b21a43c556c (18 commits) (cla: yes, waiting for tree to go green)\n\n17203 Removed a text input trait that causes VoiceOver to be incorrect when tapping a text input. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-872", "text": "17204 Roll fuchsia/sdk/core/linux-amd64 from p9B8q\u2026 to de6Ca\u2026 (cla: yes, waiting for tree to go green)\n\n17205 Roll src/third_party/skia d3b92b910ce0..d65a790d71e8 (1 commits) (cla: yes, waiting for tree to go green)\n\n17206 Fix FlutterView\u2019s _delegate is not declared as ivar but a global vari\u2026 (cla: yes, waiting for tree to go green)\n\n17207 Roll fuchsia/sdk/core/mac-amd64 from SY5TH\u2026 to K9kFP\u2026 (cla: yes, waiting for tree to go green)\n\n17208 Fix copy/paste mistake in GLFW asset path resolution (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-873", "text": "17209 Switch ui.window.devicePixelRatio from browser logical to physical. (cla: yes)\n\n17210 Add DartProject for Windows embedding API (cla: yes)\n\n17212 Roll src/third_party/skia d65a790d71e8..1171d314efc7 (6 commits) (cla: yes, waiting for tree to go green)\n\n17213 Disable the use of the API_AVAILABLE macro in Skia in iOS release builds. (cla: yes)\n\n17214 Roll src/third_party/skia 1171d314efc7..4b55ff097b9d (2 commits) (cla: yes, waiting for tree to go green)\n\n17217 Enable unified OpenGL/Metal builds. (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-874", "text": "17218 Revert \u201cEnable unified OpenGL/Metal builds.\u201d (cla: yes)\n\n17219 Roll src/third_party/dart 5b21a43c556c..1bab476834dc (41 commits) (cla: yes, waiting for tree to go green)\n\n17220 Roll fuchsia/sdk/core/mac-amd64 from K9kFP\u2026 to MKYwg\u2026 (cla: yes, waiting for tree to go green)\n\n17221 Roll fuchsia/sdk/core/linux-amd64 from de6Ca\u2026 to ZmlfS\u2026 (cla: yes, waiting for tree to go green)\n\n17222 Roll src/third_party/dart 1bab476834dc..532a602fefc7 (4 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-875", "text": "17223 Roll src/third_party/dart 532a602fefc7..ba8baa46b452 (3 commits) (cla: yes, waiting for tree to go green)\n\n17224 Roll src/third_party/skia 4b55ff097b9d..f22744971516 (1 commits) (cla: yes, waiting for tree to go green)\n\n17225 Roll src/third_party/skia f22744971516..85755f46a881 (1 commits) (cla: yes, waiting for tree to go green)\n\n17226 Roll src/third_party/dart ba8baa46b452..0296286c03f6 (11 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-876", "text": "17227 Roll src/third_party/skia 85755f46a881..7b7b78cb9f1b (6 commits) (cla: yes, waiting for tree to go green)\n\n17228 Sync Cirrus web test config from flutter/flutter (cla: yes)\n\n17229 Roll buildroot to a0fb98af (cla: yes, waiting for tree to go green)\n\n17230 Re-land \u201cEnable unified OpenGL/Metal builds.\u201d (cla: yes, waiting for tree to go green)\n\n17231 Soften shadows (cla: yes)\n\n17232 Roll src/third_party/skia 7b7b78cb9f1b..933926683991 (6 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-877", "text": "17233 Revert \u201cImplement unobstructed Platform Views on iOS\u201d (cla: yes)\n\n17234 Roll fuchsia/sdk/core/mac-amd64 from MKYwg\u2026 to uyg4y\u2026 (cla: yes, waiting for tree to go green)\n\n17235 Roll fuchsia/sdk/core/linux-amd64 from ZmlfS\u2026 to pTJOm\u2026 (cla: yes, waiting for tree to go green)\n\n17237 Reland: Implement unobstructed Platform Views on iOS (cla: yes)\n\n17238 Run web framework tests on third-party rolls (cla: yes)\n\n17239 Revert \u201cRoll src/third_party/dart ba8baa46b452..0296286c03f6 (11 comm\u2026 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-878", "text": "17240 Roll src/third_party/skia 933926683991..e41fa2d5e44d (2 commits) (cla: yes, waiting for tree to go green)\n\n17241 Roll src/third_party/dart ba8baa46b452..fbd0c8a46813 (35 commits) (cla: yes, waiting for tree to go green)\n\n17242 Remove code which skips keyEvent from input element on web (cla: yes)\n\n17243 Revert \u201cRoll src/third_party/dart ba8baa46b452..fbd0c8a46813 (35 comm\u2026 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-879", "text": "17244 Roll src/third_party/dart ba8baa46b452..82f8a5451fae (40 commits) (cla: yes, waiting for tree to go green)\n\n17245 Roll src/third_party/dart 82f8a5451fae..f247613737ec (3 commits) (cla: yes, waiting for tree to go green)\n\n17246 Roll fuchsia/sdk/core/mac-amd64 from uyg4y\u2026 to nmCXC\u2026 (cla: yes, waiting for tree to go green)\n\n17247 Roll fuchsia/sdk/core/linux-amd64 from pTJOm\u2026 to kGu6P\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-880", "text": "17248 Roll src/third_party/dart f247613737ec..861708483217 (1 commits) (cla: yes, waiting for tree to go green)\n\n17249 Roll src/third_party/skia e41fa2d5e44d..cf3594b60362 (1 commits) (cla: yes, waiting for tree to go green)\n\n17250 Document flutter::RuntimeController. (cla: yes)\n\n17251 Roll src/third_party/skia cf3594b60362..538e358b0d82 (4 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-881", "text": "17252 Roll src/third_party/dart 861708483217..bdf14543576a (5 commits) (cla: yes, waiting for tree to go green)\n\n17253 Roll src/third_party/dart bdf14543576a..b7455646f90d (1 commits) (cla: yes, waiting for tree to go green)\n\n17254 Roll fuchsia/sdk/core/mac-amd64 from nmCXC\u2026 to bgp6U\u2026 (cla: yes, waiting for tree to go green)\n\n17255 Roll fuchsia/sdk/core/linux-amd64 from kGu6P\u2026 to k4zbT\u2026 (cla: yes, waiting for tree to go green)\n\n17256 Documentation cleanups to RuntimeController. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-882", "text": "17256 Documentation cleanups to RuntimeController. (cla: yes)\n\n17257 Roll src/third_party/dart b7455646f90d..cbd67124d10e (3 commits) (cla: yes, waiting for tree to go green)\n\n17258 Don\u2019t depend on an implicit transaction when no external view embedder is present. (cla: yes)\n\n17260 Roll src/third_party/skia 538e358b0d82..f04f21a5c913 (2 commits) (cla: yes, waiting for tree to go green)\n\n17261 Remove checks for the always true using_fuchsia_sdk flag in all GN files. (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-883", "text": "17263 Roll fuchsia/sdk/core/mac-amd64 from bgp6U\u2026 to WaNBa\u2026 (cla: yes, waiting for tree to go green)\n\n17264 Roll fuchsia/sdk/core/linux-amd64 from k4zbT\u2026 to h8m0G\u2026 (cla: yes, waiting for tree to go green)\n\n17268 Roll src/third_party/skia f04f21a5c913..6f60a859c628 (2 commits) (cla: yes, waiting for tree to go green)\n\n17271 Roll src/third_party/skia 6f60a859c628..4098719375d8 (6 commits) (cla: yes, waiting for tree to go green)\n\n17273 Added missing mock for MockEngine (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-884", "text": "17273 Added missing mock for MockEngine (cla: yes)\n\n17274 Roll src/third_party/skia 4098719375d8..165b68ebb6ad (7 commits) (cla: yes, waiting for tree to go green)\n\n17276 [web] Profile text layout and forward data to macrobenchmarks (cla: yes, platform-web)\n\n17277 Roll src/third_party/skia 165b68ebb6ad..3c358420df4a (5 commits) (cla: yes, waiting for tree to go green)\n\n17278 Allow drawing raster cache results whose device rect is one pixel larger than the cached image (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-885", "text": "17279 Roll src/third_party/skia 3c358420df4a..d1988219065a (3 commits) (cla: yes, waiting for tree to go green)\n\n17280 Add empty string check to Locale toString (cla: yes, waiting for tree to go green)\n\n17281 [metrics] Record the frame target time on the layer tree (cla: yes, perf: speed, severe: performance)\n\n17282 Roll fuchsia/sdk/core/mac-amd64 from WaNBa\u2026 to gkIC0\u2026 (cla: yes, waiting for tree to go green)\n\n17283 Roll fuchsia/sdk/core/linux-amd64 from h8m0G\u2026 to y2Piw\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-886", "text": "17285 Roll src/third_party/skia d1988219065a..c97c90072499 (2 commits) (cla: yes, waiting for tree to go green)\n\n17286 Roll src/third_party/dart cbd67124d10e..8246621d4da3 (39 commits) (cla: yes, waiting for tree to go green)\n\n17287 Roll src/third_party/skia c97c90072499..6cb8168c2b9b (1 commits) (cla: yes, waiting for tree to go green)\n\n17288 Roll src/third_party/skia 6cb8168c2b9b..e5ca6ba2c84c (3 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-887", "text": "17290 Roll src/third_party/dart 8246621d4da3..62f84880ef15 (3 commits) (cla: yes, waiting for tree to go green)\n\n17293 Roll fuchsia/sdk/core/mac-amd64 from gkIC0\u2026 to Lzj3Z\u2026 (cla: yes, waiting for tree to go green)\n\n17294 Roll fuchsia/sdk/core/linux-amd64 from y2Piw\u2026 to tFo5u\u2026 (cla: yes, waiting for tree to go green)\n\n17295 Roll src/third_party/skia e5ca6ba2c84c..4e79b6730dfc (1 commits) (cla: yes, waiting for tree to go green)\n\n17298 Preserve zones in Window callbacks (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-888", "text": "17298 Preserve zones in Window callbacks (cla: yes)\n\n17299 [web] use web drivers as a library only. do not fetch/clone web_installers (cla: yes)\n\n17300 Add service protocol to get SkSLs (cla: yes, perf: speed, severe: performance)\n\n17301 Document flutter::DartServiceIsolate. (cla: yes)\n\n17302 Update FlDartProject to new path format (cla: yes)\n\n17306 Roll Dart to revision 2.7.2, remove duplicate dependencies (cla: yes)\n\n17307 Roll src/third_party/skia 4e79b6730dfc..6beb1dd941af (17 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-889", "text": "17308 Flush background canvas before allocating a new surface (cla: yes)\n\n17309 Roll src/third_party/skia 6beb1dd941af..4261fe753b77 (3 commits) (cla: yes, waiting for tree to go green)\n\n17312 Remove JSON codec from C++ client wrapper (cla: yes)\n\n17313 fuchsia: remove use of replace_as_executable (second try) (cla: yes)\n\n17314 Roll src/third_party/skia 4261fe753b77..9686528ac8c7 (1 commits) (cla: yes, waiting for tree to go green)\n\n17315 Roll fuchsia/sdk/core/mac-amd64 from Lzj3Z\u2026 to o8vhc\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-890", "text": "17316 Roll fuchsia/sdk/core/linux-amd64 from tFo5u\u2026 to jHDPP\u2026 (cla: yes, waiting for tree to go green)\n\n17317 Roll src/third_party/skia 9686528ac8c7..ae58199380dd (1 commits) (cla: yes, waiting for tree to go green)\n\n17318 Roll src/third_party/skia ae58199380dd..102411c73f7e (6 commits) (cla: yes, waiting for tree to go green)\n\n17319 Roll src/third_party/skia 102411c73f7e..f11e33152460 (3 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-891", "text": "17320 Roll src/third_party/dart 62f84880ef15..232308723704 (54 commits) (cla: yes, waiting for tree to go green)\n\n17323 Roll src/third_party/skia f11e33152460..b6a99b7b9acb (5 commits) (cla: yes, waiting for tree to go green)\n\n17324 Enable expression evaluation in the debugger for web (cla: yes, waiting for tree to go green)\n\n17325 Add regression test for treeshaking debugFillProperties (cla: yes)\n\n17326 Revert unobstructed platform views (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-892", "text": "17326 Revert unobstructed platform views (cla: yes)\n\n17328 Roll src/third_party/dart 232308723704..cd8f712bcb01 (18 commits) (cla: yes, waiting for tree to go green)\n\n17329 Rename GPU thread to raster thread in code comments (cla: yes)\n\n17331 Android change to match the Google internal changes. (cla: yes, waiting for tree to go green)\n\n17332 add limited analysis options (cla: yes)\n\n17334 Roll fuchsia/sdk/core/mac-amd64 from o8vhc\u2026 to 6zho5\u2026 (cla: yes, waiting for tree to go green)\n\n17336 Reland unobstructed platform views (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-893", "text": "17336 Reland unobstructed platform views (cla: yes)\n\n17338 Roll src/third_party/dart cd8f712bcb01..bc53ecefae52 (4 commits) (cla: yes, waiting for tree to go green)\n\n17339 [web] improving felt: running target unit tests, cleaning up used proccesses (cla: yes, platform-web)\n\n17341 Roll fuchsia/sdk/core/linux-amd64 from jHDPP\u2026 to nK6R0\u2026 (cla: yes, waiting for tree to go green)\n\n17343 Roll src/third_party/skia b6a99b7b9acb..ee2ec6de995b (9 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-894", "text": "17344 Roll src/third_party/dart bc53ecefae52..f6acefa078be (4 commits) (cla: yes, waiting for tree to go green)\n\n17346 Roll src/third_party/skia ee2ec6de995b..95fc5a325168 (2 commits) (cla: yes, waiting for tree to go green)\n\n17347 Roll src/third_party/dart f6acefa078be..1402e8e1a42d (1 commits) (cla: yes, waiting for tree to go green)\n\n17348 Roll src/third_party/skia 95fc5a325168..265de3a93c6e (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-895", "text": "17349 Roll fuchsia/sdk/core/mac-amd64 from 6zho5\u2026 to d4Bft\u2026 (cla: yes, waiting for tree to go green)\n\n17352 Do not drop toString for enums (cla: yes)\n\n17355 Add name to the XCTAttachments in the scenario test app (cla: yes)\n\n17356 Locale: empty string equates to null (cla: yes)\n\n17361 Disable OnServiceProtocolGetSkSLsWorks in Fuchsia (affects: tests, cla: yes, waiting for tree to go green)\n\n17364 [web] changing the integration tests to show errors (cla: yes)\n\n17366 Fix problem that using multi-engines, sometimes OpenGL would crash be\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-896", "text": "17367 Disable ShellTest.OnServiceProtocolGetSkSLsWorks. (cla: yes)\n\n17368 Revert \u201cadd limited analysis options\u201d (cla: yes)\n\n17369 Roll src/third_party/skia 265de3a93c6e..385de38b272f (22 commits) (cla: yes, waiting for tree to go green)\n\n17370 [web] Fix HtmlImage state pollution due to image.clone optimization (cla: yes)\n\n17371 Guard SkCanvas bitmap virtuals for deprecation and removal (cla: yes)\n\n17372 fix implicit dynamic and two lints everywhere; implicit cast in dev/ (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-897", "text": "17373 Roll src/third_party/skia 385de38b272f..7345d88277c4 (8 commits) (cla: yes, waiting for tree to go green)\n\n17374 Reland \u201cadd limited analysis options (#17332)\u201d (cla: yes)\n\n17376 Add keep annotation to Locale.toString (cla: yes)\n\n17377 enable Dart analysis for Web on Cirrus (cla: yes)\n\n17378 [web] Fix canvas z-index leaking across repaints when element is reused. (cla: yes)\n\n17379 Disconnect from platform views and virtual displays before detaching from the engine (cla: yes, waiting for tree to go green)\n\n17380 [fuchsia] Re-enable shadows. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-898", "text": "17382 change chrome version (cla: yes)\n\n17384 [pipeline] Add trace event for lag between target and display times (cla: yes, perf: speed, severe: performance)\n\n17385 Use the private presentation window type for platform view windows (cla: yes, waiting for tree to go green)\n\n17386 Roll src/third_party/dart 1402e8e1a42d.e21c4353006d (95 commits) (cla: yes)\n\n17387 Roll src/third_party/skia 7345d88277c4..5b11a58c6297 (18 commits) (cla: yes, waiting for tree to go green)\n\n17391 Partially revert Samsung keyboard force-update workaround (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-899", "text": "17392 Document flutter::DartVMData. (cla: yes)\n\n17394 Document flutter::SkiaConcurrentExecutor. (cla: yes)\n\n17395 Roll src/third_party/skia 5b11a58c6297..e9bc857b39c2 (5 commits) (cla: yes, waiting for tree to go green)\n\n17398 Readme change to trigger builds (cla: yes)\n\n17405 Roll src/third_party/dart 1402e8e1a42d..11d6bc605512 (100 commits) (cla: yes, waiting for tree to go green)\n\n17408 More rename from GPU thread to raster thread (Work in progress (WIP), cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-900", "text": "17409 Roll fuchsia/sdk/core/mac-amd64 from d4Bft\u2026 to lXWVX\u2026 (cla: yes, waiting for tree to go green)\n\n17411 Roll src/third_party/skia e9bc857b39c2..732f84d3e279 (25 commits) (cla: yes, waiting for tree to go green)\n\n17413 Correct \u2013dry-run hint (cla: yes, waiting for tree to go green)\n\n17417 Roll fuchsia/sdk/core/mac-amd64 from lXWVX\u2026 to lPmiR\u2026 (cla: yes, waiting for tree to go green)\n\n17418 Roll src/third_party/skia 732f84d3e279..65d3ad953957 (3 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-901", "text": "17421 Roll src/third_party/dart 11d6bc605512..e8c4aed700f5 (20 commits) (cla: yes, waiting for tree to go green)\n\n17423 [fuchsia] Remove \u201cCreateTraceProvider\u201d trace event (cla: yes)\n\n17425 Strengthen json string comparisons (cla: yes)\n\n17426 Implement getExtractedText in InputConnectionAdaptor (affects: text input, cla: yes, platform-android, waiting for tree to go green)\n\n17428 GPU to raster rename, patch 2 (cla: yes, waiting for tree to go green)\n\n17429 Fix iOS builds on Xcode 11.4 for new enum values added in iOS 13.4. (cla: yes)\n\n17431 Use Metal on iOS by default. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-902", "text": "17431 Use Metal on iOS by default. (cla: yes)\n\n17433 Started clearing out the semantics information in Dart as well as deleting the AccessibilityBridge. (cla: yes)\n\n17434 Roll src/third_party/dart e8c4aed700f5..021fa0fbd410 (17 commits) (cla: yes, waiting for tree to go green)\n\n17435 Roll src/third_party/skia 65d3ad953957..7a3358c80b6e (20 commits) (cla: yes, waiting for tree to go green)\n\n17436 [fuchsia] Fix bug when applying scale. (cla: yes)\n\n17437 If the application says there is a new texture but does not provide one, reuse the last texture. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-903", "text": "17438 Roll src/third_party/dart 021fa0fbd410..0f89df0c00e7 (4 commits) (cla: yes, waiting for tree to go green)\n\n17439 [fuchsia] Add tests for TransformLayer. (cla: yes)\n\n17440 Roll Clang to v11, roll buildroot to ee57ed9459f52adf9165e0adad4e74ba167c2f93, allow newly exported symbols (cla: yes)\n\n17442 Roll fuchsia/sdk/core/mac-amd64 from lPmiR\u2026 to iP6DE\u2026 (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-904", "text": "17443 Roll src/third_party/dart 0f89df0c00e7..eea97179386a (3 commits) (cla: yes, waiting for tree to go green)\n\n17444 Roll src/third_party/skia 7a3358c80b6e..0f5e7581a004 (1 commits) (cla: yes, waiting for tree to go green)\n\n17445 Finish removing deprecated SkCanvas virtuals (cla: yes)\n\n17446 Remove me from auto-assign list (cla: yes, waiting for tree to go green)\n\n17447 Roll src/third_party/skia 0f5e7581a004..e8d2080a34ed (2 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-905", "text": "17448 Roll src/third_party/dart eea97179386a..b177e44ffa44 (5 commits) (cla: yes, waiting for tree to go green)\n\n17450 Roll src/third_party/skia e8d2080a34ed..bfc09267bdb4 (8 commits) (cla: yes, waiting for tree to go green)\n\n17451 Revert \u201cRoll Clang to v11, roll buildroot to ee57ed9459f52adf9165e0adad4e74ba167c2f93, allow newly exported symbols\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-906", "text": "17457 Reland Clang 11, Roll buildroot to 1bc40a5f916adb93d87e2a2230a0ec43db876c1c (cla: yes)\n\n17458 Manual fuchsia linux SDK roll (cla: yes)\n\n17460 Roll src/third_party/dart b177e44ffa44..b85c68a73cc2 (21 commits) (cla: yes, waiting for tree to go green)\n\n17462 Roll src/third_party/skia bfc09267bdb4..b14b14445884 (13 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-907", "text": "17463 Roll fuchsia/sdk/core/mac-amd64 from iP6DE\u2026 to QgqO4\u2026 (cla: yes, waiting for tree to go green)\n\n17464 Revert \u201cReland Clang 11, Roll buildroot to 1bc40a5f916adb93d87e2a2230a0ec43db876c1c\u201d (cla: yes)\n\n17466 Roll src/third_party/skia b14b14445884..46aacc771012 (5 commits) (cla: yes, waiting for tree to go green)\n\n17467 Reland Clang 11, roll buildroot to 1bc40a5f916adb93d87e2a2230a0ec43db876c1c, take 3 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-908", "text": "17468 Always cache SkSL when using the Metal backend. (cla: yes)\n\n17469 Roll src/third_party/dart b85c68a73cc2..6e53ac6e4c7b (3 commits) (cla: yes, waiting for tree to go green)\n\n17470 Roll Android NDK to r21.0.6113669 (cla: yes)\n\n17471 Roll fuchsia/sdk/core/linux-amd64 from zJlvo\u2026 to v61zg\u2026 (cla: yes, waiting for tree to go green)\n\n17472 Roll src/third_party/skia 46aacc771012..6c51bf61e283 (3 commits) (cla: yes, waiting for tree to go green)\n\n17473 Initialize locale from FlutterEngine (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-909", "text": "17473 Initialize locale from FlutterEngine (cla: yes)\n\n17475 fix typos in switch descriptions caused by missing spaces (cla: yes, waiting for tree to go green)\n\n17476 Roll src/third_party/dart 6e53ac6e4c7b..5a965d5d0fef (2 commits) (cla: yes, waiting for tree to go green)\n\n17477 Roll src/third_party/skia 6c51bf61e283..8ce842d38d0b (1 commits) (cla: yes, waiting for tree to go green)\n\n17478 Roll src/third_party/dart 5a965d5d0fef..fae35fca47c9 (7 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-910", "text": "17480 Roll src/third_party/skia 8ce842d38d0b..8afde5f39508 (9 commits) (cla: yes, waiting for tree to go green)\n\n17481 Roll fuchsia/sdk/core/mac-amd64 from QgqO4\u2026 to 6V5BR\u2026 (cla: yes, waiting for tree to go green)\n\n17482 Revert \u201cReland Clang 11, roll buildroot to 1bc40a5f916adb93d87e2a2230a0ec43db876c1c, take 3\u201d (cla: yes)\n\n17483 Roll to clang11, mark 4 (cla: yes)\n\n17486 Fix bad texture view config (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-911", "text": "17490 Roll fuchsia/sdk/core/linux-amd64 from v61zg\u2026 to -jFTb\u2026 (cla: yes, waiting for tree to go green)\n\nMerged PRs in flutter/plugins\n\nThere were 214 pull requests.\n\n1821 [google_maps_flutter] Breaking change fix for bitmap scaling (cla: yes)\n\n1983 [android_intent] support for setType() and setDataAndType() (backlog, cla: yes)\n\n2042 [google_maps_flutter] Fixed typo in LatLngBounds constructor (cla: yes, submit queue)\n\n2044 [google_maps_flutter] Fix circle and polygon stroke width (cla: yes, in review)\n\n2134 [video_player] Fixes video initialization future stall. (cla: yes, waiting for test harness)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-912", "text": "2181 [google_maps_flutter] Add methods to programmatically show/hide marker\u2019s infowindow (cla: yes, in review)\n\n2193 [android_alarm_manager] migrate to the V2 Android embedding (cla: yes)\n\n2235 [google_maps_flutter] Avoid unnecessary map element updates (performance) (cla: yes, submit queue)\n\n2264 [google_maps_flutter] Adds support for BuildingsEnabled property (cla: yes)\n\n2276 [video_player] Use platform interface (cla: yes)\n\n2279 [video_player] Add web implementation using platform interface (cla: yes)\n\n2283 [android_alarm_manager] Testing and documentation (cla: yes)\n\n2287 [In_app_purchases] migrate to Play Billing Library 2.0. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-913", "text": "2291 add shared_preferences_platform_interface (cla: yes)\n\n2295 [webview_flutter] Add support for onPageStarted event (cla: yes)\n\n2298 [quick_actions] Add DartDoc and test coverage (cla: yes)\n\n2299 [local_auth] support v2 embedding (cla: yes)\n\n2301 [google_sign_in] Migrate away from quiver_hashcode (cla: yes)\n\n2303 [google_maps_flutter] Add documentation (cla: yes, documentation)\n\n2305 [video_player] Emit correct VideoEventType (cla: yes)\n\n2306 [connectivity] Adds Macos support (cla: yes)\n\n2307 Add Chrome to the Docker for CI (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-914", "text": "2307 Add Chrome to the Docker for CI (cla: yes)\n\n2310 [android_intent] Fix pedantic linter errors (cla: yes)\n\n2311 [battery] Fix pedantic linter errors (cla: yes)\n\n2312 [camera] Fix unawaited future errors (cla: yes)\n\n2313 [connectivity] Fix unawaited futures (cla: yes)\n\n2314 [device_info] Fix pedantic errors (cla: yes)\n\n2315 [e2e] Fix pedantic lints (cla: yes)\n\n2316 [google_sign_in_web] Add empty podspec to plugin. (cla: yes)\n\n2317 [in_app_purchase] Fix most failing pedantic lints (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-915", "text": "2318 [script] Exclude google_sign_in_web from podspec lint. (cla: yes)\n\n2319 [package_info] Fix pedantic lints (cla: yes)\n\n2320 [share] Fix pedantic lints (cla: yes)\n\n2321 [video_player] Fix pedantic lints (cla: yes)\n\n2322 [webview_flutter] Fix pedantic lint errors (cla: yes)\n\n2323 Adds a macos stub implementation of E2EPlugin (cla: yes)\n\n2324 shared_preferences: throw AssertionError on non-mock implementations (cla: yes)\n\n2325 Implement shared_preferences on top of platform interface (cla: yes)\n\n2327 [android_alarm_manager] Update minimum Flutter version to 1.12.0 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-916", "text": "2328 Update documentation for connectivity (cla: yes)\n\n2329 [in_app_purchase]Change a comment. (cla: yes, in review)\n\n2331 [in_app_purchase]Update json_annotation version (cla: yes)\n\n2332 Web implementation of shared_preferences (cla: yes)\n\n2334 [CI] Adds task to build and test plugins with macos implementations (WIP, cla: yes)\n\n2335 [google_sign_in]Update google_sign_in_example name in pubspec.yaml (cla: yes)\n\n2337 [webview_flutter] Make it more explicit that webview keyboard is not ready for production (cla: yes)\n\n2338 [ android_alarm_manager ] Loosen Flutter SDK lower bound, update README (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-917", "text": "2339 [webview_flutter] add gesture navigation for iOS (cla: yes)\n\n2340 [camera] Resolve example null exception (cla: yes)\n\n2341 [image_picker] Fix file not found exception (cla: yes, in review, waiting for test harness)\n\n2342 [path_provider] Adds macOS support (cla: yes)\n\n2343 [webview_flutter] Fix iOS WebView ignoring SafeArea widget and iOS 13 WebView scroll indicator showing at random location. (cla: yes)\n\n2345 Revert \u201c[android_alarm_manager] Update minimum Flutter version to 1.12.0\u201d (cla: yes)\n\n2347 [e2e_macos] Remove redundant analysis_options.yaml (cla: yes)\n\n2348 Add a plugin_platform_interface package (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-918", "text": "2348 Add a plugin_platform_interface package (cla: yes)\n\n2349 [video_player_platform_interface] Fix some pedantic lints (cla: yes)\n\n2350 Export SignInOption from interface since it is used in the frontend (cla: yes)\n\n2352 [google_sign_in] Remove unused variable (cla: yes)\n\n2354 [none] Lock pedantic version (cla: yes)\n\n2355 [video_player] Document public API of video_player_platform_interface. (cla: yes, waiting for test harness)\n\n2356 [none] Pass \u2013custom-analysis flag through CI (cla: yes)\n\n2358 adds missing [[ to elif statement in scripts/incremental_build.sh (cla: yes)\n\n2359 [google_sign_in_platform_interface] Add missing docs (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-919", "text": "2362 [Image_picker] fix rotation regression on Android. (cla: yes)\n\n2363 [e2e ]Add dummy android project (cla: yes)\n\n2364 [google_sign_in] Fix pedantic lints (cla: yes)\n\n2365 [google_sign_in_web] Fix pedantic lints (cla: yes)\n\n2366 [connecitivity_macos] Fix warnings to publish (cla: yes)\n\n2367 Temporarily disable CI on stable Flutter (cla: yes)\n\n2368 [url_launcher] Migrate to new pubspec plugins schema and endorse url_launcher_web (cla: yes)\n\n2369 [espresso] Adds EspressoFlutter as a first-party plugin (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-920", "text": "2371 [google_sign_in] Migrate to new pubspec plugins schema (cla: yes)\n\n2372 [path_provider_macos] Fix publish warnings (cla: yes)\n\n2373 Disable stable for check publish (cla: yes)\n\n2374 [url_launcher_web] Add a no-op android/ folder (cla: yes)\n\n2375 [sensors]Cancel sensors example timer avoid exception (cla: yes)\n\n2376 [flutter_plugin_android_lifecycle] Add example notice like android_intent_example (cla: yes)\n\n2378 [url_launcher_web] bump the minimal flutter requirement to 1.10.0 (cla: yes)\n\n2382 Update all pubspecs to work with the latest version of pub and Flutter (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-921", "text": "2383 [url_launcher] Adds macOS package with example app (cla: yes)\n\n2384 [video_player_web] Play videos from assets (cla: yes)\n\n2385 [shared_preferences] Adds macOS support with example app (cla: yes)\n\n2386 [url_launcher] Endorse macos package (cla: yes)\n\n2388 [shared_preferences] Endorse shared_preferences (cla: yes)\n\n2389 [video_player] Endorse web implementation. (cla: yes)\n\n2390 [shared_preferences] Endorse web plugin. (cla: yes)\n\n2391 [ios_platform_images] Add ios platform images (cla: yes)\n\n2392 [shared_preferences_web] Prepare to be endorsed (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-922", "text": "2393 [google_sign_in_web] Prepare for endorsement. (cla: yes)\n\n2394 [e2e] Creates basic support/documentation/example to iOS. (cla: yes)\n\n2396 [skip ci] don\u2019t run Cirrus on tags (cla: yes)\n\n2398 [google_sign_in] Expose network error (cla: yes)\n\n2399 [url_launcher] Use the common PlatformInterface functionality (cla: yes)\n\n2400 [battery] cleanup for Android embedding post 1.12 (cla: yes)\n\n2401 [url_launcher] remove temporary dependency override (cla: yes)\n\n2402 re-enable stable CI (cla: yes)\n\n2403 [url_launcher_macos] add a no-op android implementation (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-923", "text": "2407 Update endorsed macos plugins readme and update others (cla: yes)\n\n2408 [video_player_web] add a no-op android folder (cla: yes)\n\n2409 [shared_preferences] add a no-op android folder to web/macos packages (cla: yes)\n\n2410 [google_sign_in_web] Add a no-op Android implementation (cla: yes)\n\n2411 Remove AndroidX references from no-op android implementations (cla: yes)\n\n2412 [shared_preferences web/macos] remove unused onMethodCall methods (cla: yes)\n\n2414 [ios_platform_images] Made ios_platform_images set the correct image scale. (cla: yes)\n\n2417 [plugin_platform_interface] Don\u2019t use const Object as a token (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-924", "text": "2418 [url_launcher] use non static token for platform interface (cla: yes)\n\n2425 [flutter_webview] Raise min Flutter SDK to stable (cla: yes)\n\n2427 [google_sign_in] Pass the client id to the platform interface. (cla: yes)\n\n2428 [google_maps_flutter] fix swift example in readme (cla: yes, submit queue)\n\n2430 [image_picker] support android V2 embedding (cla: yes)\n\n2432 [ios_platform_images] Removed android support from the pubspec. (cla: yes)\n\n2434 [video_player] Make sure the plugin is correctly initialized (cla: yes)\n\n2435 [ci] Upgrade to Xcode 11.3 (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-925", "text": "2436 [path_provider] now supports getDownloadsDirectory() on macOS. (cla: yes)\n\n2444 Migrate away from deprecated BinaryMessages (cla: yes)\n\n2445 [webview_flutter] Setup XCTests (cla: yes)\n\n2446 Update CODEOWNERS (cla: yes)\n\n2447 [camera] Fix crash from changing permissions (cla: yes)\n\n2448 Update Gradle version (cla: yes)\n\n2452 [sensors] Update readme documentation (cla: yes, waiting for test harness)\n\n2453 [android_alarm_manager] Fixed issue where callback lookup was failing in the background (cla: yes)\n\n2455 [google_sign_in_web] Fix race condition on init. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-926", "text": "2459 Updates CODEOWNERS (cla: yes)\n\n2461 Updates to espresso docs (cla: yes)\n\n2465 [e2e] Fixed bug in e2e for ios where it doesn\u2019t exit. (cla: yes)\n\n2466 [webview_flutter] always make sure the contentInset or the sum of contentInset and adjustedContentInset is 0 on iOS. (cla: yes)\n\n2467 [flutter_plugin_android_lifecycle] Stop reflecting (cla: yes, waiting for test harness)\n\n2469 [image_picker] Fix an issue that the example app won\u2019t launch the image picker after Android V2 embedding migration. (cla: yes)\n\n2470 [shared_preferences] Fixes gradle version for shared preferences (macos, web) bug on android (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-927", "text": "2473 [Closed Captioning] Create SubRip file parser and dart closed caption data object (cla: yes)\n\n2474 [in_app_purchase] Remove unused method from example app (cla: yes)\n\n2475 Bump roboelectric version (cla: yes)\n\n2476 Add missing Xcode workspaces to examples (cla: yes)\n\n2477 [shared_preferences] fix typo in readme (cla: yes)\n\n2481 [In_app_purchases] Removing extra testing changes for in-app-purchase example (cla: yes)\n\n2482 [android_alarm_manager] Added Espresso test for background execution (cla: yes)\n\n2483 [video_player, video_player_web] PlatformException fix (cla: yes, waiting for test harness)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-928", "text": "2485 Fix ci error: deprecated api (cla: yes)\n\n2487 [video_player] Add caption to VideoPlayerValue to get the current closed caption (cla: yes, waiting for test harness)\n\n2488 [google_maps_flutter] supports v2 android embedding. (cla: yes)\n\n2490 [url_launcher_web] Added support for mailto in url_launcher_web plugin (cla: yes)\n\n2492 Configure Cirrus Branch Guard (cla: yes)\n\n2496 Revert \u201cConfigure Cirrus Branch Guard\u201d (cla: yes)\n\n2497 [google_maps_flutter] Fixes toggling traffic layer not working on Android (cla: yes, in review)\n\n2500 [webview_flutter] Fix iOS WebView not opening href with target=\u201d_blank\u201d (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-929", "text": "2502 [e2e] e2e web changes part1: registering web extension. (cla: yes)\n\n2504 [in_app_purchase] Fix wrong _pendingCompletePurchase flag value (cla: yes)\n\n2505 [google_maps_flutter] getZoomLevel for map controller (cla: yes, submit queue)\n\n2507 [google_maps_flutter] Add steps to set up google map sdk on each platform in readme. (cla: yes)\n\n2508 [google_sign_in_web] Add more detailed setup instructions. (cla: yes)\n\n2509 [in_app_purchases] Android: make sure properly disconnect the billing client object. (cla: yes)\n\n2514 [e2e] Test multiple failure behavior (cla: yes)\n\n2515 [Connectivity] Adds platform interface to connectivity plugin (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-930", "text": "2516 [e2e] Avoid running failure test using native instrumentation test frameworks (cla: yes)\n\n2517 [webview_flutter] Remove the upper bound from the Flutter SDK constraint (cla: yes)\n\n2518 [in_app_purchase] Fix version. (cla: yes)\n\n2519 [connectivity_platform_interface] Fix README (cla: yes)\n\n2522 [shared_preferences] Fix README broken link (cla: yes)\n\n2523 [google_maps_flutter] Move google_maps_flutter to its own subdir. (cla: yes, waiting for test harness)\n\n2525 Add matthew-carroll to reviewers (cla: yes)\n\n2526 [connectivity] Migrate more logic to method channel platform (cla: yes, waiting for test harness)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-931", "text": "2528 [video_player] Made the video_player clean up after itself on iOS. (cla: yes)\n\n2529 Exclude connectivity packages (cla: yes)\n\n2530 [none] Update CODEOWNERS (cla: yes)\n\n2534 fix break on switch (cla: yes)\n\n2536 [shared_preferences] Fix deprecated API call (cla: yes, submit queue)\n\n2537 [connectivity] Use platform_interface in core plugin (cla: yes)\n\n2538 [connectivity] Endorse macos implementation (cla: yes)\n\n2539 [camera][in_app_purchase] Fix pedantic dependency. Remove pubspec.yaml in root folder. (cla: yes)\n\n2540 [connectivity] Add macos example (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-932", "text": "2540 [connectivity] Add macos example (cla: yes)\n\n2541 Updates gitignore with unwanted macos files (cla: yes)\n\n2542 [path_provider] Move package into a path_provider directory (cla: yes)\n\n2543 add dev_dependency:pedantic to all plugins (cla: yes)\n\n2547 [google_sign_in] Add new Oauth scope methods to google_sign_in_platform_interface. (cla: yes)\n\n2549 [e2e] fix flutter driver code snippet in readme and improve formatting of code snippets (cla: yes)\n\n2551 [flutter-plugin-android-lifecycle] Update Gradle version (cla: yes)\n\n2552 [url_launcher] fix: url_launcher - updated _launchUniversalLinkIos and Added Tests (cla: yes, waiting for test harness)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-933", "text": "2553 [path_provider] Create platform interface (cla: yes)\n\n2554 [web] adding a test for e2e web testing. (cla: yes)\n\n2555 [share] plugin: Update gradle version of example for Android (cla: yes, waiting for test harness)\n\n2557 [path_provider] Use platform interface (cla: yes)\n\n2558 Exclude path_provider packages (cla: yes)\n\n2559 [path_provider_macos] Adds example app (cla: yes)\n\n2560 [connectivity_platform_interface] Add ConnectivityResult.unknown. (cla: yes)\n\n2561 Revert \u201c[connectivity_platform_interface] Add ConnectivityResult.unknown.\u201d (cla: yes)\n\n2564 [path_provider_platform_interface] Rename back to StorageDirectory (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-934", "text": "2566 [path_provider] Endorse macOS implementation (cla: yes)\n\n2567 [device_info] add PackageManager\u2019s SystemFeatures to AndroidDeviceInfo (cla: yes)\n\n2569 [path_provider] Remove plugin class (cla: yes)\n\n2574 [webview_flkutter] remove ios workspace setting (cla: yes)\n\n2575 [android_intent] Make action optional, as Intents can also resolve with just the component name (cla: yes)\n\n2580 [espresso] Remove Swift dependency (cla: yes)\n\n2584 Rename FlutterRunner and make launch deterministic when running other tests. (cla: yes)\n\n2585 [in_app_purchase] Android: fix potential crash when casting in v1 embedding. (Trivial) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-935", "text": "2586 [android_intent] Bump to Flutter stable, remove deprecation warnings (cla: yes)\n\n2590 [device_info] Update Android embedding to match latest Flutter stable release (cla: yes)\n\n2592 [connectivity] remove ios workspace setting for example app. (cla: yes)\n\n2593 [e2e] Adding failure details for driver tests (cla: yes)\n\n2597 [battery] Announce API stability and compatibility with 1.0.0 (cla: yes)\n\n2599 [google_sign_in] Add implementations of requestScopes. (cla: yes)\n\n2600 [many] Replace deprecated getFlutterEngine calls on Android (cla: yes)\n\n2602 [google_sign_in_web] Remove fakeConstructor$ from generated API. (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-936", "text": "2603 [package_info] Upgrade to 1.12 Flutter and cleanup. (cla: yes)\n\n2604 [package_info, sensors] Announce API stability and compatibility with 1.0.0 (cla: yes)\n\n2605 [quick_actions] Upgrade to 1.12 Flutter and cleanup. (cla: yes)\n\n2607 [google_maps_flutter] Take snapshot of map (cla: yes, submit queue)\n\n2611 [google_sign_in] update to androidx (cla: yes)\n\n2613 [connectivity, battery, android_alarm_manager] v2 support (cla: yes)\n\n2619 [google_map_flutter] fix google map version in pubspec. (cla: yes)\n\n2621 [image_picker] Image picker select preferred camera device (rear, front) (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "2eeeb8828d8e-937", "text": "2622 [android_alarm_manager] remove MainActivity references (cla: yes)\n\n2624 [google_sign_in] Migrate to Android v2 embedder. (cla: yes)\n\n2627 [google_maps_flutter] Rename \u2018Page\u2019 in the example app to avoid type conflict with the Flutter Framework. (cla: yes)\n\n2628 [path_provider] Fix misaligned enum values in StorageDirectoryMapperTest (cla: yes)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.17.0/index.html"} {"id": "a7968bd93006-0", "text": "Flutter 1.2.1 release notes\n\nTools\n\nSDK\n\nRelease notes\n\n1.2.1 release notes\n\nFramework\n\nPlug-Ins\n\nDart\n\nTool\n\nSevere\n\nBreaking Changes\n\n#8769 Rename ListItem to ListTile, document ListTile fixed height geometry\n#7518 Update default flutter_assets path for iOS embedding\n#27697 Cupertino TextField Cursor Fix\n#23424 Teach drag start behaviors to DragGestureRecognizer\n#26238 Remove long-deprecated TwoLevelList\n#7567 Rename FlutterResult in embedder.h\n#7414 Strut implementation\n\nRegressions\n\nTooling Releases\n\nFull Issue List", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.2.1/index.html"} {"id": "a7968bd93006-1", "text": "Tooling Releases\n\nFull Issue List\n\nOur #1 priority since the Flutter v1.0 release has been to\ncontinue to address high priority issues reported both by\nFlutter developers and the Flutter team itself.\nThis includes committing 672 pull requests in the Flutter\nengine and framework since December (we\u2019ve been busy!).\nWe\u2019ve called out the new features and breaking changes\nthat we think are noteworthy below. The biggest ones came\nfrom our Framework and Tool tags, but we also found and\nfixed a couple of Severe issues as well.\n\nFramework\n\nTo more fully round-out Flutter\u2019s animation support,\nthis release adds several more of the standard easing functions:\n\n#25788 Add Robert Penner\u2019s easing functions\n\nTo integrate more fully with Android,\nthis release adds support for Android App Bundles,\na new packaging format that helps in reducing app size\nand enables new features like dynamic delivery for Android apps:", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.2.1/index.html"} {"id": "a7968bd93006-2", "text": "#24440 Adding support for android app bundle\n\nTo integrate more fully with iOS, this release adds several new features and fixes for iOS, including a new CupertinoTheme:\n\n#25183 Add navigatorKey to CupertinoTabView\n\n#25593 Let CupertinoTabScaffold handle keyboard insets too\n\n#24876 Adds a fade in and out, rounds corners, fixes offset and fixes height of cursor on iOS\n\n#23759 Adds CupertinoTheme\n\nIn addition to the iOS Cupertino theme support, this release continues to enhance the Material theme as well:\n\n#24169 [Material] Theme-able elevation on dialogs\n\n#25339 [Material] Theme-able TextStyles for AlertDialog", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.2.1/index.html"} {"id": "a7968bd93006-3", "text": "#25339 [Material] Theme-able TextStyles for AlertDialog\n\nTo integrate more fully with desktop form-factors like Android tablets and ChromeOS as well as desktop web and desktop OS support, this release builds more support for keyboard and mouse as first class input devices:\n\n#7758 Recommended implementation of combining characters implementation\n\n#27853 Hook up character events and unmodified code points to Android raw key event handling\n\n#27620 Add a keyboard key code generator\n\n#27627 Adding support for logical and physical key events\n\n#6961 Add hover event support to the engine\n\n#24830 Implement hover support for mouse pointers\n\nAs widgets are the core way to interact with users in Flutter, this release continues to add features and fixes to the Flutter widget set with particular attention paid to the SliverAppBar:\n\n#26021 Fix SliverAppBar title opacity and test all cases", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.2.1/index.html"} {"id": "a7968bd93006-4", "text": "#26021 Fix SliverAppBar title opacity and test all cases\n\n#26101 Fix a floating snapping SliverAppBar crash\n\n#25091 Add animations to SliverAppBar doc\n\n#24736 Provide some more locations for the FAB\n\n#25585 Expose font fallback API in TextStyle, Roll engine 54a3577c0139..215ca1560088\n\n#24457 Revise Android and iOS gestures on Material TextField\n\n#24554 Adds force press gesture detector and recognizer\n\n#23919 Allow detection of taps on TabBar\n\n#25384 Adds support for floating cursor\n\n#24976 Support TextField multi-line hint text", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.2.1/index.html"} {"id": "a7968bd93006-5", "text": "#24976 Support TextField multi-line hint text\n\n#26332 Strut: fine tuned control over text minimum line heights, allows forcing the line height to be a specified height\n\nAnd finally, as Flutter usage continues to grow world-wide, we continue to enhance support for localizations across several languages, including Ukrainian, Polish, Swahili and Galician in this release.\n\n#25394 Update localizations\n\n#27506 Added support for Swahili (material_sw.arb)\n\n#27352 Including Galician language\n\nPlug-Ins\n\nAs in the framework and engine itself, we\u2019re continuing to focus on plugin quality as well:\n\nflutter/engine#7317 Fix stale GrContext for iOS platform views\n\nflutter/engine#7558 Fix lost touch events for iOS platform views", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.2.1/index.html"} {"id": "a7968bd93006-6", "text": "flutter/engine#7558 Fix lost touch events for iOS platform views\n\nflutter/plugins#1157 [google_maps_flutter] Fix camera positioning issue on iOS\n\nflutter/plugins#1176 [firebase_auth] Fix Firebase phone auth on Android\n\nflutter/plugins#1037 [camera] Save photo orientation on iOS\n\nflutter/plugins#1129 [android_alarm_manager] Fix \u201cbackground start not allowed\u201d issues, queue events that are received too early\n\nflutter/plugins#1051 [image_picker] Fix crash on iOS when the picker is tapped multiple times\n\nThe webview_flutter plugin got a communication channel between Dart and JavaScript:\n\nflutter/plugins#1116 Add WebView JavaScript channels (Dart side)\n\nflutter/plugins#1130 WebView JavasScript channels Android implementation\n\nflutter/plugins#1139 WebView JavaScript channels - iOS implementation", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.2.1/index.html"} {"id": "a7968bd93006-7", "text": "flutter/plugins#1139 WebView JavaScript channels - iOS implementation\n\nlutter/plugins1021 javascript evaluation ios/android\n\nWe\u2019ve made progress building the In App Purchase plugin (which is still pre-release):\n\n#1057 [IAP] Check if the payment processor is available\n\n#1084 [IAP] Fetch SkuDetails from Google Play\n\n#1068 IAP productlist ios\n\n#1172 [In_app_purchase] add payment objc translators\n\nDart\n\nThe release contains a new Dart SDK which provides support for a new set literals syntax and increases AOT performance 10-20% by reducing the overhead of calling constructors or static methods:\n\n#37 Set Literal\n\n#33274 Add support for \u201cnaked\u201d instructions: global object pool, pc-relative static calls, faster indirect calls, potential code sharing\n\nTool", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.2.1/index.html"} {"id": "a7968bd93006-8", "text": "Tool\n\nWe\u2019ve added a number of new tools and new features to existing tools in this release.\n\nThis release continues to improve error messages across a range of tools:\n\n#26107 Better error messages for flutter tool \u2013dynamic flag\n\n#26084 Improve message when saving compilation training data\n\n#25863 Friendlier messages when using dynamic patching\n\nThis release also adds support for Java 1.8:\n\n#25470 Support Java 1.8\n\nSevere\n\nIn this release, we\u2019ve found and fixed a few severe issues from the previous release, including two crashes and one performance degradation.\n\nCrashes\n\n#7314 Flutter crash on startup (metabug)\n\nPerformance\n\n#25381 Add cull opacity perf test to device lab\n\nBreaking Changes", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.2.1/index.html"} {"id": "a7968bd93006-9", "text": "Breaking Changes\n\nIn an effort to continue to improve Flutter since 1.0 to meet customer needs, we have had to make a few breaking changes:\n\n#8769 Rename ListItem to ListTile, document ListTile fixed height geometry\n\nMany developers were confused by the fact that ListItem was fixed height. We\u2019ve renamed it to ListTile, to indicate that (like other tiles) its height is fixed, and the documentation has been updated to clearly say that about ListTile. You\u2019ll need to rename instances of the ListItem class to ListTile in your code.\n\n#7518 Update default flutter_assets path for iOS embedding\n\nFlutter assets for iOS applications are now found in Frameworks/App.framework/flutter_assets instead of flutter_assets. The flutter command line tool should take care of this difference, but if you are writing an AddToApp application for iOS that shares assets with Flutter, you\u2019ll need to be aware of this change.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.2.1/index.html"} {"id": "a7968bd93006-10", "text": "#27697 Cupertino TextField Cursor Fix\n\nCupertinoTextField\u2019s cursorColor default now matches the app\u2019s theme. If this is undesirable, developers can use the cupertinoOverrideTheme property of ThemeData to provide a Cupertino-specific override using a CupertinoThemeData object, e.g:\n\n#23424 Teach drag start behaviors to DragGestureRecognizer\n\nBy default, a drag gesture detector\u2019s onStart callback will be called with the location of where a drag gesture is detected (i.e. after dragging a certain number of pixels) instead of at the touch down location. To use the old functionality with a given drag gesture recognizer, the dragStartBehavior variable of the recognizer should be set DragStartBehavior.down, e.g., include the bolded line below when declaring your GestureDecorator:\n\n#26238 Remove long-deprecated TwoLevelList", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.2.1/index.html"} {"id": "a7968bd93006-11", "text": "#26238 Remove long-deprecated TwoLevelList\n\nRemoved the long-deprecated TwoLevelList widget; use ListView with ExpansionTile instead. See this example for a sample that uses ExpansionTile.\n\n####7442 Move Picture.toImage rasterization to the GPU thread\n\nPicture.toImage now returns a Future instead. This permits image rasterization to occur on the GPU thread, improving performance in many cases and ensuring correct results. At a minimum, you\u2019ll need to declare methods invoking on Picture instances as async, and use await, like this:\n\nHowever, your application may well be performing other asynchronous actions, and you should consider how you want to handle image processing in that light. For more on Dart\u2019s support for asynchronous programming and the Future class, see https://www.dartlang.org/tutorials/language/futures.\n\n#7567 Rename FlutterResult in embedder.h", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.2.1/index.html"} {"id": "a7968bd93006-12", "text": "#7567 Rename FlutterResult in embedder.h\n\nIn the Embedder API, the FlutterResult type has been renamed to FlutterEngineResult to better explain its purpose. You\u2019ll need to rename any instances of the former to the latter.\n\n#7414 Strut implementation\n\nRename dart:ui ParagraphStyle.lineHeight to ParagraphStyle.height. The ParagraphStyle.lineHeight property previously did not do anything and was renamed to stay consistent with TextStyle.height. You\u2019ll need to rename any instances of the former to the latter.\n\nRegressions\n\nSoon after our 1.2 release, we found two regressions:\n\n#28640 NoSuchMethodError: android.view.MotionEvent.isFromSource", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.2.1/index.html"} {"id": "a7968bd93006-13", "text": "flutter/flutter#24830 (\u201cImplement hover support for mouse pointers.\u201d) is using an Android API that doesn\u2019t exist on older devices. This can cause a crash on Android 4.1 (Jellybean) and 4.1 (Jellybean MR1).\n\n#28484 Widget rendering strange since Flutter update\n\nThis can cause rendering issues when loading certain images on physical iOS devices.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.2.1/index.html"} {"id": "a7968bd93006-14", "text": "This can cause rendering issues when loading certain images on physical iOS devices.\n\nTo get a fix for these regressions, once beta 1.3 lands in March, you can switch to the beta channel and perform a \u201cflutter upgrade\u201d at the command line. At the time of this writing, that will update you to at least version 1.3.8, which includes flutter/engine#8006 (\u201cGuard against using Android API not defined in API level 16 & 17\u201d) and the Skia commit that fixes the rendering issue. For the crashing issue, the two affected versions of Android are more than ten years old and represent at most 2.5% of Android users, few of which are likely to be installing new Android applications, whether they\u2019re Flutter or not. Even so, we hate to leave known regressions in a stable release, but after much internal debate, we decided it was the best way to proceed for Flutter developers and their app users.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.2.1/index.html"} {"id": "a7968bd93006-15", "text": "Our ideal fix for any serious issue is to create a \u201chotfix\u201d release by taking an existing release and \u201ccherry picking\u201d the fixes that we\u2019d like to apply. The ability to hotfix an existing stable release is something that we implemented for 1.2 but have not quite gotten to production quality. The consequence of this is that if we had created a new stable \u201c1.2.1-a\u201d release with the fix for the regressions, we\u2019d have stranded all of our users at that branch; updating to future branches would\u2019ve required users to remove and reinstall Flutter from scratch, which was clearly unacceptable. We are working hard to validate our ability to hotfix in 1.3+ so that we don\u2019t have this problem again.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.2.1/index.html"} {"id": "a7968bd93006-16", "text": "Another option would have been to bring 1.3 to a stable release. Our current policy is to only bring out a new stable release once per quarter to reduce churn for Flutter developers. As of this writing, the pre-stable 1.3 release contains 104 framework commits (and even more engine, Dart, and Skia commits), any of which is a risk to how your current apps are running. To reduce that risk, we leave releases in beta for a month, let developers test them, and only promote releases to the stable channel when we\u2019re confident in them. That\u2019s how we maintain stability in the quarterly releases.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.2.1/index.html"} {"id": "a7968bd93006-17", "text": "Our next stable release is currently planned for May, 2019, which is the first stable release that will include the fix for this regression. If you are affected by #28640 and feel like the workaround to use the pre-release 1.3 is not an option for you, please let us know by on flutter/flutter#29235 itself. Similarly, if you are affected by #28484, et us know on flutter/flutter/#29360. If we find that there\u2019s a lot of feedback from the Flutter community that we made the wrong decision here, we\u2019ll use your feedback to reevaluate. Flutter is, after all, a community effort, and your opinions matter.\n\nTooling Releases\n\nIn addition to Flutter framework changes in the 1.2 release, we\u2019ve made a number of tooling releases in the same timeframe, which you can read about here:", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.2.1/index.html"} {"id": "a7968bd93006-18", "text": "Dart & Flutter support for Visual Studio Code: versions 2.21, 2.22, 2.23 and 2.24.\n\nDart & Flutter support for IntelliJ & Android Studio: January, 2019 and February, 2019 releases.\n\nDart DevTools alpha release.\n\nFull Issue List\n\nYou can see the full list of PRs committed in this release.", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.2.1/index.html"} {"id": "e8a037261c43-0", "text": "Flutter 1.20.0 release notes\n\nTools\n\nSDK\n\nRelease notes\n\n1.20.0 release notes\n\nMerged pull requests by label\n\nMerged PRs by labels for flutter/flutter", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-1", "text": "tool - 435 pull request(s)\nframework - 413 pull request(s)\nteam - 283 pull request(s)\nf: material design - 204 pull request(s)\na: tests - 67 pull request(s)\nf: cupertino - 53 pull request(s)\na: internationalization - 34 pull request(s)\nengine - 33 pull request(s)\nd: examples - 28 pull request(s)\na: accessibility - 25 pull request(s)\nplatform-ios - 19 pull request(s)\na: quality - 16 pull request(s)\na: text input - 15 pull request(s)\nd: api docs - 13 pull request(s)\ndocumentation - 11 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-2", "text": "documentation - 11 pull request(s)\nsevere: performance - 11 pull request(s)\nsevere: API break - 11 pull request(s)\nf: scrolling - 11 pull request(s)\nt: xcode - 10 pull request(s)\nwill affect goldens - 9 pull request(s)\nplatform-web - 9 pull request(s)\na: null-safety - 8 pull request(s)\na: fidelity - 7 pull request(s)\na: images - 7 pull request(s)\nwork in progress; do not review - 5 pull request(s)\nplatform-android - 5 pull request(s)\nCQ+1 - 4 pull request(s)\na: existing-apps - 4 pull request(s)\nsevere: new feature - 4 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-3", "text": "severe: new feature - 4 pull request(s)\nperf: memory - 4 pull request(s)\nf: routes - 4 pull request(s)\na: desktop - 3 pull request(s)\nperf: speed - 3 pull request(s)\na: triage improvements - 3 pull request(s)\na: typography - 3 pull request(s)\nteam: infra - 3 pull request(s)\na: error message - 3 pull request(s)\nf: focus - 3 pull request(s)\ncustomer: money (g3) - 3 pull request(s)\ncustomer: crowd - 2 pull request(s)\nsevere: regression - 2 pull request(s)\na: platform-views - 2 pull request(s)\na: animation - 2 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-4", "text": "a: animation - 2 pull request(s)\na: annoyance - 2 pull request(s)\nt: flutter doctor - 2 pull request(s)\nfound in release: 1.17 - 1 pull request(s)\nf: inspector - 1 pull request(s)\nf: gestures - 1 pull request(s)\nplatform-mac - 1 pull request(s)\ncustomer: quill (g3) - 1 pull request(s)\nplugin - 1 pull request(s)\ncustomer: peppermint - 1 pull request(s)\nsevere: crash - 1 pull request(s)\ncustomer: octopod - 1 pull request(s)\ncustomer: fun (g3) - 1 pull request(s)\ncustomer: fuchsia - 1 pull request(s)\np: framework - 1 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-5", "text": "p: framework - 1 pull request(s)\nt: flutter driver - 1 pull request(s)\ncustomer: dream (g3) - 1 pull request(s)\ncla: no - 1 pull request(s)\nteam: flakes - 1 pull request(s)\nteam: gallery - 1 pull request(s)\na: video - 1 pull request(s)\na: mouse - 1 pull request(s)\nwaiting for customer response - 1 pull request(s)\na: debugging - 1 pull request(s)\nfound in release: 1.18 - 1 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-6", "text": "Merged PRs by labels for flutter/engine", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-7", "text": "platform-android - 62 pull request(s)\nplatform-ios - 21 pull request(s)\nsevere: performance - 16 pull request(s)\nperf: speed - 13 pull request(s)\nplatform-web - 13 pull request(s)\nplatform-fuchsia - 6 pull request(s)\nperf: memory - 5 pull request(s)\naffects: engine - 3 pull request(s)\naffects: tests - 3 pull request(s)\ncode health - 3 pull request(s)\naffects: text input - 2 pull request(s)\nplatform-windows - 2 pull request(s)\nbug - 1 pull request(s)\nbug (regression) - 1 pull request(s)\ncrash - 1 pull request(s)\nperf: app size - 1 pull request(s)\nplatform-linux - 1 pull request(s)\nplatform-macos - 1 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-8", "text": "Merged PRs by labels for flutter/plugins\n\nsubmit queue - 3 pull request(s)\nwaiting for test harness - 3 pull request(s)\nin review - 2 pull request(s)\nbugfix - 1 pull request(s)\ndocumentation - 1 pull request(s)\nfeature - 1 pull request(s)\nwebview - 1 pull request(s)\n\nAll merged pull requests\n\nMerged PRs in flutter/flutter\nMerged PRs in flutter/engine\nMerged PRs in flutter/plugins\n\nMerged pull requests by label\n\nMerged PRs by labels for flutter/flutter\n\ntool - 435 pull request(s)\n\n50581 Implements \u2013machine flag for devices command (cla: yes, tool)\n\n51126 [flutter_tools] fix build for projects with watchOS companion app (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-9", "text": "52507 enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\n52791 Read custom app project name from gradle.properties (cla: yes, team, tool)\n\n53374 [gen_l10n] Fallback feature for untranslated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green)\n\n53381 Characters Package (a: text input, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)\n\n53422 Rename GPU thread to raster thread in API docs (a: tests, cla: yes, framework, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-10", "text": "53600 Restructure the Windows app template (cla: yes, team, tool)\n\n53715 Support old and new git release tag formats (cla: yes, tool)\n\n53765 [flutter_tools] re-enable debug extension (cla: yes, tool, waiting for tree to go green)\n\n53773 [flutter_tools] surgically remove outputs from shared directory (cla: yes, tool, waiting for tree to go green)\n\n53785 [flutter_tools] Don\u2019t generate native registrant classes if no pluginClass is defined (cla: yes, tool, waiting for tree to go green)\n\n53809 [flutter_tools] update to package vm_service: electric boogaloo (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-11", "text": "53824 [gen_l10n] Add option for deferred loading on the web (a: internationalization, cla: yes, team, tool, waiting for tree to go green)\n\n53848 [flutter_tools] don\u2019t compute hashes of well known artifacts (cla: yes, tool)\n\n53853 [flutter_tools] remove indirection around App.framework production (cla: yes, tool)\n\n53859 [flutter_tools] write SkSL file to local file (cla: yes, tool)\n\n53868 [gen_l10n] Add scriptCode handling (a: internationalization, cla: yes, severe: new feature, team, tool)\n\n53876 Update Windows and Linux plugin templates (cla: yes, tool)\n\n53882 Remove URL shortening from GitHub reporter similar issues URL (a: triage improvements, cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-12", "text": "53902 [flutter_tools] Launch DevTools with \u2018v\u2019 (cla: yes, tool, waiting for tree to go green)\n\n53928 [macos] build: add build-number and buid-name arguments (cla: yes, tool, waiting for tree to go green)\n\n53936 Sanitize error message sent to GitHub crash reporter (a: triage improvements, cla: yes, tool)\n\n53944 [flutter_tools] update asset manifest to use package_config instead of package_map (cla: yes, tool)\n\n53949 [flutter_tools] also listen to web stderr stream (cla: yes, tool)\n\n53951 Revert \u201c[flutter_tools] update to package vm_service: electric boogaloo\u201d (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-13", "text": "53954 [gen_l10n] Fix plural parsing for translated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green)\n\n53956 Revert \u201c[flutter_tools] surgically remove outputs from shared directory\u201d (cla: yes, tool)\n\n53957 [flutter_tools] Migrate to vm service 3 (reland): electric boogaloo (cla: yes, team, tool)\n\n53960 [flutter_tools] Refresh VM state before executing hot reload (cla: yes, tool, waiting for tree to go green)\n\n53962 [flutter_tools] surgically remove outputs from shared directory (cla: yes, tool)\n\n54083 Add a switch to use WebSockets for web debug proxy (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-14", "text": "54114 Revert \u201c[flutter_tools] Migrate to vm service 3 (reland): electric boogaloo\u201d (cla: yes, team, tool)\n\n54123 [flutter_tools] Use gzip level 1 for devfs transfer compression (cla: yes, tool, waiting for tree to go green)\n\n54131 flutter/flutter 1.17.0-dev.3.1 cherrypicks (CQ+1, cla: yes, framework, tool)\n\n54132 [flutter_tools] Migrate to package:vm_service 4: trigonometric boogaloo (cla: yes, team, tool)\n\n54133 [flutter_tools] ensure the tool can find SDK manager on windows (cla: yes, tool, waiting for customer response)\n\n54152 [flutter_tools] Remove fromPlatform from tests (cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-15", "text": "54154 Convert iOS simulator log reader to simctl, use unified logging filters (cla: yes, platform-ios, tool, waiting for tree to go green)\n\n54176 Fix newly reported prefer_const_constructors lints. (a: internationalization, cla: yes, d: examples, team, tool)\n\n54185 [gen_l10n] Handle single, double quotes, and dollar signs in strings (cla: yes, team, tool, waiting for tree to go green)\n\n54208 [flutter_tools] migrate engine location check (a: null-safety, cla: yes, tool)\n\n54217 Fix frameworkVersionFor for flutter doctor and usage (cla: yes, tool, waiting for tree to go green)\n\n54228 [flutter_tools] allow passing non-config inputs (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-16", "text": "54233 [flutter_tools] ensure build fails if asset files are missing (cla: yes, tool)\n\n54294 [flutter_tools] remove extra same repo check (cla: yes, tool)\n\n54299 [flutter_tools] migrate devfs web to package_config (a: null-safety, cla: yes, tool)\n\n54301 [flutter_tools] Remove packageMap usage and update package_config (a: null-safety, cla: yes, tool)\n\n54313 [flutter_tools] fix routing test (cla: yes, tool)\n\n54314 [gen_l10n] Expand integration tests (a: internationalization, cla: yes, tool, waiting for tree to go green)\n\n54320 [flutter_tools] make verbose macOS builds actually verbose (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-17", "text": "54328 [flutter_tools] use new output location for the apk (cla: yes, tool, waiting for tree to go green)\n\n54337 [flutter_tools] Move service methods to VmService extension methods (cla: yes, tool)\n\n54374 [flutter_tools] switch benchmark to isolate runnable (cla: yes, tool)\n\n54389 [flutter_tools] disable cache in devices test (cla: yes, tool)\n\n54407 Don\u2019t import plugins that don\u2019t support android in settings.gradle (a: accessibility, cla: yes, d: examples, team, tool, waiting for tree to go green)\n\n54414 [flutter_tools] attempt to fix benchmark mode test (cla: yes, tool)\n\n54428 Add .last_build_id to gitignore (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-18", "text": "54467 [flutter_tools] update compilation to use package config (a: null-safety, cla: yes, tool)\n\n54478 Fix environment leakage in doctor_test (cla: yes, team, team: flakes, team: infra, tool)\n\n54488 Remove Finder extended attributes from iOS project files (cla: yes, platform-ios, tool)\n\n54555 [flutter_tools] refactor FlutterManifest to be context-free (cla: yes, tool, waiting for tree to go green)\n\n54613 [flutter_tools] support enable-experiment in flutter analyze (a: null-safety, cla: yes, tool, waiting for tree to go green)\n\n54617 [flutter_tools] initial support for enable experiment, run, apk, ios, macos (a: null-safety, cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-19", "text": "54645 remove outdated build_runner instructions (cla: yes, tool, waiting for tree to go green)\n\n54679 [flutter_tools] Handle empty gzip file on Windows (cla: yes, tool)\n\n54682 [flutter_tools] update coverage collector to use vmservice api (cla: yes, tool, waiting for tree to go green)\n\n54691 Migrate Runner project base configuration (cla: yes, d: examples, t: xcode, team, tool)\n\n54692 [flutter_tools] support machine and coverage together but for real (cla: yes, tool, waiting for tree to go green)\n\n54700 [flutter_tools] remove runFromSource, move runInView to vm_service extension (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-20", "text": "54715 [flutter_tools] support any as a special web-hostname (cla: yes, tool, waiting for tree to go green)\n\n54717 [flutter_tools] don\u2019t elapse real time during fallback test (cla: yes, tool)\n\n54756 Fix/set mocks defaults (cla: yes, tool, waiting for tree to go green)\n\n54783 [flutter_tools] Fix roll dev script, add tests (cla: yes, team, tool, waiting for tree to go green)\n\n54786 [flutter_tools] fix response format of flutterVersion, flutterMemoryInfo (cla: yes, tool)\n\n54805 [flutter_tools] dont suppress analytics from re-entrant macos build (cla: yes, tool, waiting for tree to go green)\n\n54881 Add COM initializition to Windows template (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-21", "text": "54884 [flutter_tools] Provide global options with subcommand help text (cla: yes, tool)\n\n54909 [flutter_tools] fix multiple defines in flutter tooling, web (cla: yes, team, tool)\n\n54912 Move doctor into globals (cla: yes, team, tool)\n\n54916 Convert expression evaluation exceptions to errors (cla: yes, team, tool, waiting for tree to go green)\n\n54918 [flutter_tools] ensure EventPrinter handles a null parent (cla: yes, tool, waiting for tree to go green)\n\n54920 [flutter_tools] remove Isolate implementations of vm_service methods (cla: yes, tool)\n\n54923 [flutter_tools] default tree-shake-icons to enabled and improve performance (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-22", "text": "54924 CrashReportSender dependency injection (cla: yes, team, tool)\n\n54959 fixed flutter run for projects containing a watchOS companion (cla: yes, tool)\n\n54967 Revert \u201c[flutter_tools] fix multiple defines in flutter tooling, web\u201d (cla: yes, team, tool)\n\n54973 [flutter_tools] Reland: fix multiple dart defines (cla: yes, team, tool)\n\n54987 git pull \u2013ff-only (cla: yes, tool, waiting for tree to go green)\n\n54989 Support armv7s architecture (cla: yes, platform-ios, tool)\n\n55002 Move GitHubTemplateCreator into reporting library (cla: yes, team, tool)\n\n55003 Add flag to enable expression evaluation for web (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-23", "text": "55012 Even more vm service refactor (cla: yes, tool)\n\n55085 [flutter_tools] check if requireloader is defined (cla: yes, tool, waiting for tree to go green)\n\n55125 prettify the flutter web bootstrap file (cla: yes, tool)\n\n55141 Support tags in testWidgets (a: tests, cla: yes, framework, tool, waiting for tree to go green)\n\n55152 Support tags when running tests from command line (cla: yes, team, tool)\n\n55160 [flutter_tools] refactor Chrome launch logic to remove globals/statics (cla: yes, tool)\n\n55187 [flutter_tools] migrate windows to assemble (cla: yes, tool)\n\n55212 [flutter_tools] fix type error in symbolize (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-24", "text": "55244 [flutter_tools] remove PackageMap and finish PackageConfig migration (cla: yes, tool)\n\n55250 flutter_tools: Prefer using .of() over .from() when possible (cla: yes, tool)\n\n55253 Flutter 1.17.0.dev.3.2 cherrypicks (cla: yes, engine, framework, team, tool)\n\n55315 Add error message about missing unzip utility (cla: yes, tool)\n\n55341 [flutter_tools] migrate FlutterView to new vm_service (cla: yes, tool)\n\n55342 [flutter_tools] check first for stable tag, then dev tag (cla: yes, tool)\n\n55348 [flutter_tools] unpin package config and update (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-25", "text": "55353 remove intellij references to the v1 embedding jars now that the v2 embeddings are referenced via maven (cla: yes, tool)\n\n55385 [flutter_tools] fix version tag v stripping (cla: yes, tool)\n\n55412 [flutter_tools] remove globals from pub (cla: yes, tool)\n\n55413 Revert \u201c[flutter_tools] default tree-shake-icons to enabled and improve performance\u201d (cla: yes, team, tool)\n\n55417 [flutter_tools] fix performance of tree-shake-icons (cla: yes, severe: performance, tool)\n\n55420 [flutter_tools] fix package config invalidation (cla: yes, tool, waiting for tree to go green)\n\n55436 [flutter_tools] quality pass on windows build (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-26", "text": "55499 fixed flutter pub get failure in tests (cla: yes, tool, waiting for tree to go green)\n\n55510 [flutter_tools] precache and unpack updates for desktop release artifacts (cla: yes, tool)\n\n55513 [flutter_tools] Delete system temp entries on fatal signals (cla: yes, tool, waiting for tree to go green)\n\n55531 [flutter_tools] set test directory base as additional root, allow running without index.html (cla: yes, tool)\n\n55556 [flutter_tools] quality pass on Linux build (cla: yes, tool)\n\n55564 [flutter_tools] support \u2013enable-experiment in flutter test (cla: yes, team, tool)\n\n55577 Revert \u201c[flutter_tools] fix version tag v stripping\u201d (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-27", "text": "55594 [flutter_tools] enable flutter upgrade to support force pushed branches (cla: yes, tool, waiting for tree to go green)\n\n55602 [flutter_tools] fix version tag v stripping and support old \u201cdev\u201d and new \u201cpre\u201d tags (cla: yes, tool, waiting for tree to go green)\n\n55605 [flutter_tools] detect ipv6 in fuchsia server url (cla: yes, tool)\n\n55614 [flutter tools] Move _informUserOfCrash into crash_reporting.dart (cla: yes, tool, waiting for tree to go green)\n\n55617 [flutter_tools] remove trailing eth info from fuchsia package server (cla: yes, tool)\n\n55664 [flutter_tools] fix pm serve ipv6 linklocal addr issue (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-28", "text": "55699 [flutter_tools] allow pulling performance data from assemble (cla: yes, tool)\n\n55701 [flutter_tools] surface missing assets originating package (cla: yes, tool, waiting for tree to go green)\n\n55704 [flutter_tools] ensure etag headers are ascii (cla: yes, tool)\n\n55715 [flutter_tools] add \u2013dart-define option for fuchsia build (cla: yes, tool, waiting for tree to go green)\n\n55759 [flutter_tools] catch ProcessException and throw ToolExit during upgrade (cla: yes, tool, waiting for tree to go green)\n\n55762 Print stdout and stderr when the ssh command failed (cla: yes, tool, waiting for tree to go green)\n\n55772 Revert \u201c[flutter_tools] migrate FlutterView to new vm_service\u201d (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-29", "text": "55773 Remove v prefix in doctor version (cla: yes, tool)\n\n55774 [flutter_tools] reland migrate FlutterView to new vmservice (cla: yes, tool)\n\n55780 [flutter_tools] support multiple fuchsia devices (cla: yes, tool)\n\n55788 Revert \u201c[flutter_tools] reland migrate FlutterView to new vmservice\u201d (cla: yes, tool)\n\n55790 Remove dead variable from xcode_backend (cla: yes, t: xcode, tool)\n\n55794 [flutter_tools] remove vm service (cla: yes, tool)\n\n55797 [flutter_tools] reland migrate FlutterViews to package:vm_service (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-30", "text": "55799 Check Xcode build setting FULL_PRODUCT_NAME for bundle name (cla: yes, t: xcode, team, tool)\n\n55808 Add iOS simulator log parse test (cla: yes, platform-ios, t: xcode, tool)\n\n55812 restore quit timeout, adjust some integration test behaviors (cla: yes, team, tool)\n\n55871 Flutter 1.17.0.dev.3.3 cherrypicks (cla: yes, engine, framework, team, tool)\n\n55887 Fix/use contains ignoring whitespace (cla: yes, tool)\n\n55909 [gen_l10n] Fix unintended breaking change introduced by output-dir option (a: internationalization, cla: yes, team, tool)\n\n55961 [flutter_tools] Lazily inject logger into web devices (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-31", "text": "56059 [flutter_tools] support bundling SkSL shaders in flutter build apk/appbundle (cla: yes, tool)\n\n56103 [flutter_tools] reduce initial cache size on web (cla: yes, tool, waiting for tree to go green)\n\n56146 Fixed a typo, gen_l10n_types.dart comment (a: internationalization, cla: yes, tool, waiting for tree to go green)\n\n56167 [flutter_tools] integrate l10n tool into build/run (cla: yes, tool)\n\n56173 [flutter_tools] support flutter run -d edge (cla: yes, tool)\n\n56240 fix the reload and restart service extension methods (cla: yes, tool, waiting for tree to go green)\n\n56330 Use androidSdk globals variable everywhere (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-32", "text": "56331 Inject logger and fs into printHowToConsumeAar, test without context (cla: yes, team, tool)\n\n56335 Gradle artifacts and tasks tests without context (cla: yes, team, tool)\n\n56342 Add split-debug and obfuscation to build aar (cla: yes, platform-android, tool, waiting for tree to go green)\n\n56373 [gen_l10n] Improve arb FormatException error message (a: internationalization, cla: yes, tool, waiting for tree to go green)\n\n56385 Revert \u201c[flutter_tools] remove flutter view cache\u201d (cla: yes, tool)\n\n56410 [flutter_tools] Restore base/platform.dart (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-33", "text": "56472 [flutter_tools] prevent wildcard assets from causing build invalidation issues (cla: yes, tool, waiting for tree to go green)\n\n56490 [gen_l10n] Optionally generate list of inputs/outputs (a: internationalization, cla: yes, tool, waiting for tree to go green)\n\n56502 Swap xcode_tests from MockProcessManager to FakeProcessManager (cla: yes, team, tool, waiting for tree to go green)\n\n56505 Swap xcodeproj_tests from MockProcessManager to FakeProcessManager (cla: yes, team, tool)\n\n56531 feature: add usermessage when miss platform project (cla: yes, tool)\n\n56564 [flutter_tools] ensure track-widget-creation can be changed on devcompiler (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-34", "text": "56605 Remove direct uses of LocalPlatform (cla: yes, team, tool)\n\n56618 Update Linux template for headless mode (cla: yes, tool, waiting for tree to go green)\n\n56620 Remove Runner target check, prefer schemes (cla: yes, t: xcode, team, tool, waiting for tree to go green)\n\n56630 [flutter tools] Fix an assert in IOSSimulator.getLogReader (cla: yes, tool)\n\n56633 [flutter_tools] enable tree-shake-icons by default for non-web targets (cla: yes, tool)\n\n56634 [flutter_tools] rename getSkSL file output ext to .sksl.json (cla: yes, tool)\n\n56685 typo fix on the FLUTTER_STORAGE_BASE_URL usage (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-35", "text": "56694 [flutter_tools] fix aar defaults test (cla: yes, tool)\n\n56703 Always remove the workspace settings when set to legacy build settings (cla: yes, tool, waiting for tree to go green)\n\n56706 [flutter_tools] Don\u2019t try to execute gradle wrapper out of /tmp (cla: yes, tool)\n\n56720 [flutter_tools] fix documentation on default built ios (cla: yes, tool)\n\n56786 [flutter_tools] cache-bust in service worker (cla: yes, team, tool, waiting for tree to go green)\n\n56800 Revert \u201c[flutter_tools] integrate l10n tool into build/run\u201d (cla: yes, tool)\n\n56924 [flutter_tools] hide tree-shake-icons (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-36", "text": "56928 Add mirror overrides to doctor output (a: triage improvements, cla: yes, t: flutter doctor, tool, waiting for tree to go green)\n\n56934 Revert \u201c[flutter_tools] hide tree-shake-icons\u201d (cla: yes, tool, waiting for tree to go green)\n\n56943 [flutter_tools] expand Regexp log match to include more AndroidRuntime failures (cla: yes, tool, waiting for tree to go green)\n\n56945 [flutter_tools] unblock fuchsia roll (cla: yes, tool, waiting for tree to go green)\n\n56946 [flutter_tools] introduce a BuildSystem interface (cla: yes, tool, waiting for tree to go green)\n\n56958 Updated dwds (and other packages) (cla: yes, d: examples, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-37", "text": "56959 Make initial daemon devices population fast (cla: yes, tool)\n\n56961 Remove dead definesCustomBuildConfigurations (cla: yes, team, tool, waiting for tree to go green)\n\n57005 Fix minor typo in \u2018flutter create \u2013list-samples\u2019 help text (cla: yes, tool, waiting for tree to go green)\n\n57027 Fix xcode_backend.sh to strip bitcode for archive build, if the project has bitcode disabled entirely (cla: yes, tool, waiting for tree to go green)\n\n57052 Flutter 1.17.1 cherrypicks (cla: yes, engine, framework, team, tool)\n\n57058 1.18.0-11.1.pre beta cherrypicks (cla: yes, engine, framework, team, tool, work in progress; do not review)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-38", "text": "57075 [flutter_tools] re-enable non-nullable test (cla: yes, team, tool, waiting for tree to go green)\n\n57077 [flutter_tools] do not set timestamp of package_config file (cla: yes, tool, waiting for tree to go green)\n\n57117 [flutter_tools] expose track-widget-creation to build aar (cla: yes, tool, waiting for tree to go green)\n\n57135 [flutter_tools] Support profile and release builds on Linux (cla: yes, tool, waiting for tree to go green)\n\n57143 Disable DartDev when launching flutter_tools (cla: yes, tool, waiting for tree to go green)\n\n57145 [Add2App Android] Fix the issue of Hotreload broken on latest Dev release with Android device (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-39", "text": "57161 Remove empty Supporting Files group from Swift app template (cla: yes, tool, waiting for tree to go green)\n\n57162 throw more specific toolexit when git fails during upgrade (cla: yes, tool, waiting for tree to go green)\n\n57173 [flutter_tools] allow adb to fail to un forward without crashing (cla: yes, tool, waiting for tree to go green)\n\n57182 [flutter_tools] fix period in URL for androidX incompat (cla: yes, tool, waiting for tree to go green)\n\n57184 [flutter_tools] ensure package_config is re-created if pub get is run (cla: yes, tool, waiting for tree to go green)\n\n57238 Switch to CMake for Linux desktop (cla: yes, tool)\n\n57268 Remove license statements in template files. (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-40", "text": "57274 Desktop default window size (cla: yes, tool, waiting for tree to go green)\n\n57321 Update packages (cla: yes, team, tool, waiting for tree to go green)\n\n57328 Update flutter_gallery_assets to ^0.2.0 (cla: yes, team, tool)\n\n57345 Protect the deletion of the local engine temp dir in case it is alrea\u2026 (cla: yes, tool, waiting for tree to go green)\n\n57349 Device manager choose running device (cla: yes, tool, waiting for tree to go green)\n\n57355 [flutter tools] Improve messages when we fail to connect to the Observatory (cla: yes, tool, waiting for tree to go green)\n\n57392 [flutter_tools] check for Runner.sln when parsing for plugins (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-41", "text": "57400 [flutter_tools] handle missing null check in manifest parser (cla: yes, tool)\n\n57415 Fix CMake invocation for 3.10 compat (cla: yes, tool)\n\n57445 [flutter_tools] remove globals/context for android testing (cla: yes, tool, waiting for tree to go green)\n\n57446 [flutter_tools] minor cleanups to try catch (cla: yes, tool)\n\n57447 [flutter_tools] put system clock on globals (cla: yes, tool)\n\n57448 [flutter_tools] remove zone level overrides of verbose and daemon logging (cla: yes, tool)\n\n57450 [flutter_tools] fix incorrect comment on web runner (cla: yes, tool, waiting for tree to go green)\n\n57452 Add Linux GTK artifacts to unpack list (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-42", "text": "57498 Temporarily allow pluginClass: none on desktop (cla: yes, tool)\n\n57506 [flutter_tools] chunk the hashing of large files (cla: yes, tool, waiting for tree to go green)\n\n57510 [flutter_tools] reland: integrate l10n tool into hot reload/restart/build (cla: yes, tool)\n\n57515 Remove TRANSFORM from Linux CMake files (cla: yes, tool)\n\n57532 Always show device discovery diagnostics in \u201cflutter devices\u201d (cla: yes, tool, waiting for tree to go green)\n\n57538 Re-add line to Linux template CMakeLists.txt (cla: yes, tool)\n\n57590 Update the flutter script\u2019s locking mechanism and follow_links (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-43", "text": "57601 Add Android private keystore to project gitignore (cla: yes, tool, waiting for tree to go green)\n\n57611 Revert \u201c[flutter_tools] remove globals/context for android testing\u201d (cla: yes, tool)\n\n57614 [flutter_tools] reland: remove globals from android device/testing (cla: yes, tool)\n\n57688 Change release archive check to warning (cla: yes, tool, waiting for tree to go green)\n\n57690 [flutter_tools] hide all development tools (cla: yes, tool, waiting for tree to go green)\n\n57701 Allow FLUTTER_APPLICATION_PATH to be null for misconfigured Xcode projects (cla: yes, t: xcode, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-44", "text": "57703 [flutter_tools] ensure emulator command does not crash with missing avdmanager (cla: yes, tool, waiting for tree to go green)\n\n57749 Add release and profile support for Windows (cla: yes, tool)\n\n57813 [flutter_tools] add vm service method to pull SkSL (cla: yes, tool, waiting for tree to go green)\n\n57829 [flutter_tools] forward flutter format to dart format and deprecate (cla: yes, tool, waiting for tree to go green)\n\n57830 [flutter_tools] validate android arch and build number (cla: yes, tool, waiting for tree to go green)\n\n57871 [flutter_tools] rename output LICENSE file to NOTICES and support loading either (cla: yes, framework, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-45", "text": "57873 [flutter_tools] URI encode dart-define values (cla: yes, tool, waiting for tree to go green)\n\n57874 [flutter_tools] throw if asked to build release for x86_64 (cla: yes, tool, waiting for tree to go green)\n\n57907 flutter.gradle: collect list of Android plugins from .flutter-plugins-dependencies (cla: yes, tool)\n\n57963 [flutter_tools] Support latest IntelliJ via Jetbrain toolbox (cla: yes, t: flutter doctor, tool)\n\n58011 write test to convince self of lack of timing issue (cla: yes, tool)\n\n58018 Prevent building non-android plugins in build aar (cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-46", "text": "58030 Remove invalid local from macos_assemble.sh (cla: yes, tool, waiting for tree to go green)\n\n58039 [flutter_tools] Put a heap size limit on the frontend_server (cla: yes, tool, waiting for tree to go green)\n\n58050 Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review)\n\n58064 print checksum differences when detected by \u2013verify-only (cla: yes, tool)\n\n58069 Fix Linux plugin template build visibility (cla: yes, tool)\n\n58123 Revert \u201cwrite test to convince self of lack of timing issue\u201d (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-47", "text": "58137 Change iOS device discovery from polling to long-running observation (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)\n\n58174 Start from a clean slate when bundling Linux build (cla: yes, tool)\n\n58188 [flutter_tools] only copy cached dill after startup (cla: yes, tool)\n\n58189 Update Windows template version (cla: yes, tool)\n\n58193 Revert \u201c[flutter_tools] always initialize the resident runner from di\u2026 (cla: yes, tool, waiting for tree to go green)\n\n58208 Revert \u201cRevert \u201c[flutter_tools] always initialize the resident runner from di\u2026\u201d (cla: yes, tool, waiting for tree to go green)\n\n58215 Fix extraneous spaces printed by flutter tool if the lock isn\u2019t waited on. (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-48", "text": "58257 Detect USB/network interface from iOS devices (cla: yes, platform-ios, t: xcode, tool)\n\n58284 Send text error in JSON and print in tools (cla: yes, framework, tool)\n\n58328 [flutter_tools] deprecate flutter generate and codegen (cla: yes, team, tool, waiting for tree to go green)\n\n58332 [flutter_tools] cleanup to devfs Operations (cla: yes, tool)\n\n58335 [flutter_tools] do not include material icon incorrectly (cla: yes, tool)\n\n58372 Fix non-local-engine Linux release builds (cla: yes, tool, waiting for tree to go green)\n\n58390 use Expand-Archive and Compress-Archive in windows os utils (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-49", "text": "58421 Fix typo in error message for flutter doctor (cla: yes, tool, waiting for tree to go green)\n\n58444 Remove outdated disable_input_output_paths from example project Podfiles (cla: yes, d: examples, platform-ios, team, tool, waiting for tree to go green)\n\n58454 Revert \u201c[flutter_tools] only copy cached dill after startup\u201d (cla: yes, tool)\n\n58455 [flutter_tools] reland: copy dill after startup (cla: yes, tool)\n\n58474 [flutter tools] Don\u2019t return success if we trigger runZoned\u2019s error callback (cla: yes, tool, waiting for tree to go green)\n\n58522 Build iOS apps using Swift Packages (cla: yes, d: examples, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-50", "text": "58525 Revert \u201c[flutter_tools] Put a heap size limit on the frontend_server\u201d (cla: yes, tool, waiting for tree to go green)\n\n58533 [flutter_tools] add flag for sound-null-safety, unify with experiments (a: null-safety, cla: yes, tool)\n\n58538 Don\u2019t elapse real time during IOSDevice.startApp tests (cla: yes, team, tool, waiting for tree to go green)\n\n58539 [flutter_tools] Allow the tool to suppress compilation errors. (cla: yes, tool)\n\n58541 Fake out DeviceManager.getDevices in test (cla: yes, team, tool, waiting for tree to go green)\n\n58544 Use fake command in analytics test (cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-51", "text": "58549 Revert \u201cBuild iOS apps using Swift Packages\u201d (cla: yes, d: examples, team, tool)\n\n58551 [flutter_tools] iOS VM Service logs should include stderr (cla: yes, tool, waiting for tree to go green)\n\n58557 [flutter_tools] remove handling of error that is fixed (cla: yes, tool, waiting for tree to go green)\n\n58607 Revert \u201c[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58618 Revert \u201cDon\u2019t elapse real time during IOSDevice.startApp tests\u201d (cla: yes, tool)\n\n58622 Don\u2019t elapse real time during IOSDevice.startApp tests (cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-52", "text": "58644 Add FakeAsync to delay tests (cla: yes, team, tool)\n\n58645 Move create project build tests to permeable command shard (cla: yes, team, tool)\n\n58646 Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58649 Add per-test timeout to Cirrus tool general tests (cla: yes, team, tool, waiting for tree to go green)\n\n58653 [flutter_tools] avoid serving files outside of expected paths (cla: yes, tool, waiting for tree to go green)\n\n58656 Add the ability to ignore lines depending on comments (cla: yes, team, tool)\n\n58670 LG debugging/logcat fixed (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-53", "text": "58688 [flutter_tools] unbreak g3 roll (tool, waiting for tree to go green)\n\n58703 [flutter_tools] use -f when fetching tags (cla: yes, tool)\n\n58711 [flutter_tools] unbreak g3 usage of installHook (cla: yes, tool, waiting for tree to go green)\n\n58713 Don\u2019t require a specific Windows 10 SDK (cla: yes, tool)\n\n58719 Revert \u201cuse Expand-Archive and Compress-Archive in windows os utils\u201d (cla: yes, tool)\n\n58732 Revert \u201cflutter.gradle: collect list of Android plugins from .flutter-plugins-dependencies\u201d (cla: yes, tool)\n\n58743 [flutter_tools] write sksl on exit (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-54", "text": "58798 [flutter_tools] don\u2019t use verbose when in doctor or help command (cla: yes, tool)\n\n58804 [flutter_tools] minor cleanup to vm service connection (cla: yes, tool, waiting for tree to go green)\n\n58812 [flutter tools] Change the desktop device names and IDs (cla: yes, tool)\n\n58815 Support work profiles and multiple Android users for run, install, attach, drive (cla: yes, platform-android, tool, waiting for tree to go green)\n\n58817 [flutter_tools] remove deprecation warning on flutter format (cla: yes, tool, waiting for tree to go green)\n\n58830 [flutter_tools] disable dartdev when calling snapshots directly (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-55", "text": "58842 [flutter_tools] fix capitalization in build commands (cla: yes, tool, waiting for tree to go green)\n\n58871 [flutter_tools] use correct sdk path for analysis (cla: yes, tool)\n\n58872 Revert \u201cSend text error in JSON and print in tools\u201d (cla: yes, framework, tool)\n\n58875 [flutter_tools] inject output preferences at the top level (cla: yes, tool)\n\n58879 [flutter_tools] support bundle-sksl-path on all desktop and mobile targets (cla: yes, tool)\n\n58887 [flutter_tools] only restrict devices based on arch + buildMode, not emulator status (cla: yes, tool, waiting for tree to go green)\n\n58890 [flutter_tools] change service worker load to NOTICES (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-56", "text": "58891 [flutter_tools] rename library to be less absurd (cla: yes, tool, waiting for tree to go green)\n\n58994 Send text error in JSON and print in tools (cla: yes, framework, tool, waiting for tree to go green)\n\n59001 fix analysis on master (cla: yes, tool)\n\n59002 Revert \u201cSend text error in JSON and print in tools\u201d (cla: yes, framework, tool)\n\n59009 Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green)\n\n59012 Release cache lock for commands after required artifacts are downloaded (cla: yes, tool, waiting for tree to go green)\n\n59018 Send text error in JSON and print in tools (cla: yes, framework, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-57", "text": "59023 add a help link to the default module template readme (cla: yes, tool, waiting for tree to go green)\n\n59025 Revert \u201cBuild iOS apps using Swift Packages\u201d (cla: yes, d: examples, team, tool)\n\n59026 [flutter_tools] Fix slow ios_device_start_prebuilt_test (cla: yes, tool, waiting for tree to go green)\n\n59035 Revert \u201c[flutter_tools] use correct sdk path for analysis\u201d (cla: yes, tool)\n\n59044 Move iOS Podfile logic into tool (cla: yes, platform-ios, team, tool, waiting for tree to go green)\n\n59046 Cleanup devicelab framework duplicate (a: tests, cla: yes, engine, framework, team, tool)\n\n59080 Remove use of BundleUtilities in Linux build (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-58", "text": "59081 [flutter_tools] Reland: use correct sdk path for analysis (cla: yes, tool)\n\n59083 [flutter_tools] include dart-defines in cached kernel name (cla: yes, tool, waiting for tree to go green)\n\n59087 [flutter_tools] create NotifyingLogger at the top level when running flutter run \u2013machine or flutter attach \u2013machine (cla: yes, tool)\n\n59175 [flutter_tools] remove globals from proxy validator (cla: yes, tool)\n\n59184 [flutter_tools] remove globals from compilers (cla: yes, team, tool)\n\n59197 Revert \u201c[flutter_tools] inject output preferences at the top level\u201d (cla: yes, tool)\n\n59201 Add iOS Podfile migration warning to support federated plugins (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-59", "text": "59209 Support .flutter-plugins-dependencies (cla: yes, platform-ios, team, tool, waiting for tree to go green)\n\n59210 Do not depend on embedded $dartUriBase (tool)\n\n59215 [flutter_tools] Update roll_dev.dart (cla: yes, team, tool, waiting for tree to go green)\n\n59217 Deprecate make-host-app-editable (a: existing-apps, cla: yes, tool, waiting for tree to go green)\n\n59250 Don\u2019t crash on requests for invalid package URLs (cla: yes, tool, waiting for tree to go green)\n\n59283 [versions] Update all the versions (cla: yes, team, tool)\n\n59285 Remove Fuchsia BUILD.gn files (a: internationalization, a: tests, cla: yes, framework, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-60", "text": "59287 Switch Linux to the GTK embedding (cla: yes, tool)\n\n59291 [flutter_tools] ensure generated entrypoint matches test and web entrypoint language version (cla: yes, team, tool)\n\n59294 flutter.gradle: collect list of Android plugins from .flutter-plugins-dependencies (cla: yes, tool, waiting for tree to go green)\n\n59343 CMake fix for Linux projects without plugins (cla: yes, tool, waiting for tree to go green)\n\n59365 Remove flutter_goldens_client package dependency from tool (cla: yes, team, tool, waiting for tree to go green)\n\n59369 [flutter_tools] move mingit path addition back to flutter.bat (cla: yes, tool, waiting for tree to go green)\n\n59484 Word substitutions (cla: yes, framework, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-61", "text": "59487 [flutter_tools] deprecate build aot (cla: yes, tool)\n\n59497 More word substitutions (cla: yes, tool, waiting for tree to go green)\n\n59507 Add --platforms to flutter create -t plugin command (cla: yes, tool, waiting for tree to go green)\n\n59508 Remove last references to ideviceinstaller (cla: yes, platform-ios, team, tool, waiting for tree to go green)\n\n59512 [flutter_tools] update libimobiledevice (cla: yes, tool)\n\n59539 [flutter_tools] For l10n with deferred loading, use loadLibrary for non-web too (cla: yes, team, tool)\n\n59568 [flutter_tools] fix the post message event attribute used to skip waiting (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-62", "text": "59571 [flutter_tools] add toggle b and service extension to change platform brightness (cla: yes, framework, tool)\n\n59607 Specify encoding for vswhere output (cla: yes, tool)\n\n59624 [flutter_tools] make expando on vm service null safe to handle web stuff (cla: yes, tool, waiting for tree to go green)\n\n59626 [flutter_tools] handle NPE in list views method (cla: yes, tool)\n\n59630 Fix Linux shell window default size (cla: yes, tool)\n\n59632 Don\u2019t crash when pubspec isn\u2019t a map (cla: yes, tool, waiting for tree to go green)\n\n59695 Change iOS device discovery from polling to long-running observation (cla: yes, tool)\n\n59706 [flutter_tools] maintain file manifest for create (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-63", "text": "59709 Clean up PollingDeviceDiscovery dispose (cla: yes, tool, waiting for tree to go green)\n\n59714 Use a HeaderBar for Linux applications. (cla: yes, tool)\n\n59717 Manual engine roll to update format of compileExpression RPC response (cla: yes, engine, tool, waiting for tree to go green)\n\n59773 [flutter_tools] add missing null-safety flags (cla: yes, tool)\n\n59774 Revert \u201cManual engine roll to update format of compileExpression RP\u2026 (cla: yes, engine, tool)\n\n59786 [flutter_tools] make parent logger optional (cla: yes, tool)\n\n59789 Make flutter and dart scripts invoke their batch file equivalents on Windows (cla: yes, tool)\n\n59802 Remove Linux shell window_configuration.cc (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-64", "text": "59804 Roll the engine from 965fbbe to b5f5e63 (cla: yes, engine, tool, waiting for tree to go green)\n\n59809 Add integration tests for structured error (cla: yes, tool, waiting for tree to go green)\n\n59810 Revert \u201cflutter.gradle: collect list of Android plugins from .flutter-plugins-dependencies\u201d (cla: yes, tool)\n\n59813 Revert \u201cAdd the ability to ignore lines depending on comments\u201d (cla: yes, tool)\n\n59822 [flutter_tools] track null safety usage (cla: yes, tool, waiting for tree to go green)\n\n59826 Enabled expression evaluation in flutter for web by default (cla: yes, tool, waiting for tree to go green)\n\n59832 [versions] update all versions (cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-65", "text": "59867 Replace ANDROID_HOME user messages with ANDROID_SDK_ROOT (cla: yes, platform-android, team, tool, waiting for tree to go green)\n\n59874 Parse build ios framework build mode from params (a: existing-apps, cla: yes, platform-ios, tool, waiting for tree to go green)\n\n59896 gitignore .last_build_id file in the repo (cla: yes, d: examples, team, tool, waiting for tree to go green)\n\n59907 port devicelab from idevice_id -> xcdevices (cla: yes, team, tool)\n\n59996 [flutter_tools] android test cleanups (cla: yes, tool, waiting for tree to go green)\n\n59997 [flutter_tools] cleanup fuchsia tests (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-66", "text": "59999 [flutter_tools] cleanup iOS test (tool, waiting for tree to go green)\n\n60017 Fix typo in Linux CMake template (cla: yes, tool, waiting for tree to go green)\n\n60018 [flutter_tools] switch linux desktop feature on (cla: yes, tool, waiting for tree to go green)\n\n60041 Use assemble build system directly for build ios-framework (cla: yes, team, tool)\n\n60060 [flutter_tools] fix root directory tests (cla: yes, tool)\n\n60102 [flutter_tools] add null safety argument to unbreak frob (cla: yes, tool)\n\n60111 Add null safety options to build ios-framework (a: existing-apps, a: null-safety, cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-67", "text": "60116 [flutter_tools] Add support for web in plugin template. (cla: yes, tool, waiting for tree to go green)\n\n60119 [flutter_tools] separate target platform, host platform, and architecture (cla: yes, tool)\n\n60127 [versions] update all versions and fix tool tests (cla: yes, team, tool)\n\n60144 [flutter_tools] more test fixes (cla: yes, tool)\n\n60147 Revert \u201c[flutter_tools] separate target platform, host platform, and architecture\u201d (cla: yes, tool)\n\n60156 [flutter_tools] even more test fixes (cla: yes, tool)\n\n60159 Make flutter create . on plugins also regenerates files for platforms already supported (cla: yes, tool, waiting for tree to go green)\n\n60163 Consider the Linux template stable (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-68", "text": "60163 Consider the Linux template stable (cla: yes, tool)\n\n60172 [flutter_tools] start fixing command tests (cla: yes, tool)\n\n60185 [gen_l10n] Update the arb filename parsing logic (a: internationalization, cla: yes, team, tool)\n\n60200 [flutter_tools] Clean code analyze command (cla: yes, engine, tool, waiting for tree to go green)\n\n60221 [flutter_tools] de-flake integration tests (cla: yes, tool)\n\n60224 [flutter_tools] Update WebAssetServer to avoid context, fix tests (cla: yes, tool)\n\n60228 Make module run script names unique (a: existing-apps, cla: yes, platform-ios, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-69", "text": "60231 [flutter_tools] remove most use of global packages path (cla: yes, tool)\n\n60241 [flutter_tools] fix tests that depend on correct cache existance (cla: yes, tool)\n\n60263 [flutter_tools] last pass on general.shard unit tests (cla: yes, tool)\n\n60317 [flutter_tools] surface null safety/experiment flags in attach (cla: yes, tool, waiting for tree to go green)\n\n60381 Use ephemeral ports for iOS port forwarding (cla: yes, platform-ios, tool)\n\n60395 [flutter tools] Revert desktop device name changes and print the category instead (cla: yes, tool, waiting for tree to go green)\n\n60480 [flutter_tools] remove globals from base/android (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-70", "text": "60546 Fix daemon device discovery crash when Xcode isn\u2019t installed (cla: yes, severe: crash, t: xcode, tool, waiting for tree to go green)\n\n60551 Revert \u201c[flutter_tools] update libimobiledevice\u201d (cla: yes, tool)\n\n60569 Re-land \u201c[flutter_tools] update libimobiledevice\u201d (cla: yes, tool)\n\n60570 [flutter_tools] support sound null-safety mode for the web (cla: yes, tool)\n\n60611 1.17.5 CP: Fix daemon device discovery crash when Xcode isn\u2019t installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n60615 [flutter_tools] ensure flutter daemon can exit correctly (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-71", "text": "60617 [flutter_tool] fix ide-config crash because of no android key (cla: yes, tool)\n\n60623 Take screenshots of wirelessly paired iOS devices (platform-ios, tool)\n\n60629 Switch Windows to CMake (cla: yes, tool)\n\n60633 [flutter_tools] add null-safety flags to dill cache location (cla: yes, tool)\n\n60654 Only try the GDK X11 backend, as the FlView only currently supports X11 (cla: yes, tool)\n\n60658 [flutter_tools] fix crash if grouped doctor validator crashes (cla: yes, tool, waiting for tree to go green)\n\n60693 Typo sweep (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-72", "text": "60708 [flutter_tools] support starting in canvaskit with FLUTTER_WEB_USE_SKIA=true (tool, waiting for tree to go green)\n\n60787 [flutter_tools] remove some globals from flutter_tester device (cla: yes, tool)\n\n60927 [flutter_tools] fix crash if the platform section was a list (cla: yes, tool)\n\n60932 [flutter_tools] add sdk constraint to plugin/package templates (cla: yes, tool)\n\n60998 [flutter_tools] deprecate flutter version (cla: yes, tool, waiting for tree to go green)\n\n61003 [flutter_tools] make precache force blow away stamp files (cla: yes, tool)\n\n61034 Roll packages (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-73", "text": "61034 Roll packages (cla: yes, team, tool)\n\n61064 Handle git dependencies, roll packages to get transitive deps of flutter_gallery (cla: yes, team, tool, waiting for tree to go green)\n\n61066 Issue with comparison operator in generated service worker (cla: yes, tool, waiting for tree to go green)\n\n61103 [flutter_tools] ensure AppRunLogger is injected for run/attach machine (cla: yes, tool, waiting for tree to go green)\n\n61127 Test update_packages for git packages (cla: yes, tool, waiting for tree to go green)\n\n61129 [flutter_tools] fix recursive asset variant issue (cla: yes, tool, waiting for tree to go green)\n\nframework - 413 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-74", "text": "framework - 413 pull request(s)\n\n42940 Revise Action API (cla: yes, f: cupertino, f: material design, framework, team)\n\n50232 Docs \u2018a a\u2019 fix #1 (cla: yes, framework)\n\n50236 Docs \u2018that that\u2019 fix #2 (cla: yes, framework, waiting for tree to go green)\n\n50237 Docs \u2018that that\u2019 fix #3 (cla: yes, framework, waiting for tree to go green)\n\n50412 Make CircularProgressIndicator\u2019s animation match native (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n50673 Update AppBar MediaQuery documentation (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-75", "text": "50915 Implement barrierDismissible for showCupertinoDialog (a: internationalization, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n51465 Support New and Custom FAB Locations (cla: yes, f: material design, framework, waiting for tree to go green)\n\n51581 Fix outline button solid path when BorderSize.width is used (cla: yes, f: material design, framework, platform-web, waiting for tree to go green)\n\n51656 Set AA flag for painting images (a: images, cla: yes, framework, waiting for tree to go green, will affect goldens)\n\n52126 Autofill Part 1 (cla: yes, customer: peppermint, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-76", "text": "52507 enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\n52990 Update Highlight mode initial value calculation. (cla: yes, f: focus, framework, waiting for tree to go green)\n\n52995 Fix typo of showCupertinoModalPopup documentation comment (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n53381 Characters Package (a: text input, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)\n\n53422 Rename GPU thread to raster thread in API docs (a: tests, cla: yes, framework, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-77", "text": "53616 Improving A11y for Flutter Gallery Demos (a: accessibility, a: tests, cla: yes, f: material design, framework, team)\n\n53655 Pass showCheckboxColumn parameter to DataTable (a: quality, cla: yes, f: material design, framework, team)\n\n53837 Skip Audits (2) (a: tests, cla: yes, f: cupertino, framework, platform-web, team, waiting for tree to go green)\n\n53843 Fix FlutterError.onError in debug mode (cla: yes, framework)\n\n53875 Remove network images from cache on any exception during loading (a: images, cla: yes, framework)\n\n53878 Fix diagnostics crash in profile mode (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-78", "text": "53888 Add visualDensity and focus support to ListTile (a: desktop, cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n53916 Slider rebase work (cla: yes, f: material design, framework, team)\n\n53945 [Material] Add focus, highlight, and keyboard shortcuts to Slider (cla: yes, f: material design, framework, waiting for tree to go green)\n\n53959 Clear ImageCache on MemoryPressure (a: images, cla: yes, framework, waiting for tree to go green)\n\n53974 Remove strict repeat check from framework formatter (moved to engine) (cla: yes, framework)\n\n54110 Added \u2018barrierColor\u2019 and \u2018useSafeArea\u2019 parameters to the showDialog function. (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-79", "text": "54119 Reland \u201ciOS UITextInput autocorrection prompt (#45354)\u201d (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n54125 remove flutter_test quiver dep, use fake_async and clock instead (a: tests, cla: yes, framework, team)\n\n54128 fixes isAlwaysShown material scrollbar.dart (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54131 flutter/flutter 1.17.0-dev.3.1 cherrypicks (CQ+1, cla: yes, framework, tool)\n\n54140 iOS Text Selection Menu Overflow (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-80", "text": "54144 drop image package dependency for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54171 System mouse cursors (a: tests, cla: yes, f: material design, framework)\n\n54206 Updating codeowners for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54212 Reverse dependency between services and scheduler (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54218 [flutter_driver] Add SceneDisplayLag stats to timeline summary (a: tests, cla: yes, framework, waiting for tree to go green)\n\n54220 [benchmarks] Handle multiple begin/end trace events (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-81", "text": "54227 [windows] Adds support for keyboard mapping. (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54234 Fix right alignment TWB longestLine (a: typography, cla: yes, framework)\n\n54243 Add API to services package that overrides HTTP ban (cla: yes, framework)\n\n54258 [DecorationImage] adds scale property (cla: yes, framework, waiting for tree to go green)\n\n54286 Revert bindings dependency workaround (cla: yes, framework, waiting for tree to go green)\n\n54291 Minimal implementation of FlutterError.toString for release mode (cla: yes, framework, waiting for tree to go green)\n\n54305 Add missing properties to TextStyle.apply (a: typography, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-82", "text": "54306 Fix initial value for highlight mode on desktop platforms. (cla: yes, framework)\n\n54317 PageStorage sample (cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green)\n\n54322 Skip Audit - Material Library (a: quality, a: tests, cla: yes, f: material design, framework, platform-web, team, waiting for tree to go green)\n\n54394 replace simple empty Container with w & h with SizedBox (a: accessibility, cla: yes, f: cupertino, f: material design, framework)\n\n54442 Add null check in TextStyle.apply for TextBaseline (cla: yes, framework, waiting for tree to go green)\n\n54479 Enable gesture recognizer in selectable rich text (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-83", "text": "54480 Revert \u201c[flutter_driver] Add SceneDisplayLag stats to timeline summar\u2026 (a: tests, cla: yes, framework, team)\n\n54481 Make TextFormFieldState.didChange change text fields value (cla: yes, f: material design, framework)\n\n54490 [flutter_driver] Reland add SceneDisplayLag stats to timeline summary (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54493 Use scheduleTask for adding licenses (cla: yes, framework, waiting for tree to go green)\n\n54519 Revert \u201cAdd API to services package that overrides HTTP ban\u201d (cla: yes, framework)\n\n54522 Reland \u201cAdd API to services package that overrides HTTP ban (#54243)\u201d (cla: yes, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-84", "text": "54640 Allow WIllPopCallback to return null or false to veto the pop. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54670 Updated Nested SingleChildScrollView test for clarity (cla: yes, framework, waiting for tree to go green)\n\n54674 Add searchFieldStyle (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54698 Allow headers to be passed to the WebSocket connection for VMServiceFlutterDriver (a: tests, cla: yes, framework, waiting for tree to go green)\n\n54706 Wire in focusNode, focusColor, autofocus, and dropdownColor to DropdownButtonFormField (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54714 [Material] Added BottomNavigationBarTheme (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-85", "text": "54741 [flutter_driver] Fix browser check (a: tests, cla: yes, framework, waiting for tree to go green)\n\n54779 Revert \u201cReland \u201cAdd API to services package that overrides HTTP ban (#54243)\u201d\u201d (cla: yes, framework)\n\n54798 ToDo Audit - Cupertino+ Library (a: accessibility, cla: yes, d: examples, f: cupertino, framework, team, waiting for tree to go green)\n\n54902 Paste shows only when content on clipboard (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n54919 Add MediaQueryData.navigationMode and allow controls to be focused when disabled. (cla: yes, customer: fun (g3), f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-86", "text": "54978 Expose current day as a parameter to showDatePicker. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54981 disable hit testing if the CompositedTransformFollower is hidden when\u2026 (cla: yes, framework)\n\n54985 Step 2: SnackBarBehavior.floating offset fix by default (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55001 FlutterErrorDetails.context docs fix (a: error message, a: tests, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)\n\n55044 Created method to report ImageChunkEvents (cla: yes, framework, waiting for tree to go green)\n\n55064 Step 3: Removes temporary flag for SnackBarBehavior.floating offset fix (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-87", "text": "55069 Prioritize scrolling away nested overscroll (a: fidelity, a: quality, cla: yes, customer: crowd, f: scrolling, framework, platform-ios, waiting for tree to go green)\n\n55141 Support tags in testWidgets (a: tests, cla: yes, framework, tool, waiting for tree to go green)\n\n55221 [ExpansionTile] adds padding property (cla: yes, f: material design, framework)\n\n55230 Make Action.enabled be isEnabled(Intent intent) instead. (cla: yes, framework, team)\n\n55246 Handle surrogate pairs in RenderEditable (cla: yes, framework)\n\n55253 Flutter 1.17.0.dev.3.2 cherrypicks (cla: yes, engine, framework, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-88", "text": "55257 Add DragTarget callback onAcceptDetails, plus helper class DragTarget\u2026 (cla: yes, framework, waiting for tree to go green)\n\n55260 Fine tune the Y offset of OutlineInputBorder\u2019s floating label (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55303 Fixed a typo in the docs. (cla: yes, framework, waiting for tree to go green)\n\n55333 Use kIsWeb instead of private _kIsBrowser in text_input.dart (cla: yes, framework, waiting for tree to go green)\n\n55336 Adding tabSemanticsLabel to CupertinoLocalizations (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-89", "text": "55408 Fix InputDecorator intrinsic height reporting (a: text input, cla: yes, f: material design, f: scrolling, framework, severe: regression, waiting for tree to go green)\n\n55414 LayoutBuilder: skip calling builder when constraints are the same (cla: yes, framework, team)\n\n55415 Customizable obscuringCharacter (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n55416 Fix link to material spec (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55469 Fix compute intrinsic size for wrap (cla: yes, framework)\n\n55482 Enable configuring minHeight for LinearProgressIndicator and update default to match spec (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-90", "text": "55484 Revert \u201cFix FlutterError.onError in debug mode (#53843)\u201d (a: tests, cla: yes, f: material design, framework)\n\n55494 Add onSecondaryTap to gesture recognizer and gesture detector. (a: tests, cla: yes, framework, waiting for tree to go green)\n\n55500 Relands Fix FlutterError.onError in debug mode (cla: yes, framework, waiting for tree to go green)\n\n55527 Animation sheet recorder (a: tests, cla: yes, framework, waiting for tree to go green, will affect goldens)\n\n55599 Default to use V2 Slider (cla: yes, f: material design, framework)\n\n55600 Fix focus traversal regions to account for transforms. (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-91", "text": "55636 Prevent use of TextInputType.text when also using TextInputAction.newLine via assert (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n55651 Fix behavior change due to incorrect initial floating setting (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55761 Add a property to Material icon button to customize the splash radius (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55763 [timeline] Sort timeline events before summarizing (a: tests, cla: yes, framework)\n\n55769 Revert \u201c[timeline] Sort timeline events before summarizing (#55763)\u201d (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-92", "text": "55771 [timeline] Sort timeline events before summarizing (a: tests, cla: yes, framework, waiting for tree to go green)\n\n55775 TextField enabled fix (a: text input, cla: yes, f: material design, framework, waiting for tree to go green)\n\n55789 ToDo Audit - Material Library+ (cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n55793 Skip Audit - Painting Library (a: images, a: tests, a: typography, cla: yes, framework, platform-web, team, will affect goldens)\n\n55829 allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-93", "text": "55832 Prevent ModalBottomSheet from rebuilding its child (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55857 Removed useV2 Slider flag (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55871 Flutter 1.17.0.dev.3.3 cherrypicks (cla: yes, engine, framework, team, tool)\n\n55902 Fix default opacity assignments for unselected and selected icons in NavigationRail (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55911 Text field height fix (a: text input, cla: yes, f: inspector, f: material design, framework, waiting for tree to go green)\n\n55936 Fixed #55858 (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-94", "text": "55939 Implementation of the Material Date Range Picker. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55977 Add clipBehavior to widgets with clipRect (cla: yes, f: material design, framework, severe: API break, team, will affect goldens)\n\n55998 Fixes the navigator pages update crashes when there is still route wa\u2026 (cla: yes, f: routes, framework, severe: API break, waiting for tree to go green)\n\n56084 Step 1 of 3: Add opt-in fixing Dialog border radius to match Material Spec (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n56090 Step 1 of 3: Add opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-95", "text": "56091 Ensure *_kn.arb files are properly escaped with gen_localizations (a: internationalization, cla: yes, f: cupertino, f: material design, framework)\n\n56190 [ExpansionTile] Wire through expandedCrossAxisAlignment, and expandedAlignment properties to the expanded tile (cla: yes, f: material design, framework, waiting for tree to go green)\n\n56407 fixup! Update grammar in basic.dart #56251 (cla: yes, framework, waiting for tree to go green)\n\n56409 InteractiveViewer Widget (cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n56428 Eagerly wait for the driver extension on FlutterDriver.connect() (a: tests, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-96", "text": "56430 Allow waitUntilFirstFrameRasterized without a root widget (a: tests, cla: yes, framework, waiting for tree to go green)\n\n56494 Wire up autofocus for OutlineButton (cla: yes, f: material design, framework)\n\n56521 Have the physics enforce the scroll position. (cla: yes, framework)\n\n56549 Expose includeSemantics option to RawKeyboardListener (cla: yes, framework)\n\n56582 Update Tab semantics in Cupertino to be the same as Material (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green)\n\n56611 Nested InkWells only show the innermost splash (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-97", "text": "56614 Revert \u201cPaste shows only when content on clipboard (#54902)\u201d (cla: yes, f: cupertino, f: material design, framework)\n\n56641 Add 2 new keyboard types and infer keyboardType from autofill hints (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n56645 Localized new strings added in the redesigned Material Date Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)\n\n56689 Bring back paste button hide behavior (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56710 [web] Unskip TextStyle web tests (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-98", "text": "56732 fix pushAndRemoveUntil incorrectly removes the routes below the first\u2026 (cla: yes, f: routes, framework, waiting for tree to go green)\n\n56794 [web & desktop] Hide all characters in a TextField, when obscureText is true on web & desktop (cla: yes, f: material design, framework, platform-mac, platform-web, waiting for tree to go green)\n\n56806 Revert \u201cBring back paste button hide behavior\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56859 Fix wrong link in description on the platform system channel (cla: yes, framework, waiting for tree to go green)\n\n56895 [Material] Use titleTextStyle from dialog theme for SimpleDialog (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-99", "text": "56906 more docs about diagnostics in release mode (cla: yes, framework)\n\n56922 Bring back paste button hide behavior 2 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56951 Revert \u201cBring back paste button hide behavior 2\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56952 Add more documentation to addTimingsCallback (cla: yes, framework, waiting for tree to go green)\n\n56956 ThemeData.brightness == ThemeData.colorScheme.brightness (cla: yes, f: material design, framework, waiting for tree to go green)\n\n56968 setState() will call scheduleFrame() in post-frame callback now. (a: accessibility, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-100", "text": "57033 Allow updating textAlignVertical (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57036 fix push replacement reports wrong previous route to navigator observer (cla: yes, f: routes, framework, waiting for tree to go green)\n\n57037 Making DropdownButtonFormField to re-render if parent widget changes (cla: yes, f: material design, found in release: 1.17, found in release: 1.18, framework, severe: regression, waiting for tree to go green)\n\n57047 Added Dartpad and Image examples to Slider and RangeSlider docs (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57052 Flutter 1.17.1 cherrypicks (cla: yes, engine, framework, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-101", "text": "57053 Updated gen_missing_localizations to copy the english strings instead of using \u2018TBD\u2019. (cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n57058 1.18.0-11.1.pre beta cherrypicks (cla: yes, engine, framework, team, tool, work in progress; do not review)\n\n57065 Remove deprecated child parameter for NestedScrollView\u2019s overlap managing slivers (cla: yes, f: scrolling, framework, severe: API break, waiting for tree to go green)\n\n57085 Remove redundant transform from showInViewport (cla: yes, framework, waiting for tree to go green)\n\n57094 MouseCursor uses a special class instead of null to defer (cla: yes, framework)\n\n57136 update initial route documentation (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-102", "text": "57139 Bring back paste button hide behavior 3 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n57167 Remove obsolete UpdateCounted prefix (cla: yes, framework, waiting for tree to go green)\n\n57172 Add option for ExpansionTile to maintain the state of its children when collapsed (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57189 Honor the InputDecoratorTheme in the text input fields used by the Date Pickers (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57195 Fix NavigationRail class docs (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)\n\n57201 correctly dispose listeners by image widget (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-103", "text": "57240 [web] Update test skip description. (a: tests, cla: yes, framework, platform-web)\n\n57244 Make Tooltip recover gracefully when context is destroyed. (cla: yes, f: material design, framework)\n\n57247 Improve error message when using popuntil with bad predicate (cla: yes, framework, waiting for tree to go green)\n\n57261 Make _RenderButtonBarRow.constraints null aware (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57264 Prevent WhitelistingTextInputFormatter to return a empty string if the current value does not satisfy the formatter (a: text input, cla: yes, framework, waiting for tree to go green)\n\n57270 add missing deps to flutter_test BUILD.gn (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-104", "text": "57286 Revert \u201c Bring back paste button hide behavior 3\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, platform-web, team, waiting for tree to go green)\n\n57287 remove pending timers list code out of assert message (a: tests, cla: yes, framework)\n\n57291 [ExpansionTile] adds childrenPadding property (cla: yes, f: material design, framework)\n\n57299 add @factory to create* methods (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57319 Fix Autofill example (cla: yes, framework, waiting for tree to go green)\n\n57324 Fix Web asking for clipboard permissions (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-105", "text": "57327 Value Indicator uses Global position (cla: yes, f: material design, framework)\n\n57332 Add autofill support for TextFormField (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57339 fix route annoucement for first route and last route (cla: yes, framework, waiting for tree to go green)\n\n57412 Fixed a typo. (cla: yes, framework, waiting for tree to go green)\n\n57461 Fix segment hit test behavior for segmented control (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n57487 Fix typo in cupertino datepicker error (cla: yes, f: cupertino, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-106", "text": "57500 SnackBarAction.createState() should have return type State (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57511 Step 2 of 3: Change opt-in default for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n57516 Update platform_view.dart (cla: yes, framework, waiting for tree to go green)\n\n57519 Report the accurate local position in (sliding)segmented control hit testing (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n57521 Move paragraph on using Navigation Rail for wide viewports only closer to the top of the API docs. (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-107", "text": "57522 Add doc and test for Container\u2019s hitTest behavior (cla: yes, framework, waiting for tree to go green)\n\n57526 Update the requirements for applying the elevation overlay. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57534 Improve CupertinoDatePicker docs (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n57535 Slider value indicator gets disposed if it is activated (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57574 Have _warpToCurrentIndex() shortcut logic behave properly (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57588 New license page. (a: internationalization, cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-108", "text": "57605 fix navigator observer announcement order (cla: yes, framework, waiting for tree to go green)\n\n57628 Add mouse cursor API to widgets (phase 1) (cla: yes, f: material design, framework)\n\n57644 Adds physics to the TabBar (#57416) (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57670 Add code example for CustomScrollView on how to make it grow in two directions along its scroll axis (cla: yes, framework, waiting for tree to go green)\n\n57696 Functionality to check handlers set on platform channels (a: tests, cla: yes, framework, waiting for tree to go green)\n\n57733 #57730 - Support custom shapes for ListTiles (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-109", "text": "57736 [AppBarTheme] adds centerTitle property (cla: yes, f: material design, framework, severe: new feature, waiting for tree to go green)\n\n57745 Chips text scaling (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57751 Step 2 of 3: Change opt-in default for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n57809 Stopped all animation controllers after toggleable has been detached. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57821 fix a typo in trace events for the image cache (cla: yes, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-110", "text": "57838 Add sample code of GestureDetector with no children (cla: yes, d: api docs, d: examples, documentation, f: gestures, framework, waiting for tree to go green)\n\n57841 Deleted deprecated profile func and profile.dart (cla: yes, framework, waiting for tree to go green)\n\n57868 [CheckboxListTile] exposes contentPadding property of ListTile. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57871 [flutter_tools] rename output LICENSE file to NOTICES and support loading either (cla: yes, framework, team, tool)\n\n58016 Consistent American spelling of \u2018behavior\u2019 (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-111", "text": "58024 fix cupertino page route dismisses hero transition when swipe to the \u2026 (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n58037 [SwitchListTile] adds controlAffinity property (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58050 Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review)\n\n58094 Set upper limit on text scaling for AppBar.title (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58098 Added Documentation for AnimationController.repeat() (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-112", "text": "58117 Minor correction to documentation for buttonColor (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)\n\n58118 Add function to set structured error early (cla: yes, framework)\n\n58131 [flutter] allow loading either NOTICES or LICENSE (cla: yes, framework, waiting for tree to go green)\n\n58151 Error message when size has not been set in RenderBox\u2019s performLayout should be well versed (cla: yes, framework, waiting for tree to go green)\n\n58154 Allow null value for CheckboxListTile (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58202 Build routes even less (cla: yes, framework, waiting for tree to go green)\n\n58203 Various bits of trivial cleanup (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-113", "text": "58204 Error message improvements (cla: yes, framework, waiting for tree to go green)\n\n58206 Dedupe (and update) the \u2013track-widget-creation documentation (cla: yes, framework, waiting for tree to go green)\n\n58209 Pass MaterialButton.disabledElevation into RawMaterialButton (cla: yes, f: material design, framework)\n\n58210 [e2e] make test bindings friendlier to integration tests (a: tests, cla: yes, framework)\n\n58213 update build doc string to advocate avoiding doing tasks other than b\u2026 (cla: yes, d: api docs, framework, waiting for tree to go green)\n\n58258 Helpful assertion for isAlwaysShown error (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-114", "text": "58259 enable Navigator.of to accept a navigator element and return its stat\u2026 (cla: yes, framework, waiting for tree to go green)\n\n58272 Remove callback asserts on FocusableActionDetector (a: desktop, cla: yes, framework)\n\n58284 Send text error in JSON and print in tools (cla: yes, framework, tool)\n\n58344 Revert \u201cAdd clipBehavior to widgets with clipRect\u201d (cla: yes, f: material design, framework, team)\n\n58346 EditableText.bringIntoView calls showOnScreen (cla: yes, framework, waiting for tree to go green)\n\n58350 More information about our error message APIs. (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-115", "text": "58392 iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break)\n\n58430 [flutter_driver] make timeline request in chunks (a: tests, cla: yes, framework, perf: memory)\n\n58448 InkWell uses MaterialStateMouseCursor and defaults to clickable (cla: yes, f: material design, framework)\n\n58456 Update StandardCodec documentation with double alignment (cla: yes, documentation, framework, waiting for tree to go green)\n\n58482 Expose ComputePlatformResolvedLocale (a: internationalization, cla: yes, customer: money (g3), framework, waiting for tree to go green)\n\n58503 Do not assume imageCache is created when handleMemoryPressure is called (a: images, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-116", "text": "58511 Add material page, cupertino page, and transition page classes (cla: yes, framework)\n\n58514 add rasterizer start times to timeline summaries (a: tests, cla: yes, framework, waiting for tree to go green)\n\n58530 [Line Heights] Add textHeightBehavior to SelectableText. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58535 Make _RenderSlider not be a semantics container (a: accessibility, cla: yes, f: focus, f: material design, framework)\n\n58593 Add collapsed height param to SliverAppBar (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-117", "text": "58607 Revert \u201c[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58620 Make debugSemantics available to profile mode (a: accessibility, a: tests, cla: yes, framework, team)\n\n58621 Make it possible to remove nodes from traversal sort. (cla: yes, framework, waiting for tree to go green)\n\n58630 Updated Slider test (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58635 Remove DiagnosticableMixin in favor of Diagnosticable (cla: yes, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-118", "text": "58646 Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58650 Added MaterialStateProperty overlayColor to InkWell (cla: yes, f: material design, framework)\n\n58655 debug mode warning text alignment (a: tests, cla: yes, framework, waiting for tree to go green)\n\n58686 [PageTransitionsBuilder] Fix \u2018ZoomPageTransition\u2019 built more than once (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58708 Add shadowColor to AppBar and AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-119", "text": "58715 Fix custom physics application in TabBarView (a: quality, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)\n\n58723 Drop an unnecessary factory constructor (a: tests, cla: yes, framework, waiting for tree to go green)\n\n58746 add missing arguments for all constructors of ListView and GridView (cla: yes, framework, waiting for tree to go green)\n\n58754 Update build doc (cla: yes, framework, waiting for tree to go green)\n\n58771 [Flutter Driver] Update the comments regarding the default timeout of WaitFor and WaitForAbsent commands (a: tests, cla: yes, framework, waiting for tree to go green)\n\n58780 fix typo in bottom navigation bar docs (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-120", "text": "58808 Introduce inherited navigator observer and refactor hero controller (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n58820 Timeline summary contains CPU, GPU and Memory usage (a: tests, cla: yes, framework, severe: performance, waiting for tree to go green)\n\n58823 Add comments to flutter_driver for timeline class (a: tests, cla: yes, framework)\n\n58829 Step 3 of 3: Remove opt-in for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n58831 Step 3 of 3: Remove opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-121", "text": "58843 Restore some typography tests (cla: yes, f: material design, framework)\n\n58872 Revert \u201cSend text error in JSON and print in tools\u201d (cla: yes, framework, tool)\n\n58971 Update animation.dart - Staggered animations: TweenSequences example (cla: yes, framework)\n\n58994 Send text error in JSON and print in tools (cla: yes, framework, tool, waiting for tree to go green)\n\n59002 Revert \u201cSend text error in JSON and print in tools\u201d (cla: yes, framework, tool)\n\n59008 Update TextTheme.button.letterSpacing from 0.75 to 1.25 per spec (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-122", "text": "59010 Scale input decorator label width (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59014 Handle selection ranges where getBoxesForSelection returns an empty list (cla: yes, framework, waiting for tree to go green)\n\n59015 fix overscroll position if there is sliver before center sliver in cu\u2026 (cla: yes, f: scrolling, framework, waiting for tree to go green)\n\n59018 Send text error in JSON and print in tools (cla: yes, framework, tool, waiting for tree to go green)\n\n59046 Cleanup devicelab framework duplicate (a: tests, cla: yes, engine, framework, team, tool)\n\n59096 Fix docs for Focus.onKey event propagation (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-123", "text": "59108 fix paint order of ink feature (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59111 Remove shape code from Date Picker dialog (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59115 Modernize selection menu appearance (cla: yes, f: cupertino, f: material design, framework, platform-android, waiting for tree to go green)\n\n59117 Make the InkResponse\u2019s focus highlight honor the radius parameter (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59120 Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-124", "text": "59128 Fix typo in scroll_aware_image_provider.dart (cla: yes, framework, waiting for tree to go green)\n\n59156 Add sample code to PositionedTransition (cla: yes, framework)\n\n59162 Rebuild SliverAppBar when forceElevated changes (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59186 Opt out nnbd in packages/flutter (a: accessibility, cla: yes, f: cupertino, f: material design, framework)\n\n59187 Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-125", "text": "59191 [Material] Redesign Time Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)\n\n59196 [Widgets] Add DefaultTextHeightBehavior inherited widget. (cla: yes, framework, waiting for tree to go green)\n\n59219 Typo fixing sweep through packages/flutter. (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n59221 Revert \u201cPrevent WhitelistingTextInputFormatter to return a empty string if the current value does not satisfy the formatter (#57264)\u201d (a: text input, cla: yes, framework, waiting for tree to go green)\n\n59251 [DefaultTabController] adds interactive example (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-126", "text": "59273 Add instructions for updating a localized string (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59279 First pass at keyboard navigation for the Material Date Picker (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59285 Remove Fuchsia BUILD.gn files (a: internationalization, a: tests, cla: yes, framework, team, tool, waiting for tree to go green)\n\n59290 Reverse the semantics order of modal barrier and modal scope (cla: yes, framework)\n\n59310 Dismiss modal routes with a keyboard shortcut (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59317 Implement Comparable (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-127", "text": "59342 Add support for horizontal and vertical double-arrow system cursors (cla: yes, framework, waiting for tree to go green)\n\n59347 Revert \u201c[Widgets] Add DefaultTextHeightBehavior inherited widget.\u201d (cla: yes, framework)\n\n59350 Re-land \u201c[Widgets] Add DefaultTextHeightBehavior inherited widget.\u201d (cla: yes, framework, waiting for tree to go green)\n\n59358 Implement delayed key event synthesis support for framework (a: tests, cla: yes, framework, waiting for tree to go green)\n\n59360 More useful error messages when you use Stack without a textDirection. (cla: yes, framework, waiting for tree to go green)\n\n59363 Add material state mouse cursor to TextField (a: text input, cla: yes, customer: octopod, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-128", "text": "59364 Reland non-breaking \u201cAdd clipBehavior to widgets with clipRect #55977\u201d (cla: yes, f: material design, framework, team)\n\n59379 Handle backspace edgecase in trailing whitespace formatter. (cla: yes, framework, waiting for tree to go green)\n\n59405 [AppBar] adds toolbarHeight property to customize AppBar height (cla: yes, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n59436 Removed an unused static local key from ScrollAction. (cla: yes, framework, waiting for tree to go green)\n\n59474 Add link to ListTile replacement guide in layout error message (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59478 InteractiveViewer mouse scale bug (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-129", "text": "59481 [MergeableMaterial] adds dividerColor property (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59484 Word substitutions (cla: yes, framework, team, tool, waiting for tree to go green)\n\n59500 Update recipes location. (cla: yes, framework, team)\n\n59503 Revert \u201cBuild routes even less\u201d (cla: yes, framework, waiting for tree to go green)\n\n59514 Replace collection\u2019s SetEquality with flutter\u2019s own (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n59521 Remove dependency on package:collection by moving mergeSort into foundation/collections.dart (cla: yes, framework)\n\n59561 Revert \u201cModernize selection menu appearance\u201d (a: internationalization, cla: yes, f: cupertino, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-130", "text": "59571 [flutter_tools] add toggle b and service extension to change platform brightness (cla: yes, framework, tool)\n\n59586 Keyboard navigation for the Material Date Picker grid (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59617 Reland modernize selection menu appearance (a: accessibility, a: internationalization, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n59620 Export characters (cla: yes, framework, waiting for tree to go green)\n\n59631 ReorderableListView should not reorder if there is only a single item present (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59641 [ExpansionPanelList] adds dividerColor property (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-131", "text": "59666 update _isolates_io.dart for better nnbd migration (cla: yes, framework)\n\n59677 Revert \u201cCharacters Package\u201d (cla: yes, f: material design, framework)\n\n59711 fix the widget span layout when text scale factor != 1 (cla: yes, framework, waiting for tree to go green)\n\n59778 Reland Characters Usage (cla: yes, f: material design, framework)\n\n59791 Fix doc for DecoratedBox (cla: yes, framework, waiting for tree to go green)\n\n59803 Add benchmark for Mouse region (web) (a: tests, cla: yes, framework, severe: performance, team, waiting for tree to go green)\n\n59807 Label unnecessarily ellided (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-132", "text": "59856 Make upscaling images opt-in (a: images, cla: yes, framework)\n\n59865 Fix the paste button label in the new version of the filtered text pasting test (cla: yes, f: material design, framework)\n\n59870 Revert \u201cDeprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter\u201d (a: tests, cla: yes, f: cupertino, f: material design, framework, team)\n\n59876 Re-land \u201cDeprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter\u201d (a: tests, cla: yes, f: cupertino, f: material design, framework, team)\n\n59877 Allow detection of images using more memory than necessary (a: debugging, a: error message, a: images, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-133", "text": "59883 Refactor mouse hit testing system: Direct mouse hit test (a: mouse, cla: yes, f: material design, framework, severe: performance, waiting for tree to go green)\n\n59888 Fix the layout calculation in sliver list where the scroll offset cor\u2026 (cla: yes, f: scrolling, framework, waiting for tree to go green)\n\n59900 Fix issue with stack traces getting mangled (a: tests, cla: yes, framework)\n\n59913 [EditableText] Inherit from DefaultTextHeightBehavior (cla: yes, framework)\n\n59937 Update tooltip_theme_test to unblock Dart SDK roll (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59961 Support GTK keycodes (cla: yes, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-134", "text": "59966 Added a filterQuality parameter to texture (a: quality, a: video, cla: yes, framework, waiting for tree to go green)\n\n59981 Revert \u201cImplement Comparable\" (cla: yes, f: material design, framework)\n\n59982 [flutter_driver] Fix tracing of startup events (a: tests, cla: yes, framework)\n\n59986 Revert \u201cfix the widget span layout when text scale factor != 1\u201d (cla: yes, framework)\n\n59992 Revert \u201c[PageTransitionsBuilder] Fix \u2018ZoomPageTransition\u2019 built more than once\u201d (cla: yes, f: material design, framework)\n\n60000 Revert \u201cFix outline button solid path when BorderSize.width is used\u201d (f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-135", "text": "60009 RTL caret position (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60021 reland \u201cfix the widget span layout when text scale factor != 1\u201d and h\u2026 (cla: yes, framework, waiting for tree to go green)\n\n60042 Fix newly added test to opt out of NNBD (cla: yes, f: material design, framework)\n\n60059 Expose the ElevationOverlay functions so applications can use the directly. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60096 Localized new strings added in the redesigned Material Time Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)\n\n60129 fix ink feature tries to get parent transformations when it is in the\u2026 (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-136", "text": "60136 Add more documentation on why tests might hang when using runAsync (a: tests, cla: yes, framework, waiting for tree to go green)\n\n60139 Fix a couple of doc typos. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60141 Tweaking Material Chip a11y semantics to match buttons (a: accessibility, cla: yes, customer: money (g3), f: material design, framework)\n\n60152 Remove unused physicalDepth code (a: tests, cla: yes, customer: fuchsia, framework, waiting for tree to go green)\n\n60219 Update inaccurate documentation for isUtf16Surrogate method (cla: yes, framework, waiting for tree to go green)\n\n60222 Doc Updates (cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-137", "text": "60245 [PageTransitionsBuilder] Reland Fix \u2018ZoomPageTransition\u2019 built more than once (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60248 Ensure FloatingActionButtonLocations are always within safe interactive areas (a: quality, cla: yes, customer: money (g3), f: material design, framework, waiting for tree to go green)\n\n60316 Don\u2019t access clipboard passively on iOS (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60320 Have AndroidViewController extend PlatformViewController and add support for hybrid platform views (cla: yes, framework, team, waiting for tree to go green)\n\n60329 [Semantics] Update bottom nav semantics tests to use matches semantics (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-138", "text": "60367 Do not return partial semantics from tester.getSemantics (a: tests, cla: yes, framework, waiting for tree to go green)\n\n60379 Do not call Picture.toImage on web during shader warm-up (cla: yes, framework, waiting for tree to go green)\n\n60383 [Material] Add property to theme dial label colors on Time Picker (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60394 Show hint when label is floating (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60396 Fixed a problem with date calculations that caused a test to fail in a non-US time zone. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60478 Fix remaining holes in stack trace demangling (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-139", "text": "60481 Adding ColorFiltered \u201cWidget of the week\u201d video to docs. (cla: yes, framework, waiting for tree to go green)\n\n60482 Fix docs for TabBar indicator (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)\n\n60497 Keyboard navigation fo the Material Date Range Picker (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60523 InteractiveViewer scroll direction (cla: yes, framework, waiting for tree to go green)\n\n60530 Revert \u201cfix paint order of ink feature (#59108)\u201d (cla: yes, f: material design, framework)\n\n60532 InteractiveViewer with a changing screen size (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-140", "text": "60536 Issues/58665 reland and prevent the material widget from absorbing gesture (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60545 Annotate RawMaterialButton as a Material > Button category. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60549 RangeSlider overlap properly (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60552 New license page with fix for zero licenses. (a: internationalization, f: material design, framework)\n\n60563 ListTile mouse pointer fix (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60586 Issues/58053 - Set default textBaseline to alphabetic in the Table widget (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-141", "text": "60611 1.17.5 CP: Fix daemon device discovery crash when Xcode isn\u2019t installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n60621 Add a flag to toggle navigator route update reporting (cla: yes, f: routes, framework, waiting for tree to go green)\n\n60645 Revert \u201cTweaking Material Chip a11y semantics to match buttons (#60141)\u201d (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60660 In layers_test create a canvas to start recording on the PictureRecorder (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-142", "text": "60684 Enable shouldCapTextScaleForTitle by default in AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60693 Typo sweep (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)\n\n60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60730 Remove superfluous GestureDetector. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60734 Add comment explain dispatchEvent override (a: tests, cla: yes, documentation, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-143", "text": "60764 Support customizing colors for rows in DataTable (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60832 Fix typo in popup_menu.dart (cla: yes, f: material design, framework)\n\n60836 Expose height and width factor in AnimatedAlign (a: animation, cla: yes, framework, waiting for tree to go green)\n\n60915 [AppBar] adds leadingWidth property to customize width of leading widget (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60916 Revert \u201cFix remaining holes in stack trace demangling\u201d (a: tests, cla: yes, framework)\n\n60925 fix semantics to only send relevant node update (a: accessibility, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-144", "text": "60929 Adding CupertinoApp Sample templates (cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)\n\n60930 Add embedderId to PointerEvent (cla: yes, framework)\n\n60934 Skip Audit - Scheduler and Services libraries (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n60936 Skip Audit - Widgets Library (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n60956 Assert valid composing TextRange (cla: yes, framework, waiting for tree to go green)\n\n60991 [Material] Misc fixes for time picker input mode (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-145", "text": "60996 Reland \u201cFix remaining holes in stack trace demangling\u201d\u201d (a: tests, cla: yes, framework)\n\n61000 Remove shouldCapTextScaleForTitle from AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green)\n\n61010 Revert \u201cAdd embedderId to PointerEvent (#60930)\u201d (cla: yes, engine, framework, team)\n\n61012 prevents sliver app bar from changing semantics tree when it is not n\u2026 (a: accessibility, f: material design, framework, waiting for tree to go green)\n\n61013 Re-land gesture detection for hybrid platform views (engine, framework, team)\n\n61019 InteractiveViewer pan axis locking (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-146", "text": "61033 Do not cache itemBuilder calls in a GridView (cla: yes, framework, waiting for tree to go green)\n\n61035 Fix bug where dispose message requires a map (cla: yes, framework)\n\n61102 Fix PointerAddedEvent handling in LiveTestWidgetsFlutterBinding (a: tests, cla: yes, framework)\n\n61109 Revert \u201cExpose height and width factor in AnimatedAlign \u201c (cla: yes, framework)\n\n61118 Fix #61102 line wrapping (a: tests, cla: yes, framework, waiting for tree to go green)\n\nteam - 283 pull request(s)\n\n42940 Revise Action API (cla: yes, f: cupertino, f: material design, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-147", "text": "52507 enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\n52791 Read custom app project name from gradle.properties (cla: yes, team, tool)\n\n53096 Devicelab tests (Chrome run, Web compile) for New Flutter Gallery (cla: yes, team, waiting for tree to go green)\n\n53358 Disable flutter_driver_screenshot_test_ios. (cla: yes, team, waiting for tree to go green)\n\n53374 [gen_l10n] Fallback feature for untranslated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-148", "text": "53381 Characters Package (a: text input, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)\n\n53422 Rename GPU thread to raster thread in API docs (a: tests, cla: yes, framework, team, tool, waiting for tree to go green)\n\n53600 Restructure the Windows app template (cla: yes, team, tool)\n\n53616 Improving A11y for Flutter Gallery Demos (a: accessibility, a: tests, cla: yes, f: material design, framework, team)\n\n53655 Pass showCheckboxColumn parameter to DataTable (a: quality, cla: yes, f: material design, framework, team)\n\n53809 [flutter_tools] update to package vm_service: electric boogaloo (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-149", "text": "53824 [gen_l10n] Add option for deferred loading on the web (a: internationalization, cla: yes, team, tool, waiting for tree to go green)\n\n53837 Skip Audits (2) (a: tests, cla: yes, f: cupertino, framework, platform-web, team, waiting for tree to go green)\n\n53868 [gen_l10n] Add scriptCode handling (a: internationalization, cla: yes, severe: new feature, team, tool)\n\n53879 Collect chrome://tracing data in Web benchmarks (cla: yes, team, work in progress; do not review)\n\n53880 Use no locale as synonym for nb (a: internationalization, cla: yes, customer: dream (g3), f: cupertino, f: material design, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-150", "text": "53888 Add visualDensity and focus support to ListTile (a: desktop, cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n53916 Slider rebase work (cla: yes, f: material design, framework, team)\n\n53951 Revert \u201c[flutter_tools] update to package vm_service: electric boogaloo\u201d (cla: yes, team, tool)\n\n53952 [web] Fix race condition in widget benchmarks (cla: yes, platform-web, team)\n\n53954 [gen_l10n] Fix plural parsing for translated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green)\n\n53957 [flutter_tools] Migrate to vm service 3 (reland): electric boogaloo (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-151", "text": "53963 revive the android_views test (cla: yes, team, waiting for tree to go green)\n\n53967 Temporarily mark web benchmarks as flaky (cla: yes, team)\n\n53969 Use \u201cmeasured_frame\u201d instead of \u201cCrRendererMain\u201d to detect process ID (cla: yes, team)\n\n53980 Test creation of Android AlertDialogs with a platform view context (cla: yes, team, waiting for tree to go green)\n\n54015 Update roll_dev to work with new version numbers (cla: yes, team)\n\n54023 disable MotionEvents test (cla: yes, team)\n\n54114 Revert \u201c[flutter_tools] Migrate to vm service 3 (reland): electric boogaloo\u201d (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-152", "text": "54122 disable the \u201cgpu\u201d tracing category (cla: yes, team)\n\n54125 remove flutter_test quiver dep, use fake_async and clock instead (a: tests, cla: yes, framework, team)\n\n54132 [flutter_tools] Migrate to package:vm_service 4: trigonometric boogaloo (cla: yes, team, tool)\n\n54144 drop image package dependency for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54150 Don\u2019t checkout master in roll_dev (cla: yes, team)\n\n54152 [flutter_tools] Remove fromPlatform from tests (cla: yes, team, tool, waiting for tree to go green)\n\n54155 [cleanup] Remove unused script (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-153", "text": "54163 Enable the android_views AlertDialog test (cla: yes, team)\n\n54176 Fix newly reported prefer_const_constructors lints. (a: internationalization, cla: yes, d: examples, team, tool)\n\n54181 Roll pinned xml and petitparser versions (cla: yes, team, waiting for tree to go green)\n\n54185 [gen_l10n] Handle single, double quotes, and dollar signs in strings (cla: yes, team, tool, waiting for tree to go green)\n\n54206 Updating codeowners for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54212 Reverse dependency between services and scheduler (a: tests, cla: yes, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-154", "text": "54214 re-enable android_view_test (cla: yes, team, waiting for tree to go green)\n\n54219 Remove escape dollar parameter in localizations_utils (a: internationalization, cla: yes, team, waiting for tree to go green)\n\n54227 [windows] Adds support for keyboard mapping. (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54236 Disable tracing for non-frame based Web benchmarks (cla: yes, team, waiting for tree to go green)\n\n54247 [versions] update versions (cla: yes, team)\n\n54312 fix and re-land \u201cre-enable android_view_test (#54214)\u201d (cla: yes, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-155", "text": "54317 PageStorage sample (cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green)\n\n54322 Skip Audit - Material Library (a: quality, a: tests, cla: yes, f: material design, framework, platform-web, team, waiting for tree to go green)\n\n54334 [versions] update all flutter versions (cla: yes, team, waiting for tree to go green)\n\n54387 Revert \u201cfix and re-land \u201cre-enable android_view_test (#54214)\u201d\u201d (cla: yes, team)\n\n54396 [web] Don\u2019t collect trace info in the color grid benchmark (cla: yes, platform-web, team)\n\n54401 Cleanup in gen_l10n files (a: internationalization, cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-156", "text": "54403 Reland re-enable android_view_test #54214 (cla: yes, team, waiting for tree to go green)\n\n54407 Don\u2019t import plugins that don\u2019t support android in settings.gradle (a: accessibility, cla: yes, d: examples, team, tool, waiting for tree to go green)\n\n54471 fix visual density prefer_const_constructors lint (cla: yes, team)\n\n54478 Fix environment leakage in doctor_test (cla: yes, team, team: flakes, team: infra, tool)\n\n54480 Revert \u201c[flutter_driver] Add SceneDisplayLag stats to timeline summar\u2026 (a: tests, cla: yes, framework, team)\n\n54490 [flutter_driver] Reland add SceneDisplayLag stats to timeline summary (a: tests, cla: yes, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-157", "text": "54494 Add A/B test mode to local devicelab runner (cla: yes, severe: performance, team, waiting for tree to go green)\n\n54497 [devicelab] Do not wait for connections after process has exited (cla: yes, team, waiting for tree to go green)\n\n54505 mark web benchmarks as not flaky (cla: yes, team)\n\n54522 Reland \u201cAdd API to services package that overrides HTTP ban (#54243)\u201d (cla: yes, framework, team, waiting for tree to go green)\n\n54617 [flutter_tools] initial support for enable experiment, run, apk, ios, macos (a: null-safety, cla: yes, team, tool)\n\n54618 Revert \u201c[devicelab] Do not wait for connections after process has exited\u201d (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-158", "text": "54676 print intermediate and raw A/B results when not silent (cla: yes, team)\n\n54678 Make Web shard count configurable via WEB_SHARD_COUNT (cla: yes, team, waiting for tree to go green)\n\n54691 Migrate Runner project base configuration (cla: yes, d: examples, t: xcode, team, tool)\n\n54697 fix APK location for devicelab (cla: yes, team)\n\n54703 fix run release test APK location (cla: yes, team)\n\n54783 [flutter_tools] Fix roll dev script, add tests (cla: yes, team, tool, waiting for tree to go green)\n\n54787 force upgraded package dependencies (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-159", "text": "54787 force upgraded package dependencies (cla: yes, team)\n\n54798 ToDo Audit - Cupertino+ Library (a: accessibility, cla: yes, d: examples, f: cupertino, framework, team, waiting for tree to go green)\n\n54883 Remove outliers in Web benchmarks to reduce noise; add visualization (cla: yes, team)\n\n54887 Specify the devicelab task simulator runtime to support ios_app_with_extensions (cla: yes, team)\n\n58499 [devicelab] mark ios transition_perf as non-flaky (cla: yes, team, waiting for tree to go green)\n\n58504 Revert \u201cRemove outdated disable_input_output_paths from example project Podfiles\u201d (cla: yes, d: examples, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-178", "text": "58513 benchmark updating many child layers (cla: yes, team)\n\n58522 Build iOS apps using Swift Packages (cla: yes, d: examples, team, tool, waiting for tree to go green)\n\n58524 Remove outdated disable_input_output_paths from example project Podfiles (cla: yes, d: examples, team, waiting for tree to go green)\n\n58538 Don\u2019t elapse real time during IOSDevice.startApp tests (cla: yes, team, tool, waiting for tree to go green)\n\n58541 Fake out DeviceManager.getDevices in test (cla: yes, team, tool, waiting for tree to go green)\n\n58544 Use fake command in analytics test (cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-179", "text": "58549 Revert \u201cBuild iOS apps using Swift Packages\u201d (cla: yes, d: examples, team, tool)\n\n58607 Revert \u201c[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58617 Remove already covered devicelab test: tiles_scroll_perf_iphonexs__timeline_summary (cla: yes, team)\n\n58620 Make debugSemantics available to profile mode (a: accessibility, a: tests, cla: yes, framework, team)\n\n58622 Don\u2019t elapse real time during IOSDevice.startApp tests (cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-180", "text": "58635 Remove DiagnosticableMixin in favor of Diagnosticable (cla: yes, framework, team, waiting for tree to go green)\n\n58644 Add FakeAsync to delay tests (cla: yes, team, tool)\n\n58645 Move create project build tests to permeable command shard (cla: yes, team, tool)\n\n58646 Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58648 Add iOS new gallery perf test (cla: yes, severe: performance, team, waiting for tree to go green)\n\n58649 Add per-test timeout to Cirrus tool general tests (cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-181", "text": "58656 Add the ability to ignore lines depending on comments (cla: yes, team, tool)\n\n58701 Increase delay to verify cause of flakiness (cla: yes, team, waiting for tree to go green)\n\n58747 Add Android device build/OS/API Level information to logs. (cla: yes, team)\n\n58783 fix typo in macrobenchmarks/lib/main (cla: yes, team)\n\n58799 Revert \u201cIncrease delay to verify cause of flakiness\u201d (cla: yes, team, waiting for tree to go green)\n\n58838 Turn off flaky indicator for flutter_gallery__back_button_memory and flutter_gallery__memory_nav (cla: yes, team)\n\n58986 Line break for devicelab/bin/run.dart help info (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-182", "text": "59009 Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green)\n\n59013 Make non-flaky tests as such (cla: yes, team, waiting for tree to go green)\n\n59025 Revert \u201cBuild iOS apps using Swift Packages\u201d (cla: yes, d: examples, team, tool)\n\n59044 Move iOS Podfile logic into tool (cla: yes, platform-ios, team, tool, waiting for tree to go green)\n\n59046 Cleanup devicelab framework duplicate (a: tests, cla: yes, engine, framework, team, tool)\n\n59120 Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-183", "text": "59184 [flutter_tools] remove globals from compilers (cla: yes, team, tool)\n\n59209 Support .flutter-plugins-dependencies (cla: yes, platform-ios, team, tool, waiting for tree to go green)\n\n59215 [flutter_tools] Update roll_dev.dart (cla: yes, team, tool, waiting for tree to go green)\n\n59257 fix tree (cla: yes, team)\n\n59267 Characters package (cla: yes, team, waiting for tree to go green)\n\n59276 Add \u2013device-id option for devicelab/bin/run.dart (cla: yes, team)\n\n59280 test flutter framework with null-safety (cla: yes, d: examples, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-184", "text": "59283 [versions] Update all the versions (cla: yes, team, tool)\n\n59285 Remove Fuchsia BUILD.gn files (a: internationalization, a: tests, cla: yes, framework, team, tool, waiting for tree to go green)\n\n59291 [flutter_tools] ensure generated entrypoint matches test and web entrypoint language version (cla: yes, team, tool)\n\n59364 Reland non-breaking \u201cAdd clipBehavior to widgets with clipRect #55977\u201d (cla: yes, f: material design, framework, team)\n\n59365 Remove flutter_goldens_client package dependency from tool (cla: yes, team, tool, waiting for tree to go green)\n\n59484 Word substitutions (cla: yes, framework, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-185", "text": "59500 Update recipes location. (cla: yes, framework, team)\n\n59508 Remove last references to ideviceinstaller (cla: yes, platform-ios, team, tool, waiting for tree to go green)\n\n59539 [flutter_tools] For l10n with deferred loading, use loadLibrary for non-web too (cla: yes, team, tool)\n\n59617 Reland modernize selection menu appearance (a: accessibility, a: internationalization, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n59784 [devicelab] fix concurrent hot reload test: stderr != failure (cla: yes, team)\n\n59803 Add benchmark for Mouse region (web) (a: tests, cla: yes, framework, severe: performance, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-186", "text": "59832 [versions] update all versions (cla: yes, team, tool, waiting for tree to go green)\n\n59867 Replace ANDROID_HOME user messages with ANDROID_SDK_ROOT (cla: yes, platform-android, team, tool, waiting for tree to go green)\n\n59870 Revert \u201cDeprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter\u201d (a: tests, cla: yes, f: cupertino, f: material design, framework, team)\n\n59876 Re-land \u201cDeprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter\u201d (a: tests, cla: yes, f: cupertino, f: material design, framework, team)\n\n59896 gitignore .last_build_id file in the repo (cla: yes, d: examples, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-187", "text": "59907 port devicelab from idevice_id -> xcdevices (cla: yes, team, tool)\n\n59932 Add SkSL shader warm-up tests to Flutter gallery (cla: yes, perf: speed, severe: performance, team, waiting for tree to go green)\n\n59961 Support GTK keycodes (cla: yes, framework, team)\n\n60015 Fix the paths in keyboard map templates (cla: yes, team)\n\n60041 Use assemble build system directly for build ios-framework (cla: yes, team, tool)\n\n60045 Check for Xcode 11 and Xcode 12 directory names in build_ios_framework_module_test (a: tests, cla: yes, platform-ios, team)\n\n60127 [versions] update all versions and fix tool tests (cla: yes, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-188", "text": "60185 [gen_l10n] Update the arb filename parsing logic (a: internationalization, cla: yes, team, tool)\n\n60228 Make module run script names unique (a: existing-apps, cla: yes, platform-ios, team, tool)\n\n60320 Have AndroidViewController extend PlatformViewController and add support for hybrid platform views (cla: yes, framework, team, waiting for tree to go green)\n\n60336 Heavy Widget construction and destruction performance test (a: tests, cla: yes, team)\n\n60407 benchmarks/macrobenchmarks platforme file update (cla: yes, team)\n\n60412 Simplify the animation control for macrobenchmarks test case (cla: yes, team)\n\n60415 restore imagefiltered_transform_animation_perf__timeline_summary benchmark (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-189", "text": "60490 Experiment with tester on the flutter_tools general shard (cla: yes, team)\n\n60504 Update new gallery HEAD commit (cla: yes, team)\n\n60507 Fix commit hash gallery (cla: yes, team)\n\n60553 Mark non-flaky test as such (cla: yes, team, waiting for tree to go green)\n\n60554 Web macrobenchmark: bench_mouse_region_grid_hover now tests hitTestDuration (cla: yes, team, waiting for tree to go green)\n\n60611 1.17.5 CP: Fix daemon device discovery crash when Xcode isn\u2019t installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-190", "text": "60638 fix pubspec dependencies (cla: yes, team)\n\n60652 Upgrade packages (team)\n\n60668 Roll tester version (cla: yes, team)\n\n60693 Typo sweep (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)\n\n60723 add a timeout to dashing (cla: yes, team)\n\n60774 await TimelineSummary.write***ToFile (a: tests, cla: yes, team)\n\n60929 Adding CupertinoApp Sample templates (cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-191", "text": "60934 Skip Audit - Scheduler and Services libraries (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n60936 Skip Audit - Widgets Library (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n61010 Revert \u201cAdd embedderId to PointerEvent (#60930)\u201d (cla: yes, engine, framework, team)\n\n61013 Re-land gesture detection for hybrid platform views (engine, framework, team)\n\n61025 benchmark memory usage for grid view of memory intensive widgets (cla: yes, perf: memory, team, waiting for tree to go green)\n\n61034 Roll packages (cla: yes, team, tool)\n\n61062 Mark new test as not flaky (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-192", "text": "61064 Handle git dependencies, roll packages to get transitive deps of flutter_gallery (cla: yes, team, tool, waiting for tree to go green)\n\n61128 Update tester to latest version (team)\n\nf: material design - 204 pull request(s)\n\n42940 Revise Action API (cla: yes, f: cupertino, f: material design, framework, team)\n\n50412 Make CircularProgressIndicator\u2019s animation match native (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n50673 Update AppBar MediaQuery documentation (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-193", "text": "50915 Implement barrierDismissible for showCupertinoDialog (a: internationalization, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n51465 Support New and Custom FAB Locations (cla: yes, f: material design, framework, waiting for tree to go green)\n\n51581 Fix outline button solid path when BorderSize.width is used (cla: yes, f: material design, framework, platform-web, waiting for tree to go green)\n\n52126 Autofill Part 1 (cla: yes, customer: peppermint, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-194", "text": "52507 enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\n53381 Characters Package (a: text input, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)\n\n53616 Improving A11y for Flutter Gallery Demos (a: accessibility, a: tests, cla: yes, f: material design, framework, team)\n\n53655 Pass showCheckboxColumn parameter to DataTable (a: quality, cla: yes, f: material design, framework, team)\n\n53880 Use no locale as synonym for nb (a: internationalization, cla: yes, customer: dream (g3), f: cupertino, f: material design, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-195", "text": "53888 Add visualDensity and focus support to ListTile (a: desktop, cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n53916 Slider rebase work (cla: yes, f: material design, framework, team)\n\n53945 [Material] Add focus, highlight, and keyboard shortcuts to Slider (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54110 Added \u2018barrierColor\u2019 and \u2018useSafeArea\u2019 parameters to the showDialog function. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54119 Reland \u201ciOS UITextInput autocorrection prompt (#45354)\u201d (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-196", "text": "54128 fixes isAlwaysShown material scrollbar.dart (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54140 iOS Text Selection Menu Overflow (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-ios)\n\n54171 System mouse cursors (a: tests, cla: yes, f: material design, framework)\n\n54322 Skip Audit - Material Library (a: quality, a: tests, cla: yes, f: material design, framework, platform-web, team, waiting for tree to go green)\n\n54394 replace simple empty Container with w & h with SizedBox (a: accessibility, cla: yes, f: cupertino, f: material design, framework)\n\n54481 Make TextFormFieldState.didChange change text fields value (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-197", "text": "54640 Allow WIllPopCallback to return null or false to veto the pop. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54674 Add searchFieldStyle (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54706 Wire in focusNode, focusColor, autofocus, and dropdownColor to DropdownButtonFormField (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54714 [Material] Added BottomNavigationBarTheme (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54902 Paste shows only when content on clipboard (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-198", "text": "54919 Add MediaQueryData.navigationMode and allow controls to be focused when disabled. (cla: yes, customer: fun (g3), f: material design, framework)\n\n54978 Expose current day as a parameter to showDatePicker. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54985 Step 2: SnackBarBehavior.floating offset fix by default (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55064 Step 3: Removes temporary flag for SnackBarBehavior.floating offset fix (cla: yes, f: material design, framework)\n\n55201 Migrating old Gallery to new Slider (cla: yes, f: material design, team)\n\n55221 [ExpansionTile] adds padding property (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-199", "text": "55260 Fine tune the Y offset of OutlineInputBorder\u2019s floating label (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55408 Fix InputDecorator intrinsic height reporting (a: text input, cla: yes, f: material design, f: scrolling, framework, severe: regression, waiting for tree to go green)\n\n55415 Customizable obscuringCharacter (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n55416 Fix link to material spec (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55482 Enable configuring minHeight for LinearProgressIndicator and update default to match spec (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-200", "text": "55484 Revert \u201cFix FlutterError.onError in debug mode (#53843)\u201d (a: tests, cla: yes, f: material design, framework)\n\n55599 Default to use V2 Slider (cla: yes, f: material design, framework)\n\n55636 Prevent use of TextInputType.text when also using TextInputAction.newLine via assert (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n55651 Fix behavior change due to incorrect initial floating setting (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55761 Add a property to Material icon button to customize the splash radius (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-201", "text": "55775 TextField enabled fix (a: text input, cla: yes, f: material design, framework, waiting for tree to go green)\n\n55782 Removing Deprecated flag for Gallery (cla: yes, f: material design, team, waiting for tree to go green)\n\n55789 ToDo Audit - Material Library+ (cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n55829 allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n55832 Prevent ModalBottomSheet from rebuilding its child (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-202", "text": "55857 Removed useV2 Slider flag (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55902 Fix default opacity assignments for unselected and selected icons in NavigationRail (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55911 Text field height fix (a: text input, cla: yes, f: inspector, f: material design, framework, waiting for tree to go green)\n\n55939 Implementation of the Material Date Range Picker. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n55977 Add clipBehavior to widgets with clipRect (cla: yes, f: material design, framework, severe: API break, team, will affect goldens)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-203", "text": "56084 Step 1 of 3: Add opt-in fixing Dialog border radius to match Material Spec (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n56090 Step 1 of 3: Add opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green)\n\n56091 Ensure *_kn.arb files are properly escaped with gen_localizations (a: internationalization, cla: yes, f: cupertino, f: material design, framework)\n\n56190 [ExpansionTile] Wire through expandedCrossAxisAlignment, and expandedAlignment properties to the expanded tile (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-204", "text": "56409 InteractiveViewer Widget (cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n56494 Wire up autofocus for OutlineButton (cla: yes, f: material design, framework)\n\n56611 Nested InkWells only show the innermost splash (cla: yes, f: material design, framework, waiting for tree to go green)\n\n56614 Revert \u201cPaste shows only when content on clipboard (#54902)\u201d (cla: yes, f: cupertino, f: material design, framework)\n\n56641 Add 2 new keyboard types and infer keyboardType from autofill hints (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-205", "text": "56645 Localized new strings added in the redesigned Material Date Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)\n\n56689 Bring back paste button hide behavior (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56794 [web & desktop] Hide all characters in a TextField, when obscureText is true on web & desktop (cla: yes, f: material design, framework, platform-mac, platform-web, waiting for tree to go green)\n\n56806 Revert \u201cBring back paste button hide behavior\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56895 [Material] Use titleTextStyle from dialog theme for SimpleDialog (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-206", "text": "56922 Bring back paste button hide behavior 2 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56951 Revert \u201cBring back paste button hide behavior 2\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56956 ThemeData.brightness == ThemeData.colorScheme.brightness (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57033 Allow updating textAlignVertical (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57037 Making DropdownButtonFormField to re-render if parent widget changes (cla: yes, f: material design, found in release: 1.17, found in release: 1.18, framework, severe: regression, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-207", "text": "57047 Added Dartpad and Image examples to Slider and RangeSlider docs (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57053 Updated gen_missing_localizations to copy the english strings instead of using \u2018TBD\u2019. (cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n57139 Bring back paste button hide behavior 3 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n57172 Add option for ExpansionTile to maintain the state of its children when collapsed (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57189 Honor the InputDecoratorTheme in the text input fields used by the Date Pickers (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-208", "text": "57195 Fix NavigationRail class docs (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)\n\n57244 Make Tooltip recover gracefully when context is destroyed. (cla: yes, f: material design, framework)\n\n57261 Make _RenderButtonBarRow.constraints null aware (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57286 Revert \u201c Bring back paste button hide behavior 3\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, platform-web, team, waiting for tree to go green)\n\n57291 [ExpansionTile] adds childrenPadding property (cla: yes, f: material design, framework)\n\n57299 add @factory to create* methods (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-209", "text": "57324 Fix Web asking for clipboard permissions (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57327 Value Indicator uses Global position (cla: yes, f: material design, framework)\n\n57332 Add autofill support for TextFormField (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57500 SnackBarAction.createState() should have return type State (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57511 Step 2 of 3: Change opt-in default for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-210", "text": "57521 Move paragraph on using Navigation Rail for wide viewports only closer to the top of the API docs. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57526 Update the requirements for applying the elevation overlay. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57535 Slider value indicator gets disposed if it is activated (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57574 Have _warpToCurrentIndex() shortcut logic behave properly (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57576 Add Web Benchmarks for Flutter Gallery (Flutter Side) \u2014 1/4 (cla: yes, f: cupertino, f: material design, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-211", "text": "57588 New license page. (a: internationalization, cla: yes, f: material design, framework)\n\n57628 Add mouse cursor API to widgets (phase 1) (cla: yes, f: material design, framework)\n\n57644 Adds physics to the TabBar (#57416) (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57733 #57730 - Support custom shapes for ListTiles (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57736 [AppBarTheme] adds centerTitle property (cla: yes, f: material design, framework, severe: new feature, waiting for tree to go green)\n\n57745 Chips text scaling (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-212", "text": "57751 Step 2 of 3: Change opt-in default for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n57809 Stopped all animation controllers after toggleable has been detached. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n57868 [CheckboxListTile] exposes contentPadding property of ListTile. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58016 Consistent American spelling of \u2018behavior\u2019 (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58024 fix cupertino page route dismisses hero transition when swipe to the \u2026 (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-213", "text": "58037 [SwitchListTile] adds controlAffinity property (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58050 Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review)\n\n58094 Set upper limit on text scaling for AppBar.title (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58117 Minor correction to documentation for buttonColor (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)\n\n58154 Allow null value for CheckboxListTile (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-214", "text": "58209 Pass MaterialButton.disabledElevation into RawMaterialButton (cla: yes, f: material design, framework)\n\n58258 Helpful assertion for isAlwaysShown error (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n58344 Revert \u201cAdd clipBehavior to widgets with clipRect\u201d (cla: yes, f: material design, framework, team)\n\n58448 InkWell uses MaterialStateMouseCursor and defaults to clickable (cla: yes, f: material design, framework)\n\n58530 [Line Heights] Add textHeightBehavior to SelectableText. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58535 Make _RenderSlider not be a semantics container (a: accessibility, cla: yes, f: focus, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-215", "text": "58593 Add collapsed height param to SliverAppBar (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58607 Revert \u201c[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58630 Updated Slider test (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58646 Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58650 Added MaterialStateProperty overlayColor to InkWell (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-216", "text": "58686 [PageTransitionsBuilder] Fix \u2018ZoomPageTransition\u2019 built more than once (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58708 Add shadowColor to AppBar and AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58715 Fix custom physics application in TabBarView (a: quality, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)\n\n58780 fix typo in bottom navigation bar docs (cla: yes, f: material design, framework, waiting for tree to go green)\n\n58808 Introduce inherited navigator observer and refactor hero controller (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-217", "text": "58829 Step 3 of 3: Remove opt-in for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n58831 Step 3 of 3: Remove opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green)\n\n58843 Restore some typography tests (cla: yes, f: material design, framework)\n\n59008 Update TextTheme.button.letterSpacing from 0.75 to 1.25 per spec (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59010 Scale input decorator label width (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-218", "text": "59108 fix paint order of ink feature (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59111 Remove shape code from Date Picker dialog (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59115 Modernize selection menu appearance (cla: yes, f: cupertino, f: material design, framework, platform-android, waiting for tree to go green)\n\n59117 Make the InkResponse\u2019s focus highlight honor the radius parameter (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59120 Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-219", "text": "59160 Remove unused import which shares prefix name with a used import. (a: internationalization, cla: yes, f: cupertino, f: material design)\n\n59162 Rebuild SliverAppBar when forceElevated changes (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59186 Opt out nnbd in packages/flutter (a: accessibility, cla: yes, f: cupertino, f: material design, framework)\n\n59187 Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)\n\n59191 [Material] Redesign Time Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-220", "text": "59219 Typo fixing sweep through packages/flutter. (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n59251 [DefaultTabController] adds interactive example (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59273 Add instructions for updating a localized string (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59279 First pass at keyboard navigation for the Material Date Picker (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59310 Dismiss modal routes with a keyboard shortcut (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59317 Implement Comparable (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-221", "text": "59363 Add material state mouse cursor to TextField (a: text input, cla: yes, customer: octopod, f: material design, framework, waiting for tree to go green)\n\n59364 Reland non-breaking \u201cAdd clipBehavior to widgets with clipRect #55977\u201d (cla: yes, f: material design, framework, team)\n\n59405 [AppBar] adds toolbarHeight property to customize AppBar height (cla: yes, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n59474 Add link to ListTile replacement guide in layout error message (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59481 [MergeableMaterial] adds dividerColor property (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-222", "text": "59561 Revert \u201cModernize selection menu appearance\u201d (a: internationalization, cla: yes, f: cupertino, f: material design, framework)\n\n59586 Keyboard navigation for the Material Date Picker grid (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59617 Reland modernize selection menu appearance (a: accessibility, a: internationalization, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n59631 ReorderableListView should not reorder if there is only a single item present (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59641 [ExpansionPanelList] adds dividerColor property (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-223", "text": "59677 Revert \u201cCharacters Package\u201d (cla: yes, f: material design, framework)\n\n59778 Reland Characters Usage (cla: yes, f: material design, framework)\n\n59807 Label unnecessarily ellided (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59865 Fix the paste button label in the new version of the filtered text pasting test (cla: yes, f: material design, framework)\n\n59870 Revert \u201cDeprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter\u201d (a: tests, cla: yes, f: cupertino, f: material design, framework, team)\n\n59876 Re-land \u201cDeprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter\u201d (a: tests, cla: yes, f: cupertino, f: material design, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-224", "text": "59883 Refactor mouse hit testing system: Direct mouse hit test (a: mouse, cla: yes, f: material design, framework, severe: performance, waiting for tree to go green)\n\n59937 Update tooltip_theme_test to unblock Dart SDK roll (cla: yes, f: material design, framework, waiting for tree to go green)\n\n59981 Revert \u201cImplement Comparable\" (cla: yes, f: material design, framework)\n\n59992 Revert \u201c[PageTransitionsBuilder] Fix \u2018ZoomPageTransition\u2019 built more than once\u201d (cla: yes, f: material design, framework)\n\n60000 Revert \u201cFix outline button solid path when BorderSize.width is used\u201d (f: material design, framework)\n\n60009 RTL caret position (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-225", "text": "60042 Fix newly added test to opt out of NNBD (cla: yes, f: material design, framework)\n\n60059 Expose the ElevationOverlay functions so applications can use the directly. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60096 Localized new strings added in the redesigned Material Time Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)\n\n60129 fix ink feature tries to get parent transformations when it is in the\u2026 (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60139 Fix a couple of doc typos. (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-226", "text": "60141 Tweaking Material Chip a11y semantics to match buttons (a: accessibility, cla: yes, customer: money (g3), f: material design, framework)\n\n60245 [PageTransitionsBuilder] Reland Fix \u2018ZoomPageTransition\u2019 built more than once (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60248 Ensure FloatingActionButtonLocations are always within safe interactive areas (a: quality, cla: yes, customer: money (g3), f: material design, framework, waiting for tree to go green)\n\n60316 Don\u2019t access clipboard passively on iOS (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60329 [Semantics] Update bottom nav semantics tests to use matches semantics (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-227", "text": "60383 [Material] Add property to theme dial label colors on Time Picker (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60394 Show hint when label is floating (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60396 Fixed a problem with date calculations that caused a test to fail in a non-US time zone. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60405 Date picker string translations (a: internationalization, cla: yes, f: cupertino, f: material design, waiting for tree to go green)\n\n60482 Fix docs for TabBar indicator (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-228", "text": "60497 Keyboard navigation fo the Material Date Range Picker (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60530 Revert \u201cfix paint order of ink feature (#59108)\u201d (cla: yes, f: material design, framework)\n\n60536 Issues/58665 reland and prevent the material widget from absorbing gesture (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60545 Annotate RawMaterialButton as a Material > Button category. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60549 RangeSlider overlap properly (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60552 New license page with fix for zero licenses. (a: internationalization, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-229", "text": "60563 ListTile mouse pointer fix (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60600 Fix and address Inconsistencies with Pashto support (a: internationalization, cla: yes, f: material design)\n\n60611 1.17.5 CP: Fix daemon device discovery crash when Xcode isn\u2019t installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n60645 Revert \u201cTweaking Material Chip a11y semantics to match buttons (#60141)\u201d (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60684 Enable shouldCapTextScaleForTitle by default in AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-230", "text": "60693 Typo sweep (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)\n\n60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60730 Remove superfluous GestureDetector. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60764 Support customizing colors for rows in DataTable (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60832 Fix typo in popup_menu.dart (cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-231", "text": "60915 [AppBar] adds leadingWidth property to customize width of leading widget (cla: yes, f: material design, framework, waiting for tree to go green)\n\n60991 [Material] Misc fixes for time picker input mode (cla: yes, f: material design, framework, waiting for tree to go green)\n\n61000 Remove shouldCapTextScaleForTitle from AppBarTheme (cla: yes, f: material design, framework, waiting for tree to go green)\n\n61012 prevents sliver app bar from changing semantics tree when it is not n\u2026 (a: accessibility, f: material design, framework, waiting for tree to go green)\n\na: tests - 67 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-232", "text": "a: tests - 67 pull request(s)\n\n52507 enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\n53422 Rename GPU thread to raster thread in API docs (a: tests, cla: yes, framework, team, tool, waiting for tree to go green)\n\n53616 Improving A11y for Flutter Gallery Demos (a: accessibility, a: tests, cla: yes, f: material design, framework, team)\n\n53837 Skip Audits (2) (a: tests, cla: yes, f: cupertino, framework, platform-web, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-233", "text": "54125 remove flutter_test quiver dep, use fake_async and clock instead (a: tests, cla: yes, framework, team)\n\n54144 drop image package dependency for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54171 System mouse cursors (a: tests, cla: yes, f: material design, framework)\n\n54206 Updating codeowners for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54212 Reverse dependency between services and scheduler (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54218 [flutter_driver] Add SceneDisplayLag stats to timeline summary (a: tests, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-234", "text": "54220 [benchmarks] Handle multiple begin/end trace events (a: tests, cla: yes, framework)\n\n54227 [windows] Adds support for keyboard mapping. (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54322 Skip Audit - Material Library (a: quality, a: tests, cla: yes, f: material design, framework, platform-web, team, waiting for tree to go green)\n\n54480 Revert \u201c[flutter_driver] Add SceneDisplayLag stats to timeline summar\u2026 (a: tests, cla: yes, framework, team)\n\n54490 [flutter_driver] Reland add SceneDisplayLag stats to timeline summary (a: tests, cla: yes, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-235", "text": "54698 Allow headers to be passed to the WebSocket connection for VMServiceFlutterDriver (a: tests, cla: yes, framework, waiting for tree to go green)\n\n54741 [flutter_driver] Fix browser check (a: tests, cla: yes, framework, waiting for tree to go green)\n\n54991 Mark ios_app_with_watch_companion as not flaky (a: tests, cla: yes, team)\n\n55001 FlutterErrorDetails.context docs fix (a: error message, a: tests, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)\n\n55141 Support tags in testWidgets (a: tests, cla: yes, framework, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-236", "text": "55484 Revert \u201cFix FlutterError.onError in debug mode (#53843)\u201d (a: tests, cla: yes, f: material design, framework)\n\n55494 Add onSecondaryTap to gesture recognizer and gesture detector. (a: tests, cla: yes, framework, waiting for tree to go green)\n\n55527 Animation sheet recorder (a: tests, cla: yes, framework, waiting for tree to go green, will affect goldens)\n\n55763 [timeline] Sort timeline events before summarizing (a: tests, cla: yes, framework)\n\n55769 Revert \u201c[timeline] Sort timeline events before summarizing (#55763)\u201d (a: tests, cla: yes, framework)\n\n55771 [timeline] Sort timeline events before summarizing (a: tests, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-237", "text": "55793 Skip Audit - Painting Library (a: images, a: tests, a: typography, cla: yes, framework, platform-web, team, will affect goldens)\n\n55936 Fixed #55858 (a: tests, cla: yes, framework)\n\n56428 Eagerly wait for the driver extension on FlutterDriver.connect() (a: tests, cla: yes, framework, waiting for tree to go green)\n\n56430 Allow waitUntilFirstFrameRasterized without a root widget (a: tests, cla: yes, framework, waiting for tree to go green)\n\n57240 [web] Update test skip description. (a: tests, cla: yes, framework, platform-web)\n\n57270 add missing deps to flutter_test BUILD.gn (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-238", "text": "57287 remove pending timers list code out of assert message (a: tests, cla: yes, framework)\n\n57696 Functionality to check handlers set on platform channels (a: tests, cla: yes, framework, waiting for tree to go green)\n\n58210 [e2e] make test bindings friendlier to integration tests (a: tests, cla: yes, framework)\n\n58430 [flutter_driver] make timeline request in chunks (a: tests, cla: yes, framework, perf: memory)\n\n58514 add rasterizer start times to timeline summaries (a: tests, cla: yes, framework, waiting for tree to go green)\n\n58620 Make debugSemantics available to profile mode (a: accessibility, a: tests, cla: yes, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-239", "text": "58655 debug mode warning text alignment (a: tests, cla: yes, framework, waiting for tree to go green)\n\n58723 Drop an unnecessary factory constructor (a: tests, cla: yes, framework, waiting for tree to go green)\n\n58771 [Flutter Driver] Update the comments regarding the default timeout of WaitFor and WaitForAbsent commands (a: tests, cla: yes, framework, waiting for tree to go green)\n\n58820 Timeline summary contains CPU, GPU and Memory usage (a: tests, cla: yes, framework, severe: performance, waiting for tree to go green)\n\n58823 Add comments to flutter_driver for timeline class (a: tests, cla: yes, framework)\n\n59046 Cleanup devicelab framework duplicate (a: tests, cla: yes, engine, framework, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-240", "text": "59120 Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n59285 Remove Fuchsia BUILD.gn files (a: internationalization, a: tests, cla: yes, framework, team, tool, waiting for tree to go green)\n\n59358 Implement delayed key event synthesis support for framework (a: tests, cla: yes, framework, waiting for tree to go green)\n\n59803 Add benchmark for Mouse region (web) (a: tests, cla: yes, framework, severe: performance, team, waiting for tree to go green)\n\n59870 Revert \u201cDeprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter\u201d (a: tests, cla: yes, f: cupertino, f: material design, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-241", "text": "59876 Re-land \u201cDeprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter\u201d (a: tests, cla: yes, f: cupertino, f: material design, framework, team)\n\n59900 Fix issue with stack traces getting mangled (a: tests, cla: yes, framework)\n\n59982 [flutter_driver] Fix tracing of startup events (a: tests, cla: yes, framework)\n\n60045 Check for Xcode 11 and Xcode 12 directory names in build_ios_framework_module_test (a: tests, cla: yes, platform-ios, team)\n\n60136 Add more documentation on why tests might hang when using runAsync (a: tests, cla: yes, framework, waiting for tree to go green)\n\n60152 Remove unused physicalDepth code (a: tests, cla: yes, customer: fuchsia, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-242", "text": "60336 Heavy Widget construction and destruction performance test (a: tests, cla: yes, team)\n\n60367 Do not return partial semantics from tester.getSemantics (a: tests, cla: yes, framework, waiting for tree to go green)\n\n60478 Fix remaining holes in stack trace demangling (a: tests, cla: yes, framework)\n\n60693 Typo sweep (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)\n\n60734 Add comment explain dispatchEvent override (a: tests, cla: yes, documentation, framework)\n\n60774 await TimelineSummary.write***ToFile (a: tests, cla: yes, team)\n\n60916 Revert \u201cFix remaining holes in stack trace demangling\u201d (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-243", "text": "60934 Skip Audit - Scheduler and Services libraries (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n60936 Skip Audit - Widgets Library (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n60996 Reland \u201cFix remaining holes in stack trace demangling\u201d\u201d (a: tests, cla: yes, framework)\n\n61102 Fix PointerAddedEvent handling in LiveTestWidgetsFlutterBinding (a: tests, cla: yes, framework)\n\n61118 Fix #61102 line wrapping (a: tests, cla: yes, framework, waiting for tree to go green)\n\nf: cupertino - 53 pull request(s)\n\n42940 Revise Action API (cla: yes, f: cupertino, f: material design, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-244", "text": "50915 Implement barrierDismissible for showCupertinoDialog (a: internationalization, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n52126 Autofill Part 1 (cla: yes, customer: peppermint, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n52507 enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\n52995 Fix typo of showCupertinoModalPopup documentation comment (cla: yes, f: cupertino, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-245", "text": "53837 Skip Audits (2) (a: tests, cla: yes, f: cupertino, framework, platform-web, team, waiting for tree to go green)\n\n53880 Use no locale as synonym for nb (a: internationalization, cla: yes, customer: dream (g3), f: cupertino, f: material design, team, waiting for tree to go green)\n\n54119 Reland \u201ciOS UITextInput autocorrection prompt (#45354)\u201d (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n54140 iOS Text Selection Menu Overflow (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-ios)\n\n54394 replace simple empty Container with w & h with SizedBox (a: accessibility, cla: yes, f: cupertino, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-246", "text": "54798 ToDo Audit - Cupertino+ Library (a: accessibility, cla: yes, d: examples, f: cupertino, framework, team, waiting for tree to go green)\n\n54902 Paste shows only when content on clipboard (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n55336 Adding tabSemanticsLabel to CupertinoLocalizations (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green)\n\n55415 Customizable obscuringCharacter (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-247", "text": "55636 Prevent use of TextInputType.text when also using TextInputAction.newLine via assert (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n56091 Ensure *_kn.arb files are properly escaped with gen_localizations (a: internationalization, cla: yes, f: cupertino, f: material design, framework)\n\n56582 Update Tab semantics in Cupertino to be the same as Material (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green)\n\n56614 Revert \u201cPaste shows only when content on clipboard (#54902)\u201d (cla: yes, f: cupertino, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-248", "text": "56641 Add 2 new keyboard types and infer keyboardType from autofill hints (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n56689 Bring back paste button hide behavior (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56806 Revert \u201cBring back paste button hide behavior\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56922 Bring back paste button hide behavior 2 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56951 Revert \u201cBring back paste button hide behavior 2\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-249", "text": "57139 Bring back paste button hide behavior 3 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n57286 Revert \u201c Bring back paste button hide behavior 3\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, platform-web, team, waiting for tree to go green)\n\n57461 Fix segment hit test behavior for segmented control (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n57487 Fix typo in cupertino datepicker error (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n57519 Report the accurate local position in (sliding)segmented control hit testing (cla: yes, f: cupertino, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-250", "text": "57534 Improve CupertinoDatePicker docs (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n57576 Add Web Benchmarks for Flutter Gallery (Flutter Side) \u2014 1/4 (cla: yes, f: cupertino, f: material design, team, waiting for tree to go green)\n\n58024 fix cupertino page route dismisses hero transition when swipe to the \u2026 (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n58050 Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-251", "text": "58258 Helpful assertion for isAlwaysShown error (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n58392 iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break)\n\n58607 Revert \u201c[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58646 Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-252", "text": "58808 Introduce inherited navigator observer and refactor hero controller (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n59115 Modernize selection menu appearance (cla: yes, f: cupertino, f: material design, framework, platform-android, waiting for tree to go green)\n\n59120 Deprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter (a: tests, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n59160 Remove unused import which shares prefix name with a used import. (a: internationalization, cla: yes, f: cupertino, f: material design)\n\n59186 Opt out nnbd in packages/flutter (a: accessibility, cla: yes, f: cupertino, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-253", "text": "59219 Typo fixing sweep through packages/flutter. (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n59514 Replace collection\u2019s SetEquality with flutter\u2019s own (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n59561 Revert \u201cModernize selection menu appearance\u201d (a: internationalization, cla: yes, f: cupertino, f: material design, framework)\n\n59617 Reland modernize selection menu appearance (a: accessibility, a: internationalization, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n59870 Revert \u201cDeprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter\u201d (a: tests, cla: yes, f: cupertino, f: material design, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-254", "text": "59876 Re-land \u201cDeprecate WhitelistingTextInputFormatter and BlacklistingTextInputFormatter\u201d (a: tests, cla: yes, f: cupertino, f: material design, framework, team)\n\n60316 Don\u2019t access clipboard passively on iOS (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60405 Date picker string translations (a: internationalization, cla: yes, f: cupertino, f: material design, waiting for tree to go green)\n\n60611 1.17.5 CP: Fix daemon device discovery crash when Xcode isn\u2019t installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-255", "text": "60693 Typo sweep (a: tests, cla: yes, f: cupertino, f: material design, framework, team, tool, waiting for tree to go green)\n\n60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60929 Adding CupertinoApp Sample templates (cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)\n\na: internationalization - 34 pull request(s)\n\n50915 Implement barrierDismissible for showCupertinoDialog (a: internationalization, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-256", "text": "53374 [gen_l10n] Fallback feature for untranslated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green)\n\n53824 [gen_l10n] Add option for deferred loading on the web (a: internationalization, cla: yes, team, tool, waiting for tree to go green)\n\n53868 [gen_l10n] Add scriptCode handling (a: internationalization, cla: yes, severe: new feature, team, tool)\n\n53880 Use no locale as synonym for nb (a: internationalization, cla: yes, customer: dream (g3), f: cupertino, f: material design, team, waiting for tree to go green)\n\n53954 [gen_l10n] Fix plural parsing for translated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-257", "text": "54176 Fix newly reported prefer_const_constructors lints. (a: internationalization, cla: yes, d: examples, team, tool)\n\n54219 Remove escape dollar parameter in localizations_utils (a: internationalization, cla: yes, team, waiting for tree to go green)\n\n54314 [gen_l10n] Expand integration tests (a: internationalization, cla: yes, tool, waiting for tree to go green)\n\n54401 Cleanup in gen_l10n files (a: internationalization, cla: yes, team)\n\n55336 Adding tabSemanticsLabel to CupertinoLocalizations (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green)\n\n55792 [gen_l10n] Output directory option (a: internationalization, cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-258", "text": "55909 [gen_l10n] Fix unintended breaking change introduced by output-dir option (a: internationalization, cla: yes, team, tool)\n\n56090 Step 1 of 3: Add opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green)\n\n56091 Ensure *_kn.arb files are properly escaped with gen_localizations (a: internationalization, cla: yes, f: cupertino, f: material design, framework)\n\n56146 Fixed a typo, gen_l10n_types.dart comment (a: internationalization, cla: yes, tool, waiting for tree to go green)\n\n56373 [gen_l10n] Improve arb FormatException error message (a: internationalization, cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-259", "text": "56490 [gen_l10n] Optionally generate list of inputs/outputs (a: internationalization, cla: yes, tool, waiting for tree to go green)\n\n56582 Update Tab semantics in Cupertino to be the same as Material (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green)\n\n56645 Localized new strings added in the redesigned Material Date Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)\n\n57511 Step 2 of 3: Change opt-in default for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n57588 New license page. (a: internationalization, cla: yes, f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-260", "text": "58482 Expose ComputePlatformResolvedLocale (a: internationalization, cla: yes, customer: money (g3), framework, waiting for tree to go green)\n\n58831 Step 3 of 3: Remove opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green)\n\n59160 Remove unused import which shares prefix name with a used import. (a: internationalization, cla: yes, f: cupertino, f: material design)\n\n59191 [Material] Redesign Time Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)\n\n59285 Remove Fuchsia BUILD.gn files (a: internationalization, a: tests, cla: yes, framework, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-261", "text": "59561 Revert \u201cModernize selection menu appearance\u201d (a: internationalization, cla: yes, f: cupertino, f: material design, framework)\n\n59617 Reland modernize selection menu appearance (a: accessibility, a: internationalization, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n60096 Localized new strings added in the redesigned Material Time Picker (a: internationalization, cla: yes, f: material design, framework, waiting for tree to go green)\n\n60185 [gen_l10n] Update the arb filename parsing logic (a: internationalization, cla: yes, team, tool)\n\n60405 Date picker string translations (a: internationalization, cla: yes, f: cupertino, f: material design, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-262", "text": "60552 New license page with fix for zero licenses. (a: internationalization, f: material design, framework)\n\n60600 Fix and address Inconsistencies with Pashto support (a: internationalization, cla: yes, f: material design)\n\nengine - 33 pull request(s)\n\n54111 Manual roll of engine 9b8dcc7ecffe..df257e59c241 (cla: no, engine)\n\n54383 Revert \u201cRoll engine 5b4b1f33c6d6..916f014d1cfb (24 commits)\u201d (cla: yes, engine)\n\n55253 Flutter 1.17.0.dev.3.2 cherrypicks (cla: yes, engine, framework, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-263", "text": "55521 Revert \u201cRoll engine 8fff8da38da2..a544b45f26cc (3 commits)\u201d (cla: yes, engine)\n\n55560 Revert \u201cRoll engine 8fff8da38da2..d2ec21221e29 (8 commits)\u201d (cla: yes, engine)\n\n55749 Roll engine 2b94311a7764..4f888d66250e (10 commits) (cla: yes, engine, work in progress; do not review)\n\n55871 Flutter 1.17.0.dev.3.3 cherrypicks (cla: yes, engine, framework, team, tool)\n\n55891 manual engine roll (4bcfae82c7c1 -> 0c35a3417) (cla: yes, engine)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-264", "text": "56677 Manual roll of engine 7e205b37e5\u20263953c3ccd1 (cla: yes, engine)\n\n56684 Manual roll of engine 9b905d3f03\u20267e205b37e5 (cla: yes, engine)\n\n57052 Flutter 1.17.1 cherrypicks (cla: yes, engine, framework, team, tool)\n\n57058 1.18.0-11.1.pre beta cherrypicks (cla: yes, engine, framework, team, tool, work in progress; do not review)\n\n58050 Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-265", "text": "58607 Revert \u201c[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58646 Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58692 Revert \u201cRoll Engine from 859d892f1fca to 2608f2ee9f54 (9 revisions)\u201d (cla: yes, engine)\n\n58736 Update engine hash for 1.19.0-4.0.pre (cla: yes, engine)\n\n59046 Cleanup devicelab framework duplicate (a: tests, cla: yes, engine, framework, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-266", "text": "59102 Update engine hash for 1.19.0-4.1.pre (cla: yes, engine)\n\n59334 Revert \u201cRoll Engine from 965fbbed1776 to d417772d7acd (21 revisions)\u201d (cla: yes, engine)\n\n59490 Revert \u201cRoll Engine from 965fbbed1776 to 801559ac4ed3 (50 revisions)\u201d (cla: yes, engine)\n\n59692 Revert \u201cRoll Engine from 965fbbed1776 to 237b5f32eff8 (95 revisions) \u2026 (cla: yes, engine)\n\n59717 Manual engine roll to update format of compileExpression RPC response (cla: yes, engine, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-267", "text": "59758 Update engine hash for flutter-1.20-candidate.1 (cla: yes, engine)\n\n59774 Revert \u201cManual engine roll to update format of compileExpression RP\u2026 (cla: yes, engine, tool)\n\n59804 Roll the engine from 965fbbe to b5f5e63 (cla: yes, engine, tool, waiting for tree to go green)\n\n60002 1.19 CP: [flutter_tools] move mingit path addition back to flutter.bat (#59369) (cla: yes, engine)\n\n60200 [flutter_tools] Clean code analyze command (cla: yes, engine, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-268", "text": "60611 1.17.5 CP: Fix daemon device discovery crash when Xcode isn\u2019t installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n60824 Update engine hash to cherry-pick version a751393 (cla: yes, engine)\n\n60955 Set engine version to head containing cherrypicks (cla: yes, engine)\n\n61010 Revert \u201cAdd embedderId to PointerEvent (#60930)\u201d (cla: yes, engine, framework, team)\n\n61013 Re-land gesture detection for hybrid platform views (engine, framework, team)\n\nd: examples - 28 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-269", "text": "d: examples - 28 pull request(s)\n\n52507 enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\n54176 Fix newly reported prefer_const_constructors lints. (a: internationalization, cla: yes, d: examples, team, tool)\n\n54317 PageStorage sample (cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green)\n\n54407 Don\u2019t import plugins that don\u2019t support android in settings.gradle (a: accessibility, cla: yes, d: examples, team, tool, waiting for tree to go green)\n\n54691 Migrate Runner project base configuration (cla: yes, d: examples, t: xcode, team, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-270", "text": "54798 ToDo Audit - Cupertino+ Library (a: accessibility, cla: yes, d: examples, f: cupertino, framework, team, waiting for tree to go green)\n\n55001 FlutterErrorDetails.context docs fix (a: error message, a: tests, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)\n\n55829 allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n56958 Updated dwds (and other packages) (cla: yes, d: examples, team, tool, waiting for tree to go green)\n\n57621 Remove MaterialControls from examples/flutter_view (cla: yes, d: examples, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-271", "text": "57838 Add sample code of GestureDetector with no children (cla: yes, d: api docs, d: examples, documentation, f: gestures, framework, waiting for tree to go green)\n\n58050 Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review)\n\n58444 Remove outdated disable_input_output_paths from example project Podfiles (cla: yes, d: examples, platform-ios, team, tool, waiting for tree to go green)\n\n58504 Revert \u201cRemove outdated disable_input_output_paths from example project Podfiles\u201d (cla: yes, d: examples, team)\n\n58522 Build iOS apps using Swift Packages (cla: yes, d: examples, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-272", "text": "58524 Remove outdated disable_input_output_paths from example project Podfiles (cla: yes, d: examples, team, waiting for tree to go green)\n\n58549 Revert \u201cBuild iOS apps using Swift Packages\u201d (cla: yes, d: examples, team, tool)\n\n58607 Revert \u201c[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58646 Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n59009 Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-273", "text": "59025 Revert \u201cBuild iOS apps using Swift Packages\u201d (cla: yes, d: examples, team, tool)\n\n59187 Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)\n\n59280 test flutter framework with null-safety (cla: yes, d: examples, team, waiting for tree to go green)\n\n59896 gitignore .last_build_id file in the repo (cla: yes, d: examples, team, tool, waiting for tree to go green)\n\n60222 Doc Updates (cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-274", "text": "60611 1.17.5 CP: Fix daemon device discovery crash when Xcode isn\u2019t installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60929 Adding CupertinoApp Sample templates (cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)\n\na: accessibility - 25 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-275", "text": "a: accessibility - 25 pull request(s)\n\n53616 Improving A11y for Flutter Gallery Demos (a: accessibility, a: tests, cla: yes, f: material design, framework, team)\n\n54394 replace simple empty Container with w & h with SizedBox (a: accessibility, cla: yes, f: cupertino, f: material design, framework)\n\n54407 Don\u2019t import plugins that don\u2019t support android in settings.gradle (a: accessibility, cla: yes, d: examples, team, tool, waiting for tree to go green)\n\n54798 ToDo Audit - Cupertino+ Library (a: accessibility, cla: yes, d: examples, f: cupertino, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-276", "text": "55336 Adding tabSemanticsLabel to CupertinoLocalizations (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green)\n\n56582 Update Tab semantics in Cupertino to be the same as Material (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green)\n\n56689 Bring back paste button hide behavior (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56806 Revert \u201cBring back paste button hide behavior\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56922 Bring back paste button hide behavior 2 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-277", "text": "56951 Revert \u201cBring back paste button hide behavior 2\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team)\n\n56968 setState() will call scheduleFrame() in post-frame callback now. (a: accessibility, cla: yes, framework, waiting for tree to go green)\n\n57139 Bring back paste button hide behavior 3 (a: accessibility, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n57286 Revert \u201c Bring back paste button hide behavior 3\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, platform-web, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-278", "text": "58050 Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review)\n\n58535 Make _RenderSlider not be a semantics container (a: accessibility, cla: yes, f: focus, f: material design, framework)\n\n58607 Revert \u201c[flutter_tools] always initialize the resident runner from dill (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n58620 Make debugSemantics available to profile mode (a: accessibility, a: tests, cla: yes, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-279", "text": "58646 Flutter 1.17.3 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n59186 Opt out nnbd in packages/flutter (a: accessibility, cla: yes, f: cupertino, f: material design, framework)\n\n59219 Typo fixing sweep through packages/flutter. (a: accessibility, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n59617 Reland modernize selection menu appearance (a: accessibility, a: internationalization, cla: yes, f: cupertino, f: material design, framework, team, waiting for tree to go green)\n\n60141 Tweaking Material Chip a11y semantics to match buttons (a: accessibility, cla: yes, customer: money (g3), f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-280", "text": "60611 1.17.5 CP: Fix daemon device discovery crash when Xcode isn\u2019t installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n60925 fix semantics to only send relevant node update (a: accessibility, cla: yes, framework, waiting for tree to go green)\n\n61012 prevents sliver app bar from changing semantics tree when it is not n\u2026 (a: accessibility, f: material design, framework, waiting for tree to go green)\n\nplatform-ios - 19 pull request(s)\n\n54140 iOS Text Selection Menu Overflow (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-281", "text": "54154 Convert iOS simulator log reader to simctl, use unified logging filters (cla: yes, platform-ios, tool, waiting for tree to go green)\n\n54488 Remove Finder extended attributes from iOS project files (cla: yes, platform-ios, tool)\n\n54989 Support armv7s architecture (cla: yes, platform-ios, tool)\n\n55069 Prioritize scrolling away nested overscroll (a: fidelity, a: quality, cla: yes, customer: crowd, f: scrolling, framework, platform-ios, waiting for tree to go green)\n\n55808 Add iOS simulator log parse test (cla: yes, platform-ios, t: xcode, tool)\n\n58137 Change iOS device discovery from polling to long-running observation (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-282", "text": "58257 Detect USB/network interface from iOS devices (cla: yes, platform-ios, t: xcode, tool)\n\n58392 iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break)\n\n58444 Remove outdated disable_input_output_paths from example project Podfiles (cla: yes, d: examples, platform-ios, team, tool, waiting for tree to go green)\n\n59009 Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green)\n\n59044 Move iOS Podfile logic into tool (cla: yes, platform-ios, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-283", "text": "59209 Support .flutter-plugins-dependencies (cla: yes, platform-ios, team, tool, waiting for tree to go green)\n\n59508 Remove last references to ideviceinstaller (cla: yes, platform-ios, team, tool, waiting for tree to go green)\n\n59874 Parse build ios framework build mode from params (a: existing-apps, cla: yes, platform-ios, tool, waiting for tree to go green)\n\n60045 Check for Xcode 11 and Xcode 12 directory names in build_ios_framework_module_test (a: tests, cla: yes, platform-ios, team)\n\n60228 Make module run script names unique (a: existing-apps, cla: yes, platform-ios, team, tool)\n\n60381 Use ephemeral ports for iOS port forwarding (cla: yes, platform-ios, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-284", "text": "60623 Take screenshots of wirelessly paired iOS devices (platform-ios, tool)\n\na: quality - 16 pull request(s)\n\n50412 Make CircularProgressIndicator\u2019s animation match native (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n53655 Pass showCheckboxColumn parameter to DataTable (a: quality, cla: yes, f: material design, framework, team)\n\n54322 Skip Audit - Material Library (a: quality, a: tests, cla: yes, f: material design, framework, platform-web, team, waiting for tree to go green)\n\n55069 Prioritize scrolling away nested overscroll (a: fidelity, a: quality, cla: yes, customer: crowd, f: scrolling, framework, platform-ios, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-285", "text": "55829 allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n56084 Step 1 of 3: Add opt-in fixing Dialog border radius to match Material Spec (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n57751 Step 2 of 3: Change opt-in default for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n58392 iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-286", "text": "58715 Fix custom physics application in TabBarView (a: quality, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)\n\n58829 Step 3 of 3: Remove opt-in for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n59187 Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)\n\n59966 Added a filterQuality parameter to texture (a: quality, a: video, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-287", "text": "60248 Ensure FloatingActionButtonLocations are always within safe interactive areas (a: quality, cla: yes, customer: money (g3), f: material design, framework, waiting for tree to go green)\n\n60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60934 Skip Audit - Scheduler and Services libraries (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n60936 Skip Audit - Widgets Library (a: quality, a: tests, cla: yes, framework, team, waiting for tree to go green)\n\na: text input - 15 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-288", "text": "a: text input - 15 pull request(s)\n\n53381 Characters Package (a: text input, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)\n\n54140 iOS Text Selection Menu Overflow (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-ios)\n\n54902 Paste shows only when content on clipboard (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n55408 Fix InputDecorator intrinsic height reporting (a: text input, cla: yes, f: material design, f: scrolling, framework, severe: regression, waiting for tree to go green)\n\n55415 Customizable obscuringCharacter (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-289", "text": "55636 Prevent use of TextInputType.text when also using TextInputAction.newLine via assert (a: text input, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n55775 TextField enabled fix (a: text input, cla: yes, f: material design, framework, waiting for tree to go green)\n\n55911 Text field height fix (a: text input, cla: yes, f: inspector, f: material design, framework, waiting for tree to go green)\n\n56090 Step 1 of 3: Add opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-290", "text": "57264 Prevent WhitelistingTextInputFormatter to return a empty string if the current value does not satisfy the formatter (a: text input, cla: yes, framework, waiting for tree to go green)\n\n57511 Step 2 of 3: Change opt-in default for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n58831 Step 3 of 3: Remove opt-in for debugCheckHasMaterialLocalizations assertion on TextField (a: internationalization, a: text input, cla: yes, f: material design, framework, waiting for tree to go green)\n\n59221 Revert \u201cPrevent WhitelistingTextInputFormatter to return a empty string if the current value does not satisfy the formatter (#57264)\u201d (a: text input, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-291", "text": "59363 Add material state mouse cursor to TextField (a: text input, cla: yes, customer: octopod, f: material design, framework, waiting for tree to go green)\n\n60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\nd: api docs - 13 pull request(s)\n\n50673 Update AppBar MediaQuery documentation (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)\n\n54317 PageStorage sample (cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-292", "text": "55001 FlutterErrorDetails.context docs fix (a: error message, a: tests, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)\n\n55829 allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n57195 Fix NavigationRail class docs (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)\n\n57838 Add sample code of GestureDetector with no children (cla: yes, d: api docs, d: examples, documentation, f: gestures, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-293", "text": "58117 Minor correction to documentation for buttonColor (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)\n\n58213 update build doc string to advocate avoiding doing tasks other than b\u2026 (cla: yes, d: api docs, framework, waiting for tree to go green)\n\n59187 Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)\n\n60222 Doc Updates (cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green)\n\n60482 Fix docs for TabBar indicator (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-294", "text": "60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60929 Adding CupertinoApp Sample templates (cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)\n\ndocumentation - 11 pull request(s)\n\n54317 PageStorage sample (cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green)\n\n55001 FlutterErrorDetails.context docs fix (a: error message, a: tests, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-295", "text": "55829 allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n57838 Add sample code of GestureDetector with no children (cla: yes, d: api docs, d: examples, documentation, f: gestures, framework, waiting for tree to go green)\n\n58456 Update StandardCodec documentation with double alignment (cla: yes, documentation, framework, waiting for tree to go green)\n\n59187 Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-296", "text": "60222 Doc Updates (cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green)\n\n60482 Fix docs for TabBar indicator (cla: yes, d: api docs, documentation, f: material design, framework, waiting for tree to go green)\n\n60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60734 Add comment explain dispatchEvent override (a: tests, cla: yes, documentation, framework)\n\n60929 Adding CupertinoApp Sample templates (cla: yes, d: api docs, d: examples, documentation, f: cupertino, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-297", "text": "severe: performance - 11 pull request(s)\n\n54494 Add A/B test mode to local devicelab runner (cla: yes, severe: performance, team, waiting for tree to go green)\n\n55181 Add performance tests for the new gallery (cla: yes, perf: speed, severe: performance, team, waiting for tree to go green)\n\n55417 [flutter_tools] fix performance of tree-shake-icons (cla: yes, severe: performance, tool)\n\n55486 Add DevTools memory test (cla: yes, perf: memory, severe: performance, team, waiting for tree to go green)\n\n56575 Roll new gallery version in the perf test (cla: yes, severe: performance, team, waiting for tree to go green)\n\n56638 Perf test with SkSL warm-up (cla: yes, perf: speed, severe: performance, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-298", "text": "58648 Add iOS new gallery perf test (cla: yes, severe: performance, team, waiting for tree to go green)\n\n58820 Timeline summary contains CPU, GPU and Memory usage (a: tests, cla: yes, framework, severe: performance, waiting for tree to go green)\n\n59803 Add benchmark for Mouse region (web) (a: tests, cla: yes, framework, severe: performance, team, waiting for tree to go green)\n\n59883 Refactor mouse hit testing system: Direct mouse hit test (a: mouse, cla: yes, f: material design, framework, severe: performance, waiting for tree to go green)\n\n59932 Add SkSL shader warm-up tests to Flutter gallery (cla: yes, perf: speed, severe: performance, team, waiting for tree to go green)\n\nsevere: API break - 11 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-299", "text": "severe: API break - 11 pull request(s)\n\n54806 Roll engine deef2663aca4..e6a2534b63ac (20 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens)\n\n54997 Roll engine e6a2534b63ac..f4d6ce13dcc4 (32 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens)\n\n55336 Adding tabSemanticsLabel to CupertinoLocalizations (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, team, waiting for tree to go green)\n\n55977 Add clipBehavior to widgets with clipRect (cla: yes, f: material design, framework, severe: API break, team, will affect goldens)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-300", "text": "55998 Fixes the navigator pages update crashes when there is still route wa\u2026 (cla: yes, f: routes, framework, severe: API break, waiting for tree to go green)\n\n56390 Roll engine 33d236795015..4b7380b55f6d (3 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens)\n\n56582 Update Tab semantics in Cupertino to be the same as Material (a: accessibility, a: internationalization, cla: yes, f: cupertino, framework, severe: API break, waiting for tree to go green)\n\n56740 Roll engine 9b905d3f03f2..9d8daf2383ea (19 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-301", "text": "57065 Remove deprecated child parameter for NestedScrollView\u2019s overlap managing slivers (cla: yes, f: scrolling, framework, severe: API break, waiting for tree to go green)\n\n57629 Roll Engine from 2d4e83921d31 to 9ce1e5c5c7e7 (27 revisions) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens)\n\n58392 iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break)\n\nf: scrolling - 11 pull request(s)\n\n55069 Prioritize scrolling away nested overscroll (a: fidelity, a: quality, cla: yes, customer: crowd, f: scrolling, framework, platform-ios, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-302", "text": "55408 Fix InputDecorator intrinsic height reporting (a: text input, cla: yes, f: material design, f: scrolling, framework, severe: regression, waiting for tree to go green)\n\n55829 allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\n57065 Remove deprecated child parameter for NestedScrollView\u2019s overlap managing slivers (cla: yes, f: scrolling, framework, severe: API break, waiting for tree to go green)\n\n58392 iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-303", "text": "58715 Fix custom physics application in TabBarView (a: quality, cla: yes, f: material design, f: scrolling, framework, waiting for tree to go green)\n\n59015 fix overscroll position if there is sliver before center sliver in cu\u2026 (cla: yes, f: scrolling, framework, waiting for tree to go green)\n\n59187 Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)\n\n59405 [AppBar] adds toolbarHeight property to customize AppBar height (cla: yes, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-304", "text": "59888 Fix the layout calculation in sliver list where the scroll offset cor\u2026 (cla: yes, f: scrolling, framework, waiting for tree to go green)\n\n60222 Doc Updates (cla: yes, d: api docs, d: examples, documentation, f: scrolling, framework, waiting for tree to go green)\n\nt: xcode - 10 pull request(s)\n\n54691 Migrate Runner project base configuration (cla: yes, d: examples, t: xcode, team, tool)\n\n55790 Remove dead variable from xcode_backend (cla: yes, t: xcode, tool)\n\n55799 Check Xcode build setting FULL_PRODUCT_NAME for bundle name (cla: yes, t: xcode, team, tool)\n\n55808 Add iOS simulator log parse test (cla: yes, platform-ios, t: xcode, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-305", "text": "56620 Remove Runner target check, prefer schemes (cla: yes, t: xcode, team, tool, waiting for tree to go green)\n\n57701 Allow FLUTTER_APPLICATION_PATH to be null for misconfigured Xcode projects (cla: yes, t: xcode, tool, waiting for tree to go green)\n\n58137 Change iOS device discovery from polling to long-running observation (cla: yes, platform-ios, t: xcode, tool, waiting for tree to go green)\n\n58257 Detect USB/network interface from iOS devices (cla: yes, platform-ios, t: xcode, tool)\n\n59009 Build iOS apps using Swift Packages (cla: yes, d: examples, platform-ios, t: xcode, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-306", "text": "60546 Fix daemon device discovery crash when Xcode isn\u2019t installed (cla: yes, severe: crash, t: xcode, tool, waiting for tree to go green)\n\nwill affect goldens - 9 pull request(s)\n\n51656 Set AA flag for painting images (a: images, cla: yes, framework, waiting for tree to go green, will affect goldens)\n\n54806 Roll engine deef2663aca4..e6a2534b63ac (20 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens)\n\n54997 Roll engine e6a2534b63ac..f4d6ce13dcc4 (32 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-307", "text": "55527 Animation sheet recorder (a: tests, cla: yes, framework, waiting for tree to go green, will affect goldens)\n\n55793 Skip Audit - Painting Library (a: images, a: tests, a: typography, cla: yes, framework, platform-web, team, will affect goldens)\n\n55977 Add clipBehavior to widgets with clipRect (cla: yes, f: material design, framework, severe: API break, team, will affect goldens)\n\n56390 Roll engine 33d236795015..4b7380b55f6d (3 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-308", "text": "56740 Roll engine 9b905d3f03f2..9d8daf2383ea (19 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens)\n\n57629 Roll Engine from 2d4e83921d31 to 9ce1e5c5c7e7 (27 revisions) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens)\n\nplatform-web - 9 pull request(s)\n\n51581 Fix outline button solid path when BorderSize.width is used (cla: yes, f: material design, framework, platform-web, waiting for tree to go green)\n\n53837 Skip Audits (2) (a: tests, cla: yes, f: cupertino, framework, platform-web, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-309", "text": "53952 [web] Fix race condition in widget benchmarks (cla: yes, platform-web, team)\n\n54322 Skip Audit - Material Library (a: quality, a: tests, cla: yes, f: material design, framework, platform-web, team, waiting for tree to go green)\n\n54396 [web] Don\u2019t collect trace info in the color grid benchmark (cla: yes, platform-web, team)\n\n55793 Skip Audit - Painting Library (a: images, a: tests, a: typography, cla: yes, framework, platform-web, team, will affect goldens)\n\n56794 [web & desktop] Hide all characters in a TextField, when obscureText is true on web & desktop (cla: yes, f: material design, framework, platform-mac, platform-web, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-310", "text": "57240 [web] Update test skip description. (a: tests, cla: yes, framework, platform-web)\n\n57286 Revert \u201c Bring back paste button hide behavior 3\u201d (a: accessibility, cla: yes, f: cupertino, f: material design, framework, platform-web, team, waiting for tree to go green)\n\na: null-safety - 8 pull request(s)\n\n54208 [flutter_tools] migrate engine location check (a: null-safety, cla: yes, tool)\n\n54299 [flutter_tools] migrate devfs web to package_config (a: null-safety, cla: yes, tool)\n\n54301 [flutter_tools] Remove packageMap usage and update package_config (a: null-safety, cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-311", "text": "54467 [flutter_tools] update compilation to use package config (a: null-safety, cla: yes, tool)\n\n54613 [flutter_tools] support enable-experiment in flutter analyze (a: null-safety, cla: yes, tool, waiting for tree to go green)\n\n54617 [flutter_tools] initial support for enable experiment, run, apk, ios, macos (a: null-safety, cla: yes, team, tool)\n\n58533 [flutter_tools] add flag for sound-null-safety, unify with experiments (a: null-safety, cla: yes, tool)\n\n60111 Add null safety options to build ios-framework (a: existing-apps, a: null-safety, cla: yes, tool)\n\na: fidelity - 7 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-312", "text": "a: fidelity - 7 pull request(s)\n\n50412 Make CircularProgressIndicator\u2019s animation match native (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n55069 Prioritize scrolling away nested overscroll (a: fidelity, a: quality, cla: yes, customer: crowd, f: scrolling, framework, platform-ios, waiting for tree to go green)\n\n55829 allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-313", "text": "56084 Step 1 of 3: Add opt-in fixing Dialog border radius to match Material Spec (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n57751 Step 2 of 3: Change opt-in default for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n58392 iOS mid-drag activity indicator (a: fidelity, a: quality, cla: yes, f: cupertino, f: scrolling, framework, platform-ios, severe: API break)\n\n58829 Step 3 of 3: Remove opt-in for useMaterialBorderRadius on Dialogs (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\na: images - 7 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-314", "text": "a: images - 7 pull request(s)\n\n51656 Set AA flag for painting images (a: images, cla: yes, framework, waiting for tree to go green, will affect goldens)\n\n53875 Remove network images from cache on any exception during loading (a: images, cla: yes, framework)\n\n53959 Clear ImageCache on MemoryPressure (a: images, cla: yes, framework, waiting for tree to go green)\n\n55793 Skip Audit - Painting Library (a: images, a: tests, a: typography, cla: yes, framework, platform-web, team, will affect goldens)\n\n58503 Do not assume imageCache is created when handleMemoryPressure is called (a: images, cla: yes, framework)\n\n59856 Make upscaling images opt-in (a: images, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-315", "text": "59877 Allow detection of images using more memory than necessary (a: debugging, a: error message, a: images, cla: yes, framework)\n\nwork in progress; do not review - 5 pull request(s)\n\n53879 Collect chrome://tracing data in Web benchmarks (cla: yes, team, work in progress; do not review)\n\n55126 web benchmarks: handle no outliers case (cla: yes, team, waiting for tree to go green, work in progress; do not review)\n\n55749 Roll engine 2b94311a7764..4f888d66250e (10 commits) (cla: yes, engine, work in progress; do not review)\n\n57058 1.18.0-11.1.pre beta cherrypicks (cla: yes, engine, framework, team, tool, work in progress; do not review)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-316", "text": "58050 Flutter 1.17.2 cherrypicks (a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool, work in progress; do not review)\n\nplatform-android - 5 pull request(s)\n\n50111 fix memory leak of android view (a: platform-views, cla: yes, p: framework, perf: memory, platform-android, plugin, waiting for tree to go green)\n\n56342 Add split-debug and obfuscation to build aar (cla: yes, platform-android, tool, waiting for tree to go green)\n\n58815 Support work profiles and multiple Android users for run, install, attach, drive (cla: yes, platform-android, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-317", "text": "59115 Modernize selection menu appearance (cla: yes, f: cupertino, f: material design, framework, platform-android, waiting for tree to go green)\n\n59867 Replace ANDROID_HOME user messages with ANDROID_SDK_ROOT (cla: yes, platform-android, team, tool, waiting for tree to go green)\n\nCQ+1 - 4 pull request(s)\n\n54131 flutter/flutter 1.17.0-dev.3.1 cherrypicks (CQ+1, cla: yes, framework, tool)\n\n55401 Optimize fuchsia test script. (CQ+1, cla: yes, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-318", "text": "60611 1.17.5 CP: Fix daemon device discovery crash when Xcode isn\u2019t installed (#60546) (CQ+1, a: accessibility, cla: yes, d: examples, engine, f: cupertino, f: material design, framework, team, tool)\n\n60717 1.19 CP: Fix daemon device discovery crash when Xcode isn\u2019t installed (#60546) (CQ+1, cla: yes)\n\na: existing-apps - 4 pull request(s)\n\n59217 Deprecate make-host-app-editable (a: existing-apps, cla: yes, tool, waiting for tree to go green)\n\n59874 Parse build ios framework build mode from params (a: existing-apps, cla: yes, platform-ios, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-319", "text": "60111 Add null safety options to build ios-framework (a: existing-apps, a: null-safety, cla: yes, tool)\n\n60228 Make module run script names unique (a: existing-apps, cla: yes, platform-ios, team, tool)\n\nsevere: new feature - 4 pull request(s)\n\n53868 [gen_l10n] Add scriptCode handling (a: internationalization, cla: yes, severe: new feature, team, tool)\n\n55829 allow changing the paint offset of a GlowingOverscrollIndicator (a: fidelity, a: quality, cla: yes, d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-320", "text": "57736 [AppBarTheme] adds centerTitle property (cla: yes, f: material design, framework, severe: new feature, waiting for tree to go green)\n\n59405 [AppBar] adds toolbarHeight property to customize AppBar height (cla: yes, f: material design, f: scrolling, framework, severe: new feature, waiting for tree to go green)\n\nperf: memory - 4 pull request(s)\n\n50111 fix memory leak of android view (a: platform-views, cla: yes, p: framework, perf: memory, platform-android, plugin, waiting for tree to go green)\n\n55486 Add DevTools memory test (cla: yes, perf: memory, severe: performance, team, waiting for tree to go green)\n\n58430 [flutter_driver] make timeline request in chunks (a: tests, cla: yes, framework, perf: memory)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-321", "text": "61025 benchmark memory usage for grid view of memory intensive widgets (cla: yes, perf: memory, team, waiting for tree to go green)\n\nf: routes - 4 pull request(s)\n\n55998 Fixes the navigator pages update crashes when there is still route wa\u2026 (cla: yes, f: routes, framework, severe: API break, waiting for tree to go green)\n\n56732 fix pushAndRemoveUntil incorrectly removes the routes below the first\u2026 (cla: yes, f: routes, framework, waiting for tree to go green)\n\n57036 fix push replacement reports wrong previous route to navigator observer (cla: yes, f: routes, framework, waiting for tree to go green)\n\n60621 Add a flag to toggle navigator route update reporting (cla: yes, f: routes, framework, waiting for tree to go green)\n\na: desktop - 3 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-322", "text": "a: desktop - 3 pull request(s)\n\n53888 Add visualDensity and focus support to ListTile (a: desktop, cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n56160 Focus the last node when asked to focus previous and nothing is selected. (a: desktop, cla: yes, f: focus, waiting for tree to go green)\n\n58272 Remove callback asserts on FocusableActionDetector (a: desktop, cla: yes, framework)\n\nperf: speed - 3 pull request(s)\n\n55181 Add performance tests for the new gallery (cla: yes, perf: speed, severe: performance, team, waiting for tree to go green)\n\n56638 Perf test with SkSL warm-up (cla: yes, perf: speed, severe: performance, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-323", "text": "59932 Add SkSL shader warm-up tests to Flutter gallery (cla: yes, perf: speed, severe: performance, team, waiting for tree to go green)\n\na: triage improvements - 3 pull request(s)\n\n53882 Remove URL shortening from GitHub reporter similar issues URL (a: triage improvements, cla: yes, tool)\n\n53936 Sanitize error message sent to GitHub crash reporter (a: triage improvements, cla: yes, tool)\n\n56928 Add mirror overrides to doctor output (a: triage improvements, cla: yes, t: flutter doctor, tool, waiting for tree to go green)\n\na: typography - 3 pull request(s)\n\n54234 Fix right alignment TWB longestLine (a: typography, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-324", "text": "54305 Add missing properties to TextStyle.apply (a: typography, cla: yes, framework, waiting for tree to go green)\n\n55793 Skip Audit - Painting Library (a: images, a: tests, a: typography, cla: yes, framework, platform-web, team, will affect goldens)\n\nteam: infra - 3 pull request(s)\n\n54478 Fix environment leakage in doctor_test (cla: yes, team, team: flakes, team: infra, tool)\n\n54891 Mark ios_app_with_watch_companion as flaky (cla: yes, team, team: infra)\n\n54899 Pass in runtime to ios_app_with_watch_companion simctl create (cla: yes, team, team: infra)\n\na: error message - 3 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-325", "text": "a: error message - 3 pull request(s)\n\n55001 FlutterErrorDetails.context docs fix (a: error message, a: tests, cla: yes, d: api docs, d: examples, documentation, framework, waiting for tree to go green)\n\n59877 Allow detection of images using more memory than necessary (a: debugging, a: error message, a: images, cla: yes, framework)\n\n60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\nf: focus - 3 pull request(s)\n\n52990 Update Highlight mode initial value calculation. (cla: yes, f: focus, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-326", "text": "56160 Focus the last node when asked to focus previous and nothing is selected. (a: desktop, cla: yes, f: focus, waiting for tree to go green)\n\n58535 Make _RenderSlider not be a semantics container (a: accessibility, cla: yes, f: focus, f: material design, framework)\n\ncustomer: money (g3) - 3 pull request(s)\n\n58482 Expose ComputePlatformResolvedLocale (a: internationalization, cla: yes, customer: money (g3), framework, waiting for tree to go green)\n\n60141 Tweaking Material Chip a11y semantics to match buttons (a: accessibility, cla: yes, customer: money (g3), f: material design, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-327", "text": "60248 Ensure FloatingActionButtonLocations are always within safe interactive areas (a: quality, cla: yes, customer: money (g3), f: material design, framework, waiting for tree to go green)\n\ncustomer: crowd - 2 pull request(s)\n\n55069 Prioritize scrolling away nested overscroll (a: fidelity, a: quality, cla: yes, customer: crowd, f: scrolling, framework, platform-ios, waiting for tree to go green)\n\n59187 Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)\n\nsevere: regression - 2 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-328", "text": "severe: regression - 2 pull request(s)\n\n55408 Fix InputDecorator intrinsic height reporting (a: text input, cla: yes, f: material design, f: scrolling, framework, severe: regression, waiting for tree to go green)\n\n57037 Making DropdownButtonFormField to re-render if parent widget changes (cla: yes, f: material design, found in release: 1.17, found in release: 1.18, framework, severe: regression, waiting for tree to go green)\n\na: platform-views - 2 pull request(s)\n\n50111 fix memory leak of android view (a: platform-views, cla: yes, p: framework, perf: memory, platform-android, plugin, waiting for tree to go green)\n\n55609 Add benchmark for hybrid composition on Android (a: platform-views, cla: yes, t: flutter driver, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-329", "text": "a: animation - 2 pull request(s)\n\n60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n60836 Expose height and width factor in AnimatedAlign (a: animation, cla: yes, framework, waiting for tree to go green)\n\na: annoyance - 2 pull request(s)\n\n59187 Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-330", "text": "60726 Doc and Error Message Improvements (a: animation, a: annoyance, a: error message, a: quality, a: text input, cla: yes, d: api docs, d: examples, documentation, f: cupertino, f: material design, framework, waiting for tree to go green)\n\nt: flutter doctor - 2 pull request(s)\n\n56928 Add mirror overrides to doctor output (a: triage improvements, cla: yes, t: flutter doctor, tool, waiting for tree to go green)\n\n57963 [flutter_tools] Support latest IntelliJ via Jetbrain toolbox (cla: yes, t: flutter doctor, tool)\n\nfound in release: 1.17 - 1 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-331", "text": "found in release: 1.17 - 1 pull request(s)\n\n57037 Making DropdownButtonFormField to re-render if parent widget changes (cla: yes, f: material design, found in release: 1.17, found in release: 1.18, framework, severe: regression, waiting for tree to go green)\n\nf: inspector - 1 pull request(s)\n\n55911 Text field height fix (a: text input, cla: yes, f: inspector, f: material design, framework, waiting for tree to go green)\n\nf: gestures - 1 pull request(s)\n\n57838 Add sample code of GestureDetector with no children (cla: yes, d: api docs, d: examples, documentation, f: gestures, framework, waiting for tree to go green)\n\nplatform-mac - 1 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-332", "text": "platform-mac - 1 pull request(s)\n\n56794 [web & desktop] Hide all characters in a TextField, when obscureText is true on web & desktop (cla: yes, f: material design, framework, platform-mac, platform-web, waiting for tree to go green)\n\ncustomer: quill (g3) - 1 pull request(s)\n\n59187 Support floating the header slivers of a NestedScrollView (a: annoyance, a: quality, cla: yes, customer: crowd, customer: quill (g3), d: api docs, d: examples, documentation, f: material design, f: scrolling, framework, waiting for tree to go green)\n\nplugin - 1 pull request(s)\n\n50111 fix memory leak of android view (a: platform-views, cla: yes, p: framework, perf: memory, platform-android, plugin, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-333", "text": "customer: peppermint - 1 pull request(s)\n\n52126 Autofill Part 1 (cla: yes, customer: peppermint, f: cupertino, f: material design, framework, waiting for tree to go green)\n\nsevere: crash - 1 pull request(s)\n\n60546 Fix daemon device discovery crash when Xcode isn\u2019t installed (cla: yes, severe: crash, t: xcode, tool, waiting for tree to go green)\n\ncustomer: octopod - 1 pull request(s)\n\n59363 Add material state mouse cursor to TextField (a: text input, cla: yes, customer: octopod, f: material design, framework, waiting for tree to go green)\n\ncustomer: fun (g3) - 1 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-334", "text": "customer: fun (g3) - 1 pull request(s)\n\n54919 Add MediaQueryData.navigationMode and allow controls to be focused when disabled. (cla: yes, customer: fun (g3), f: material design, framework)\n\ncustomer: fuchsia - 1 pull request(s)\n\n60152 Remove unused physicalDepth code (a: tests, cla: yes, customer: fuchsia, framework, waiting for tree to go green)\n\np: framework - 1 pull request(s)\n\n50111 fix memory leak of android view (a: platform-views, cla: yes, p: framework, perf: memory, platform-android, plugin, waiting for tree to go green)\n\nt: flutter driver - 1 pull request(s)\n\n55609 Add benchmark for hybrid composition on Android (a: platform-views, cla: yes, t: flutter driver, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-335", "text": "customer: dream (g3) - 1 pull request(s)\n\n53880 Use no locale as synonym for nb (a: internationalization, cla: yes, customer: dream (g3), f: cupertino, f: material design, team, waiting for tree to go green)\n\ncla: no - 1 pull request(s)\n\n54111 Manual roll of engine 9b8dcc7ecffe..df257e59c241 (cla: no, engine)\n\nteam: flakes - 1 pull request(s)\n\n54478 Fix environment leakage in doctor_test (cla: yes, team, team: flakes, team: infra, tool)\n\nteam: gallery - 1 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-336", "text": "team: gallery - 1 pull request(s)\n\n52507 enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)\n\na: video - 1 pull request(s)\n\n59966 Added a filterQuality parameter to texture (a: quality, a: video, cla: yes, framework, waiting for tree to go green)\n\na: mouse - 1 pull request(s)\n\n59883 Refactor mouse hit testing system: Direct mouse hit test (a: mouse, cla: yes, f: material design, framework, severe: performance, waiting for tree to go green)\n\nwaiting for customer response - 1 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-337", "text": "waiting for customer response - 1 pull request(s)\n\n54133 [flutter_tools] ensure the tool can find SDK manager on windows (cla: yes, tool, waiting for customer response)\n\na: debugging - 1 pull request(s)\n\n59877 Allow detection of images using more memory than necessary (a: debugging, a: error message, a: images, cla: yes, framework)\n\nfound in release: 1.18 - 1 pull request(s)\n\n57037 Making DropdownButtonFormField to re-render if parent widget changes (cla: yes, f: material design, found in release: 1.17, found in release: 1.18, framework, severe: regression, waiting for tree to go green)\n\nMerged PRs by labels for flutter/engine\n\nplatform-android - 62 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-338", "text": "platform-android - 62 pull request(s)\n\n17509 Implement repeat filtering logic in Android Embedder (affects: text input, cla: yes, platform-android)\n\n17588 set -e on assemble_apk.sh (cla: yes, platform-android, waiting for tree to go green)\n\n17948 Set SkSL asset manager in RunConfiguration ctor (cla: yes, platform-android, waiting for tree to go green)\n\n18042 Wire up channel for restoration data (cla: yes, platform-android)\n\n18193 Add fullscreen padding workarounds to v2 android embedding (bug (regression), cla: yes, platform-android)\n\n18645 Platform resolved locale and Android localization refactor (cla: yes, platform-android, platform-ios, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-339", "text": "18814 Allow texture sampling quality control (cla: yes, platform-android, platform-ios)\n\n18826 Revert \u201conDisplayPlatformView JNI\u201d (cla: yes, platform-android)\n\n18828 onDisplayPlatformView JNI (cla: yes, platform-android, waiting for tree to go green)\n\n18831 Reset AndroidExternalViewEmbedder state when starting a new frame (cla: yes, platform-android, waiting for tree to go green)\n\n18841 Run the rasterizer on the platform thread (cla: yes, platform-android, platform-ios)\n\n18849 Add RAII wrapper for EGLSurface (cla: yes, platform-android)\n\n18859 add onDisplayOverlaySurface JNI (cla: yes, platform-android)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-340", "text": "18865 Add a deprecation note to FlutterFragmentActivity (cla: yes, platform-android)\n\n18866 onBeginFrame JNI (cla: yes, platform-android, waiting for tree to go green)\n\n18867 onEndFrame JNI (cla: yes, platform-android, waiting for tree to go green)\n\n18875 Fix intent builder visibility (cla: yes, platform-android, waiting for tree to go green)\n\n18903 Put JNI functions under an interface (cla: yes, platform-android)\n\n18916 Add support for horizontalDoubleArrow and verticalDoubleArrow cursors (cla: yes, platform-android)\n\n18938 Move Surface and friends to flow/ (cla: yes, platform-android, platform-ios, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-341", "text": "18971 Revert \u201cAdd RAII wrapper for EGLSurface\u201d (cla: yes, platform-android)\n\n18977 Reland: Add RAII wrapper for EGLSurface (cla: yes, platform-android)\n\n18979 Call Shell::NotifyLowMemoryWarning on Android Trim and LowMemory events (cla: yes, platform-android)\n\n18985 Call destructor and fix check (cla: yes, platform-android)\n\n19023 Revert \u201cCall Shell::NotifyLowMemoryWarning on Android Trim and LowMemory events\u201d (cla: yes, platform-android)\n\n19026 Call Shell::NotifyLowMemory when backgrounded/memory pressure occurs on Android (cla: yes, platform-android, waiting for tree to go green)\n\n19033 Implement external view embedder on Android (cla: yes, platform-android)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-342", "text": "19040 add createOverlaySurface JNI (cla: yes, platform-android, waiting for tree to go green)\n\n19075 Revert add createOverlaySurface JNI #19040 (cla: yes, platform-android)\n\n19076 createOverlaySurface JNI method (cla: yes, platform-android, waiting for tree to go green)\n\n19111 Word substitutions (cla: yes, platform-android, waiting for tree to go green)\n\n19136 Revert method channel platform resolved locale (cla: yes, platform-android)\n\n19143 Creates a new RenderMode for FlutterView (cla: yes, platform-android)\n\n19212 Reland \u201cAdd GetBoundingRectAfterMutations to EmbeddedViewParams to calculate the final bounding rect for platform view #19170\u201d (cla: yes, platform-android, platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-343", "text": "19221 JNI glue for calling PlatformViewsController.createOverlaySurface (cla: yes, platform-android, waiting for tree to go green)\n\n19223 Fix the return type of CreateContext (cla: yes, platform-android, waiting for tree to go green)\n\n19226 Implement PlatformViewsController.createOverlaySurface (cla: yes, platform-android)\n\n19228 Revert \u201cImplement PlatformViewsController.createOverlaySurface\u201d (cla: yes, platform-android)\n\n19232 Use public accessor and move keep annotation (cla: yes, platform-android)\n\n19242 Android platform view static thread merging (cla: yes, platform-android, platform-ios, waiting for tree to go green)\n\n19245 Reland \u201cImplement PlatformViewsController.createOverlaySurface\u201d (cla: yes, platform-android, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-344", "text": "19257 EndFrame should be always called by rasterizer (cla: yes, platform-android, platform-ios)\n\n19258 Move OnDisplayPlatformView JNI call (cla: yes, platform-android)\n\n19261 Fix string format (cla: yes, platform-android)\n\n19266 Android native locale resolution algorithm (cla: yes, platform-android, waiting for tree to go green)\n\n19279 Initial work toward converting the FlutterView to use a FlutterImageView on demand (cla: yes, platform-android)\n\n19295 Position overlay layer views in PlatformViewsController.onDisplayOverlaySurface (cla: yes, platform-android)\n\n19319 Fix ImageReader \u201cunable to acquire a buffer item\u201d warnings in FlutterImageView (cla: yes, platform-android, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-345", "text": "19325 Fix hybrid composition bugs (cla: yes, platform-android, waiting for tree to go green)\n\n19339 Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)\n\n19344 Implement onDisplayPlatformView (cla: yes, platform-android, waiting for tree to go green)\n\n19402 Basic support for resizing overlay surfaces in hybrid composition (cla: yes, platform-android, waiting for tree to go green)\n\n19421 Update scenario UI screenshoots (cla: yes, platform-android)\n\n19426 Implement mutator stack on Android hybrid composition platform view (cla: yes, platform-android, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-346", "text": "19427 Synthesize touch events for hybrid views (cla: yes, platform-android)\n\n19435 Revert unintended change (cla: yes, platform-android, waiting for tree to go green)\n\n19482 FlutterView will handle dispatching all touch events to sub-views (cla: yes, platform-android)\n\n19484 Track motion events for reuse post gesture disambiguation (cla: yes, platform-android)\n\n19487 Switch to FlutterSurfaceView if no Android view is in the frame (cla: yes, platform-android, waiting for tree to go green)\n\n19555 Resubmit frame when the surface is switched (cla: yes, platform-android)\n\n19560 Add @Keep annotation to FlutterMutatorsStack (cla: yes, platform-android)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-347", "text": "19608 Propoagate Tap events on Android hybrid views (cla: yes, platform-android)\n\nplatform-ios - 21 pull request(s)\n\n18379 Remove currentLocale prepend on iOS (cla: yes, platform-ios)\n\n18645 Platform resolved locale and Android localization refactor (cla: yes, platform-android, platform-ios, waiting for tree to go green)\n\n18752 started polling the gpu usage (cla: yes, platform-ios)\n\n18814 Allow texture sampling quality control (cla: yes, platform-android, platform-ios)\n\n18816 Fixes UI freezes when multiple Flutter VC shared one engine (cla: yes, platform-ios)\n\n18841 Run the rasterizer on the platform thread (cla: yes, platform-android, platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-348", "text": "18938 Move Surface and friends to flow/ (cla: yes, platform-android, platform-ios, waiting for tree to go green)\n\n18950 fix iOS builds (cla: yes, platform-ios)\n\n18966 updated FlutterViewControllerTest tests names (cla: yes, platform-ios)\n\n19062 Instantiate image codec doc fix (cla: yes, platform-ios)\n\n19068 [iOS] handle text plugin negative range (cla: yes, platform-ios, waiting for tree to go green)\n\n19161 [iOS] text input methods to only call updateEditState once (cla: yes, platform-ios)\n\n19204 Revert \u201cAdd GetBoundingRectAfterMutations to EmbeddedViewParams to calculate the final bounding rect for platform view\u201d (cla: yes, platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-349", "text": "19212 Reland \u201cAdd GetBoundingRectAfterMutations to EmbeddedViewParams to calculate the final bounding rect for platform view #19170\u201d (cla: yes, platform-android, platform-ios)\n\n19242 Android platform view static thread merging (cla: yes, platform-android, platform-ios, waiting for tree to go green)\n\n19249 Made [SemanticsObject setAccessibilityContainer] a noop. (cla: yes, platform-ios)\n\n19257 EndFrame should be always called by rasterizer (cla: yes, platform-android, platform-ios)\n\n19289 Call Dart_NotifyLowMemory more on iOS (cla: yes, platform-ios, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-350", "text": "19339 Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)\n\n19556 Changed iOS channels to start cleaning up the accessibility handler when the bridge is deleted (cla: yes, platform-ios)\n\n19592 Only attempt surface creation in viewDidLayoutSubviews if the application is active. (cla: yes, platform-ios)\n\nsevere: performance - 16 pull request(s)\n\n17175 Enhance image_filter_layer caching to filter a cached child (cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\n17601 Read SkSLs from asset (cla: yes, perf: speed, severe: performance)\n\n17621 Optimize static content scrolling (cla: yes, perf: speed, severe: performance)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-351", "text": "17753 [fuchsia] Enable raster cache on Fuchsia (cla: yes, perf: speed, severe: performance)\n\n17914 Fix child caching in opacity_layer (cla: yes, perf: speed, severe: performance)\n\n18006 [fuchsia] set vsync_offset based on config file (cla: yes, severe: performance)\n\n18087 [profiling] CPU Profiling support for iOS (cla: yes, severe: performance)\n\n18132 Revert again \u201cRemove layer integral offset snapping\u201d (cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\n18164 Fix iOS platform view not deallocated (cla: yes, perf: memory, severe: performance)\n\n18225 Setup default font manager after engine created, to improve startup performance (cla: yes, perf: speed, severe: performance, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-352", "text": "18255 Restore integer snapping on OpacityLayer (cla: yes, perf: speed, severe: performance)\n\n18439 Roll buildroot to flutter/buildroot@a4f3c4d5023e080ee50596e6623d179e9c5f839b (cla: yes, perf: app size, perf: speed, severe: performance, waiting for tree to go green)\n\n18516 [profiling] Memory Profiling support for iOS (cla: yes, perf: memory, severe: performance)\n\n18829 Correct BM_ShellInitializationAndShutdown (cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\n18838 Avoid creating a vector when constructing Dart typed data objects for platform messages (cla: yes, perf: speed, severe: performance, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-353", "text": "18945 Add ui_benchmarks (affects: tests, cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\nperf: speed - 13 pull request(s)\n\n17175 Enhance image_filter_layer caching to filter a cached child (cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\n17601 Read SkSLs from asset (cla: yes, perf: speed, severe: performance)\n\n17621 Optimize static content scrolling (cla: yes, perf: speed, severe: performance)\n\n17753 [fuchsia] Enable raster cache on Fuchsia (cla: yes, perf: speed, severe: performance)\n\n17866 [web] Speedup color to css string 25% (cla: yes, perf: speed)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-354", "text": "17914 Fix child caching in opacity_layer (cla: yes, perf: speed, severe: performance)\n\n18132 Revert again \u201cRemove layer integral offset snapping\u201d (cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\n18225 Setup default font manager after engine created, to improve startup performance (cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\n18255 Restore integer snapping on OpacityLayer (cla: yes, perf: speed, severe: performance)\n\n18439 Roll buildroot to flutter/buildroot@a4f3c4d5023e080ee50596e6623d179e9c5f839b (cla: yes, perf: app size, perf: speed, severe: performance, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-355", "text": "18829 Correct BM_ShellInitializationAndShutdown (cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\n18838 Avoid creating a vector when constructing Dart typed data objects for platform messages (cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\n18945 Add ui_benchmarks (affects: tests, cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\nplatform-web - 13 pull request(s)\n\n17495 [web] Detect when the mouseup occurs outside of window (cla: yes, platform-web, waiting for tree to go green)\n\n17580 [web] Fix window.defaultRouteName (cla: yes, platform-web)\n\n17595 [web] Fix regression of pointer events on mobile browsers (cla: yes, platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-356", "text": "17615 [web] Combine duplicate platform message spy implementations (affects: tests, cla: yes, platform-web)\n\n17742 [web] Synthesize keyup event when the browser doesn\u2019t trigger a keyup (cla: yes, platform-web)\n\n17933 [web] Fix exception when getting boxes for rich text range (platform-web)\n\n17936 [web] Don\u2019t allow empty initial route (cla: yes, platform-web, waiting for tree to go green)\n\n18032 [web] Use correct shell operator to compare file limits (cla: yes, platform-web)\n\n18034 [web] First batch of unit tests for line breaker (cla: yes, platform-web)\n\n18040 [web] Add support for syncing unicode line break properties (cla: yes, platform-web)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-357", "text": "18795 [web] Line break algorithm using unicode properties (cla: yes, platform-web)\n\n18969 [web] Provide a hook to disable location strategy (cla: yes, platform-web)\n\n19586 [web][1/3] Start first batch of auto-generated (already passing) tests for line break (cla: yes, platform-web)\n\nplatform-fuchsia - 6 pull request(s)\n\n18625 Add tests & \u2013unopt to build_fuchsia_artifacts (cla: yes, platform-fuchsia)\n\n19003 Move fuchsia/scenic integration behind #define (affects: engine, cla: yes, code health, platform-fuchsia)\n\n19132 Add PlatformView support for Fuchsia (affects: engine, cla: yes, platform-fuchsia)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-358", "text": "19339 Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)\n\n19399 fuchsia: Fix profile build (cla: yes, platform-fuchsia)\n\n19500 fuchsia: Remove dead flutter_frontend_server code (cla: yes, code health, platform-fuchsia)\n\nperf: memory - 5 pull request(s)\n\n18164 Fix iOS platform view not deallocated (cla: yes, perf: memory, severe: performance)\n\n18516 [profiling] Memory Profiling support for iOS (cla: yes, perf: memory, severe: performance)\n\n18827 Record path memory usage in SkPictures (cla: yes, perf: memory)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-359", "text": "19067 Make upscaling opt in for image decoding (cla: yes, perf: memory)\n\n19283 Make Shell::NotifyLowMemoryWarning trace (cla: yes, perf: memory, waiting for tree to go green)\n\naffects: engine - 3 pull request(s)\n\n18492 fuchsia: Fix runtime_tests and shell_tests (affects: engine, bug, cla: yes, waiting for tree to go green)\n\n19003 Move fuchsia/scenic integration behind #define (affects: engine, cla: yes, code health, platform-fuchsia)\n\n19132 Add PlatformView support for Fuchsia (affects: engine, cla: yes, platform-fuchsia)\n\naffects: tests - 3 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-360", "text": "affects: tests - 3 pull request(s)\n\n17615 [web] Combine duplicate platform message spy implementations (affects: tests, cla: yes, platform-web)\n\n18945 Add ui_benchmarks (affects: tests, cla: yes, perf: speed, severe: performance, waiting for tree to go green)\n\n19339 Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)\n\ncode health - 3 pull request(s)\n\n19003 Move fuchsia/scenic integration behind #define (affects: engine, cla: yes, code health, platform-fuchsia)\n\n19219 Use FixtureTest to remove duplicate code (cla: yes, code health)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-361", "text": "19500 fuchsia: Remove dead flutter_frontend_server code (cla: yes, code health, platform-fuchsia)\n\naffects: text input - 2 pull request(s)\n\n17420 Make DPAD movement consider grapheme clusters (affects: text input, cla: yes)\n\n17509 Implement repeat filtering logic in Android Embedder (affects: text input, cla: yes, platform-android)\n\nplatform-windows - 2 pull request(s)\n\n18878 Refactor Win32FlutterWindow in preparation for UWP windowing implementation (cla: yes, platform-windows)\n\n19339 Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)\n\nbug - 1 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-362", "text": "bug - 1 pull request(s)\n\n18492 fuchsia: Fix runtime_tests and shell_tests (affects: engine, bug, cla: yes, waiting for tree to go green)\n\nbug (regression) - 1 pull request(s)\n\n18193 Add fullscreen padding workarounds to v2 android embedding (bug (regression), cla: yes, platform-android)\n\ncrash - 1 pull request(s)\n\n19280 skip ios safari tests on felt level (cla: yes, crash)\n\nperf: app size - 1 pull request(s)\n\n18439 Roll buildroot to flutter/buildroot@a4f3c4d5023e080ee50596e6623d179e9c5f839b (cla: yes, perf: app size, perf: speed, severe: performance, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-363", "text": "platform-linux - 1 pull request(s)\n\n19339 Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)\n\nplatform-macos - 1 pull request(s)\n\n19339 Fix broken mac/fuchsia compiles (affects: tests, cla: yes, platform-android, platform-fuchsia, platform-ios, platform-linux, platform-macos, platform-windows)\n\nMerged PRs by labels for flutter/plugins\n\nsubmit queue - 3 pull request(s)\n\n831 [google_maps_flutter] add zoom controls property (cla: yes, feature, submit queue)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-364", "text": "2634 [google_sign_in] Add serverAuthCode attribute to google_sign_in_platform_interface (cla: yes, submit queue, waiting for test harness)\n\n2743 reference apple sign in plugin from google sign in plugin (cla: yes, submit queue)\n\nwaiting for test harness - 3 pull request(s)\n\n2634 [google_sign_in] Add serverAuthCode attribute to google_sign_in_platform_interface (cla: yes, submit queue, waiting for test harness)\n\n2649 [google_sign_in_web] Ensure not-signed-in users are returned as null. (cla: yes, waiting for test harness)\n\n2817 [image_picker_for_web] Remove android directory. (cla: yes, waiting for test harness)\n\nin review - 2 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-365", "text": "in review - 2 pull request(s)\n\n2116 [google_sign_in] Add ability to return serverAuthCode (cla: yes, in review)\n\n2755 [image_picker] fixes for iOS which doesn\u2019t present camera/albums with more complex navigation (cla: yes, in review)\n\nbugfix - 1 pull request(s)\n\n2757 [url_launcher] Initialize previousAutomaticSystemUiAdjustment in launch (bugfix, cla: yes)\n\ndocumentation - 1 pull request(s)\n\n2766 [url_launcher] update README with enableJavaScript info (cla: yes, documentation, webview)\n\nfeature - 1 pull request(s)\n\n831 [google_maps_flutter] add zoom controls property (cla: yes, feature, submit queue)\n\nwebview - 1 pull request(s)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-366", "text": "webview - 1 pull request(s)\n\n2766 [url_launcher] update README with enableJavaScript info (cla: yes, documentation, webview)\n\nAll merged pull requests\n\nMerged PRs in flutter/flutter\n\nThere were 1243 pull requests.\n\n42940 Revise Action API (cla: yes, f: cupertino, f: material design, framework, team)\n\n50111 fix memory leak of android view (a: platform-views, cla: yes, p: framework, perf: memory, platform-android, plugin, waiting for tree to go green)\n\n50232 Docs \u2018a a\u2019 fix #1 (cla: yes, framework)\n\n50236 Docs \u2018that that\u2019 fix #2 (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-367", "text": "50237 Docs \u2018that that\u2019 fix #3 (cla: yes, framework, waiting for tree to go green)\n\n50412 Make CircularProgressIndicator\u2019s animation match native (a: fidelity, a: quality, cla: yes, f: material design, framework, waiting for tree to go green)\n\n50581 Implements \u2013machine flag for devices command (cla: yes, tool)\n\n50673 Update AppBar MediaQuery documentation (cla: yes, d: api docs, f: material design, framework, waiting for tree to go green)\n\n50915 Implement barrierDismissible for showCupertinoDialog (a: internationalization, cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n51126 [flutter_tools] fix build for projects with watchOS companion app (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-368", "text": "51465 Support New and Custom FAB Locations (cla: yes, f: material design, framework, waiting for tree to go green)\n\n51581 Fix outline button solid path when BorderSize.width is used (cla: yes, f: material design, framework, platform-web, waiting for tree to go green)\n\n51656 Set AA flag for painting images (a: images, cla: yes, framework, waiting for tree to go green, will affect goldens)\n\n52126 Autofill Part 1 (cla: yes, customer: peppermint, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n52507 enable avoid_equals_and_hash_code_on_mutable_classes (a: tests, cla: yes, d: examples, f: cupertino, f: material design, framework, team, team: gallery, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-369", "text": "52791 Read custom app project name from gradle.properties (cla: yes, team, tool)\n\n52990 Update Highlight mode initial value calculation. (cla: yes, f: focus, framework, waiting for tree to go green)\n\n52995 Fix typo of showCupertinoModalPopup documentation comment (cla: yes, f: cupertino, framework, waiting for tree to go green)\n\n53096 Devicelab tests (Chrome run, Web compile) for New Flutter Gallery (cla: yes, team, waiting for tree to go green)\n\n53358 Disable flutter_driver_screenshot_test_ios. (cla: yes, team, waiting for tree to go green)\n\n53374 [gen_l10n] Fallback feature for untranslated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-370", "text": "53381 Characters Package (a: text input, cla: yes, f: material design, framework, team, tool, waiting for tree to go green)\n\n53422 Rename GPU thread to raster thread in API docs (a: tests, cla: yes, framework, team, tool, waiting for tree to go green)\n\n53600 Restructure the Windows app template (cla: yes, team, tool)\n\n53616 Improving A11y for Flutter Gallery Demos (a: accessibility, a: tests, cla: yes, f: material design, framework, team)\n\n53655 Pass showCheckboxColumn parameter to DataTable (a: quality, cla: yes, f: material design, framework, team)\n\n53715 Support old and new git release tag formats (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-371", "text": "53765 [flutter_tools] re-enable debug extension (cla: yes, tool, waiting for tree to go green)\n\n53773 [flutter_tools] surgically remove outputs from shared directory (cla: yes, tool, waiting for tree to go green)\n\n53785 [flutter_tools] Don\u2019t generate native registrant classes if no pluginClass is defined (cla: yes, tool, waiting for tree to go green)\n\n53809 [flutter_tools] update to package vm_service: electric boogaloo (cla: yes, team, tool)\n\n53824 [gen_l10n] Add option for deferred loading on the web (a: internationalization, cla: yes, team, tool, waiting for tree to go green)\n\n53837 Skip Audits (2) (a: tests, cla: yes, f: cupertino, framework, platform-web, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-372", "text": "53843 Fix FlutterError.onError in debug mode (cla: yes, framework)\n\n53848 [flutter_tools] don\u2019t compute hashes of well known artifacts (cla: yes, tool)\n\n53853 [flutter_tools] remove indirection around App.framework production (cla: yes, tool)\n\n53859 [flutter_tools] write SkSL file to local file (cla: yes, tool)\n\n53868 [gen_l10n] Add scriptCode handling (a: internationalization, cla: yes, severe: new feature, team, tool)\n\n53875 Remove network images from cache on any exception during loading (a: images, cla: yes, framework)\n\n53876 Update Windows and Linux plugin templates (cla: yes, tool)\n\n53878 Fix diagnostics crash in profile mode (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-373", "text": "53879 Collect chrome://tracing data in Web benchmarks (cla: yes, team, work in progress; do not review)\n\n53880 Use no locale as synonym for nb (a: internationalization, cla: yes, customer: dream (g3), f: cupertino, f: material design, team, waiting for tree to go green)\n\n53882 Remove URL shortening from GitHub reporter similar issues URL (a: triage improvements, cla: yes, tool)\n\n53888 Add visualDensity and focus support to ListTile (a: desktop, cla: yes, f: material design, framework, team, waiting for tree to go green)\n\n53890 Roll engine f56e678e7fa9..abc72933e70c (5 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-374", "text": "53895 Roll engine abc72933e70c..f5127cc07a76 (2 commits) (cla: yes, waiting for tree to go green)\n\n53902 [flutter_tools] Launch DevTools with \u2018v\u2019 (cla: yes, tool, waiting for tree to go green)\n\n53916 Slider rebase work (cla: yes, f: material design, framework, team)\n\n53928 [macos] build: add build-number and buid-name arguments (cla: yes, tool, waiting for tree to go green)\n\n53936 Sanitize error message sent to GitHub crash reporter (a: triage improvements, cla: yes, tool)\n\n53940 Roll engine f5127cc07a76..83e493ae6262 (5 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-375", "text": "53944 [flutter_tools] update asset manifest to use package_config instead of package_map (cla: yes, tool)\n\n53945 [Material] Add focus, highlight, and keyboard shortcuts to Slider (cla: yes, f: material design, framework, waiting for tree to go green)\n\n53949 [flutter_tools] also listen to web stderr stream (cla: yes, tool)\n\n53951 Revert \u201c[flutter_tools] update to package vm_service: electric boogaloo\u201d (cla: yes, team, tool)\n\n53952 [web] Fix race condition in widget benchmarks (cla: yes, platform-web, team)\n\n53954 [gen_l10n] Fix plural parsing for translated messages (a: internationalization, cla: yes, team, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-376", "text": "53956 Revert \u201c[flutter_tools] surgically remove outputs from shared directory\u201d (cla: yes, tool)\n\n53957 [flutter_tools] Migrate to vm service 3 (reland): electric boogaloo (cla: yes, team, tool)\n\n53959 Clear ImageCache on MemoryPressure (a: images, cla: yes, framework, waiting for tree to go green)\n\n53960 [flutter_tools] Refresh VM state before executing hot reload (cla: yes, tool, waiting for tree to go green)\n\n53962 [flutter_tools] surgically remove outputs from shared directory (cla: yes, tool)\n\n53963 revive the android_views test (cla: yes, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-377", "text": "53966 Roll engine 83e493ae6262..09bc1fc45e50 (6 commits) (cla: yes, waiting for tree to go green)\n\n53967 Temporarily mark web benchmarks as flaky (cla: yes, team)\n\n53969 Use \u201cmeasured_frame\u201d instead of \u201cCrRendererMain\u201d to detect process ID (cla: yes, team)\n\n53970 Roll engine 09bc1fc45e50..4cfbe45033ef (2 commits) (cla: yes, waiting for tree to go green)\n\n53974 Remove strict repeat check from framework formatter (moved to engine) (cla: yes, framework)\n\n53980 Test creation of Android AlertDialogs with a platform view context (cla: yes, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-378", "text": "54015 Update roll_dev to work with new version numbers (cla: yes, team)\n\n54018 Disable deploy_gallery-macos shard while we investigate cert issues (cla: yes)\n\n54019 Roll engine 4cfbe45033ef..cb6fc305346f (8 commits) (cla: yes, waiting for tree to go green)\n\n54023 disable MotionEvents test (cla: yes, team)\n\n54032 Roll engine cb6fc305346f..2cc6a6d66d50 (1 commits) (cla: yes, waiting for tree to go green)\n\n54045 Roll engine 2cc6a6d66d50..bd725935ecfa (2 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-379", "text": "54056 Roll engine bd725935ecfa..f1f7d5db59f0 (1 commits) (cla: yes, waiting for tree to go green)\n\n54057 Roll engine f1f7d5db59f0..6e4817f09c47 (1 commits) (cla: yes, waiting for tree to go green)\n\n54064 Roll engine 6e4817f09c47..9b8dcc7ecffe (1 commits) (cla: yes, waiting for tree to go green)\n\n54083 Add a switch to use WebSockets for web debug proxy (cla: yes, tool, waiting for tree to go green)\n\n54110 Added \u2018barrierColor\u2019 and \u2018useSafeArea\u2019 parameters to the showDialog function. (cla: yes, f: material design, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-380", "text": "54111 Manual roll of engine 9b8dcc7ecffe..df257e59c241 (cla: no, engine)\n\n54114 Revert \u201c[flutter_tools] Migrate to vm service 3 (reland): electric boogaloo\u201d (cla: yes, team, tool)\n\n54119 Reland \u201ciOS UITextInput autocorrection prompt (#45354)\u201d (cla: yes, f: cupertino, f: material design, framework, waiting for tree to go green)\n\n54122 disable the \u201cgpu\u201d tracing category (cla: yes, team)\n\n54123 [flutter_tools] Use gzip level 1 for devfs transfer compression (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-381", "text": "54125 remove flutter_test quiver dep, use fake_async and clock instead (a: tests, cla: yes, framework, team)\n\n54128 fixes isAlwaysShown material scrollbar.dart (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54131 flutter/flutter 1.17.0-dev.3.1 cherrypicks (CQ+1, cla: yes, framework, tool)\n\n54132 [flutter_tools] Migrate to package:vm_service 4: trigonometric boogaloo (cla: yes, team, tool)\n\n54133 [flutter_tools] ensure the tool can find SDK manager on windows (cla: yes, tool, waiting for customer response)\n\n54140 iOS Text Selection Menu Overflow (a: text input, cla: yes, f: cupertino, f: material design, framework, platform-ios)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-382", "text": "54144 drop image package dependency for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54148 Roll engine df257e59c241..ab434c5540f5 (5 commits) (cla: yes)\n\n54150 Don\u2019t checkout master in roll_dev (cla: yes, team)\n\n54152 [flutter_tools] Remove fromPlatform from tests (cla: yes, team, tool, waiting for tree to go green)\n\n54153 Roll engine ab434c5540f5..2fab00eb8352 (3 commits) (cla: yes, waiting for tree to go green)\n\n54154 Convert iOS simulator log reader to simctl, use unified logging filters (cla: yes, platform-ios, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-383", "text": "54155 [cleanup] Remove unused script (cla: yes, team)\n\n54156 Roll engine 2fab00eb8352..49891e065313 (1 commits) (cla: yes, waiting for tree to go green)\n\n54159 Re-enable deploy_gallery after renewing the distribution certs (cla: yes, waiting for tree to go green)\n\n54163 Enable the android_views AlertDialog test (cla: yes, team)\n\n54171 System mouse cursors (a: tests, cla: yes, f: material design, framework)\n\n54176 Fix newly reported prefer_const_constructors lints. (a: internationalization, cla: yes, d: examples, team, tool)\n\n54181 Roll pinned xml and petitparser versions (cla: yes, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-384", "text": "54185 [gen_l10n] Handle single, double quotes, and dollar signs in strings (cla: yes, team, tool, waiting for tree to go green)\n\n54206 Updating codeowners for goldens (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54207 Roll engine 49891e065313..47f17a9ec33d (1 commits) (cla: yes, waiting for tree to go green)\n\n54208 [flutter_tools] migrate engine location check (a: null-safety, cla: yes, tool)\n\n54209 Revert \u201cRe-enable deploy_gallery after renewing the distribution certs\u201d (cla: yes)\n\n54212 Reverse dependency between services and scheduler (a: tests, cla: yes, framework, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-385", "text": "54214 re-enable android_view_test (cla: yes, team, waiting for tree to go green)\n\n54215 Update .cirrus.yml (cla: yes)\n\n54217 Fix frameworkVersionFor for flutter doctor and usage (cla: yes, tool, waiting for tree to go green)\n\n54218 [flutter_driver] Add SceneDisplayLag stats to timeline summary (a: tests, cla: yes, framework, waiting for tree to go green)\n\n54219 Remove escape dollar parameter in localizations_utils (a: internationalization, cla: yes, team, waiting for tree to go green)\n\n54220 [benchmarks] Handle multiple begin/end trace events (a: tests, cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-386", "text": "54225 Roll engine 47f17a9ec33d..47c607a0f191 (4 commits) (cla: yes, waiting for tree to go green)\n\n54227 [windows] Adds support for keyboard mapping. (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54228 [flutter_tools] allow passing non-config inputs (cla: yes, tool)\n\n54229 Allow ListTiles to be autofocused (cla: yes)\n\n54232 Roll engine 47c607a0f191..394ac6b4845d (4 commits) (cla: yes, waiting for tree to go green)\n\n54233 [flutter_tools] ensure build fails if asset files are missing (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-387", "text": "54234 Fix right alignment TWB longestLine (a: typography, cla: yes, framework)\n\n54236 Disable tracing for non-frame based Web benchmarks (cla: yes, team, waiting for tree to go green)\n\n54239 Roll engine 394ac6b4845d..5b4b1f33c6d6 (3 commits) (cla: yes, waiting for tree to go green)\n\n54243 Add API to services package that overrides HTTP ban (cla: yes, framework)\n\n54247 [versions] update versions (cla: yes, team)\n\n54248 Re-enable deploy_gallery (cla: yes, waiting for tree to go green)\n\n54258 [DecorationImage] adds scale property (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-388", "text": "54286 Revert bindings dependency workaround (cla: yes, framework, waiting for tree to go green)\n\n54291 Minimal implementation of FlutterError.toString for release mode (cla: yes, framework, waiting for tree to go green)\n\n54294 [flutter_tools] remove extra same repo check (cla: yes, tool)\n\n54299 [flutter_tools] migrate devfs web to package_config (a: null-safety, cla: yes, tool)\n\n54301 [flutter_tools] Remove packageMap usage and update package_config (a: null-safety, cla: yes, tool)\n\n54305 Add missing properties to TextStyle.apply (a: typography, cla: yes, framework, waiting for tree to go green)\n\n54306 Fix initial value for highlight mode on desktop platforms. (cla: yes, framework)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-389", "text": "54307 Revert \u201cre-enable android_view_test\u201d (cla: yes)\n\n54312 fix and re-land \u201cre-enable android_view_test (#54214)\u201d (cla: yes, team, waiting for tree to go green)\n\n54313 [flutter_tools] fix routing test (cla: yes, tool)\n\n54314 [gen_l10n] Expand integration tests (a: internationalization, cla: yes, tool, waiting for tree to go green)\n\n54317 PageStorage sample (cla: yes, d: api docs, d: examples, documentation, framework, team, waiting for tree to go green)\n\n54320 [flutter_tools] make verbose macOS builds actually verbose (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-390", "text": "54322 Skip Audit - Material Library (a: quality, a: tests, cla: yes, f: material design, framework, platform-web, team, waiting for tree to go green)\n\n54328 [flutter_tools] use new output location for the apk (cla: yes, tool, waiting for tree to go green)\n\n54334 [versions] update all flutter versions (cla: yes, team, waiting for tree to go green)\n\n54337 [flutter_tools] Move service methods to VmService extension methods (cla: yes, tool)\n\n54373 Roll engine 5b4b1f33c6d6..916f014d1cfb (24 commits) (cla: yes, waiting for tree to go green)\n\n54374 [flutter_tools] switch benchmark to isolate runnable (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-391", "text": "54383 Revert \u201cRoll engine 5b4b1f33c6d6..916f014d1cfb (24 commits)\u201d (cla: yes, engine)\n\n54387 Revert \u201cfix and re-land \u201cre-enable android_view_test (#54214)\u201d\u201d (cla: yes, team)\n\n54389 [flutter_tools] disable cache in devices test (cla: yes, tool)\n\n54394 replace simple empty Container with w & h with SizedBox (a: accessibility, cla: yes, f: cupertino, f: material design, framework)\n\n54396 [web] Don\u2019t collect trace info in the color grid benchmark (cla: yes, platform-web, team)\n\n54401 Cleanup in gen_l10n files (a: internationalization, cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-392", "text": "54403 Reland re-enable android_view_test #54214 (cla: yes, team, waiting for tree to go green)\n\n54407 Don\u2019t import plugins that don\u2019t support android in settings.gradle (a: accessibility, cla: yes, d: examples, team, tool, waiting for tree to go green)\n\n54409 Roll engine 5b4b1f33c6d6..9101b63f9872 (30 commits) (cla: yes, waiting for tree to go green)\n\n54414 [flutter_tools] attempt to fix benchmark mode test (cla: yes, tool)\n\n54428 Add .last_build_id to gitignore (cla: yes, tool, waiting for tree to go green)\n\n54442 Add null check in TextStyle.apply for TextBaseline (cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-393", "text": "54467 [flutter_tools] update compilation to use package config (a: null-safety, cla: yes, tool)\n\n54471 fix visual density prefer_const_constructors lint (cla: yes, team)\n\n54474 Roll engine 9101b63f9872..49f7cd04ac57 (14 commits) (cla: yes, waiting for tree to go green)\n\n54478 Fix environment leakage in doctor_test (cla: yes, team, team: flakes, team: infra, tool)\n\n54479 Enable gesture recognizer in selectable rich text (cla: yes, framework, waiting for tree to go green)\n\n54480 Revert \u201c[flutter_driver] Add SceneDisplayLag stats to timeline summar\u2026 (a: tests, cla: yes, framework, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-394", "text": "54481 Make TextFormFieldState.didChange change text fields value (cla: yes, f: material design, framework)\n\n54488 Remove Finder extended attributes from iOS project files (cla: yes, platform-ios, tool)\n\n54490 [flutter_driver] Reland add SceneDisplayLag stats to timeline summary (a: tests, cla: yes, framework, team, waiting for tree to go green)\n\n54492 Roll engine 49f7cd04ac57..adb4f9e9751b (2 commits) (cla: yes, waiting for tree to go green)\n\n54493 Use scheduleTask for adding licenses (cla: yes, framework, waiting for tree to go green)\n\n54494 Add A/B test mode to local devicelab runner (cla: yes, severe: performance, team, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-395", "text": "54496 Roll engine adb4f9e9751b..68fd83348896 (2 commits) (cla: yes, waiting for tree to go green)\n\n54497 [devicelab] Do not wait for connections after process has exited (cla: yes, team, waiting for tree to go green)\n\n54505 mark web benchmarks as not flaky (cla: yes, team)\n\n54508 Roll engine 68fd83348896..bed48056a651 (2 commits) (cla: yes, waiting for tree to go green)\n\n54513 Roll engine bed48056a651..d6c1398a3f06 (2 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-396", "text": "54519 Revert \u201cAdd API to services package that overrides HTTP ban\u201d (cla: yes, framework)\n\n54522 Reland \u201cAdd API to services package that overrides HTTP ban (#54243)\u201d (cla: yes, framework, team, waiting for tree to go green)\n\n54555 [flutter_tools] refactor FlutterManifest to be context-free (cla: yes, tool, waiting for tree to go green)\n\n54562 Roll engine d6c1398a3f06..f0e489600aca (4 commits) (cla: yes, waiting for tree to go green)\n\n54568 Roll engine f0e489600aca..e66389398e36 (1 commits) (cla: yes, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-397", "text": "54570 Roll engine e66389398e36..beb8a7ec48f6 (1 commits) (cla: yes, waiting for tree to go green)\n\n54603 Roll engine beb8a7ec48f6..aef9986cf14a (4 commits) (cla: yes, waiting for tree to go green)\n\n54613 [flutter_tools] support enable-experiment in flutter analyze (a: null-safety, cla: yes, tool, waiting for tree to go green)\n\n54617 [flutter_tools] initial support for enable experiment, run, apk, ios, macos (a: null-safety, cla: yes, team, tool)\n\n54618 Revert \u201c[devicelab] Do not wait for connections after process has exited\u201d (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-398", "text": "54622 Roll engine aef9986cf14a..cc7d2857a94e (1 commits) (cla: yes, waiting for tree to go green)\n\n54624 Roll engine cc7d2857a94e..926f6fcbbc10 (1 commits) (cla: yes, waiting for tree to go green)\n\n54638 Roll engine 926f6fcbbc10..521c1d443125 (2 commits) (cla: yes, waiting for tree to go green)\n\n54640 Allow WIllPopCallback to return null or false to veto the pop. (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54645 remove outdated build_runner instructions (cla: yes, tool, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-399", "text": "54649 Roll engine 521c1d443125..405fe37dcd10 (1 commits) (cla: yes, waiting for tree to go green)\n\n54670 Updated Nested SingleChildScrollView test for clarity (cla: yes, framework, waiting for tree to go green)\n\n54674 Add searchFieldStyle (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54676 print intermediate and raw A/B results when not silent (cla: yes, team)\n\n54678 Make Web shard count configurable via WEB_SHARD_COUNT (cla: yes, team, waiting for tree to go green)\n\n54679 [flutter_tools] Handle empty gzip file on Windows (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-400", "text": "54682 [flutter_tools] update coverage collector to use vmservice api (cla: yes, tool, waiting for tree to go green)\n\n54685 Roll engine 405fe37dcd10..deef2663aca4 (2 commits) (cla: yes, waiting for tree to go green)\n\n54691 Migrate Runner project base configuration (cla: yes, d: examples, t: xcode, team, tool)\n\n54692 [flutter_tools] support machine and coverage together but for real (cla: yes, tool, waiting for tree to go green)\n\n54697 fix APK location for devicelab (cla: yes, team)\n\n54698 Allow headers to be passed to the WebSocket connection for VMServiceFlutterDriver (a: tests, cla: yes, framework, waiting for tree to go green)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-401", "text": "54700 [flutter_tools] remove runFromSource, move runInView to vm_service extension (cla: yes, tool, waiting for tree to go green)\n\n54703 fix run release test APK location (cla: yes, team)\n\n54706 Wire in focusNode, focusColor, autofocus, and dropdownColor to DropdownButtonFormField (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54714 [Material] Added BottomNavigationBarTheme (cla: yes, f: material design, framework, waiting for tree to go green)\n\n54715 [flutter_tools] support any as a special web-hostname (cla: yes, tool, waiting for tree to go green)\n\n54717 [flutter_tools] don\u2019t elapse real time during fallback test (cla: yes, tool)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-402", "text": "54741 [flutter_driver] Fix browser check (a: tests, cla: yes, framework, waiting for tree to go green)\n\n54756 Fix/set mocks defaults (cla: yes, tool, waiting for tree to go green)\n\n54779 Revert \u201cReland \u201cAdd API to services package that overrides HTTP ban (#54243)\u201d\u201d (cla: yes, framework)\n\n54783 [flutter_tools] Fix roll dev script, add tests (cla: yes, team, tool, waiting for tree to go green)\n\n54786 [flutter_tools] fix response format of flutterVersion, flutterMemoryInfo (cla: yes, tool)\n\n54787 force upgraded package dependencies (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-403", "text": "54787 force upgraded package dependencies (cla: yes, team)\n\n54798 ToDo Audit - Cupertino+ Library (a: accessibility, cla: yes, d: examples, f: cupertino, framework, team, waiting for tree to go green)\n\n54805 [flutter_tools] dont suppress analytics from re-entrant macos build (cla: yes, tool, waiting for tree to go green)\n\n54806 Roll engine deef2663aca4..e6a2534b63ac (20 commits) (cla: yes, severe: API break, waiting for tree to go green, will affect goldens)\n\n54881 Add COM initializition to Windows template (cla: yes, tool)\n\n54883 Remove outliers in Web benchmarks to reduce noise; add visualization (cla: yes, team)", "source": "https://docs.flutter.dev/development/tools/sdk/release-notes/release-notes-1.20.0/index.html"} {"id": "e8a037261c43-404", "text": "54884 [flutter_tools] Provide global options with subcommand help text (cla: yes, tool)\n\n54887 Specify the devicelab task simulator runtime to support