blob: 91c3dabd8534102100fd0f8a225362d1eda66311 [file] [log] [blame]
// Copyright (c) 2025, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:analyzer_testing/src/mock_packages/mock_library.dart';
final renderingFlexLibrary = MockLibraryUnit('lib/src/rendering/flex.dart', r'''
enum CrossAxisAlignment { start, end, center, stretch, baseline }
enum MainAxisAlignment {
start,
end,
center,
spaceBetween,
spaceAround,
spaceEvenly,
}
enum MainAxisSize { min, max }
''');