Change the order of the samples to match design documentation
This commit is contained in:
Родитель
e69a73b0c0
Коммит
6de6c39356
|
@ -13,6 +13,20 @@ void main() {
|
|||
}
|
||||
|
||||
List<SampleMeta> sampleCatalogue = [
|
||||
SampleMeta(
|
||||
'Extended Canvas',
|
||||
'View locations on a map extended across both screens.',
|
||||
'https://github.com/microsoft/flutter-dualscreen-samples/blob/main/lib/extended_canvas/extended_canvas.dart',
|
||||
'/extended-canvas',
|
||||
(context) => ExtendedCanvas(),
|
||||
),
|
||||
SampleMeta(
|
||||
'List Detail',
|
||||
'List of images on one screen and image details on the other screen.',
|
||||
'https://github.com/microsoft/flutter-dualscreen-samples/blob/main/lib/list_detail/list_detail.dart',
|
||||
'/list-detail',
|
||||
(context) => ListDetail(),
|
||||
),
|
||||
SampleMeta(
|
||||
'Two Page',
|
||||
'A book-like reading experience. You can see two pages simultaneously.',
|
||||
|
@ -48,20 +62,6 @@ List<SampleMeta> sampleCatalogue = [
|
|||
'/hinge-angle',
|
||||
(context) => HingeAngle(),
|
||||
),
|
||||
SampleMeta(
|
||||
'List Detail',
|
||||
'List of images on one screen and image details on the other screen.',
|
||||
'https://github.com/microsoft/flutter-dualscreen-samples/blob/main/lib/list_detail/list_detail.dart',
|
||||
'/list-detail',
|
||||
(context) => ListDetail(),
|
||||
),
|
||||
SampleMeta(
|
||||
'Extended Canvas',
|
||||
'View locations on a map extended across both screens.',
|
||||
'https://github.com/microsoft/flutter-dualscreen-samples/blob/main/lib/extended_canvas/extended_canvas.dart',
|
||||
'/extended-canvas',
|
||||
(context) => ExtendedCanvas(),
|
||||
),
|
||||
];
|
||||
|
||||
class SampleMeta {
|
||||
|
|
Загрузка…
Ссылка в новой задаче