This file contains hidden or 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
// This is an example Dart file that shows a bug or strange behavior | |
// that I'd like to get feedback on. When this BottomSheet closes, | |
// it leaves a "dimple", or small dip, in the BottomAppBar. It's | |
// certainly connected to the Floating Action Button and defining the | |
// floatingActionButtonLocation, but I don't know how to avoid it. | |
import 'package:flutter/material.dart'; | |
void main() => runApp(const MyApp()); |
This file contains hidden or 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
import 'dart:math'; | |
/// Block Party Technical Exercise using Dart | |
/// By Ross Llewallyn | |
/// Completed in about 45 minutes | |
/// | |
/// Run (assuming you have Dart on your machine) using: `dart maxPairTest.dart` | |
/// Run on DartPad here: https://dartpad.dev/?id=c85169d3058f229a27edc250a063fecc | |
/// GitHub Gist here: https://gist.github.com/EnduringBeta/c85169d3058f229a27edc250a063fecc |