blob: d1c1e8e42f1cb2b36232c42712757d2f771adb9c [file] [log] [blame]
// 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.
enum CrossAxisAlignment {
start,
end,
center,
stretch,
baseline,
}
enum MainAxisAlignment {
start,
end,
center,
spaceBetween,
spaceAround,
spaceEvenly,
}
enum MainAxisSize {
min,
max,
}