This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// DropdownButton from material.dart does not allow to set a height | |
/// for the list of options inside it. | |
/// This is a copy of the Flutter's code which allows setting height also. | |
/// Once Flutter adds this in the framework this should be removed. | |
// Copyright 2015 The Chromium Authors. All rights reserved. | |
// Use of this source code is governed by a BSD-style license that can be | |
// found in the LICENSE file. | |
import 'dart:math' as math; |