diff --git a/LICENSE b/LICENSE index 238984a8..7992603f 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,7 @@ + MIT License -Copyright (c) 2023 Orange +Copyright (c) Orange SA Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/app/CHANGELOG.md b/app/CHANGELOG.md index afb17236..5ac0836e 100644 --- a/app/CHANGELOG.md +++ b/app/CHANGELOG.md @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Changed - Vertical Card customization updates ([#189](https://github.com/Orange-OpenSource/ods-flutter/issues/189)) +- Update Copyright in files ([#303](https://github.com/Orange-OpenSource/ods-flutter/issues/303)) ### [0.7.O](https://github.com/Orange-OpenSource/ods-flutter/compare/0.1.1...0.7.0) - 2023-02-02 diff --git a/app/lib/constants.dart b/app/lib/constants.dart index eac6e266..2c410b14 100644 --- a/app/lib/constants.dart +++ b/app/lib/constants.dart @@ -1 +1,13 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + const int mobileUiMaxScreenWidth = 500; diff --git a/app/lib/domain/recipes/my_app_state.dart b/app/lib/domain/recipes/my_app_state.dart index 4a8663c9..ad480b39 100644 --- a/app/lib/domain/recipes/my_app_state.dart +++ b/app/lib/domain/recipes/my_app_state.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:english_words/english_words.dart'; import 'package:flutter/material.dart'; @@ -31,4 +43,4 @@ class MyAppState extends ChangeNotifier { favorites.remove(pair); notifyListeners(); } -} \ No newline at end of file +} diff --git a/app/lib/domain/recipes/recipes_entities.dart b/app/lib/domain/recipes/recipes_entities.dart index f068dd22..caa247ae 100644 --- a/app/lib/domain/recipes/recipes_entities.dart +++ b/app/lib/domain/recipes/recipes_entities.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'dart:convert'; Entity entityFromJson(String str) => Entity.fromJson(json.decode(str)); diff --git a/app/lib/main.dart b/app/lib/main.dart index c3f82d76..4cb59f4d 100644 --- a/app/lib/main.dart +++ b/app/lib/main.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + // ignore_for_file: prefer_const_constructors, prefer_const_literals_to_create_immutables import 'package:flutter/material.dart'; diff --git a/app/lib/ui/about/about_screen.dart b/app/lib/ui/about/about_screen.dart index a30a8923..70d2d715 100644 --- a/app/lib/ui/about/about_screen.dart +++ b/app/lib/ui/about/about_screen.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:get/get.dart'; diff --git a/app/lib/ui/about/changelog_screen.dart b/app/lib/ui/about/changelog_screen.dart index 29bd4afb..0d4485b1 100644 --- a/app/lib/ui/about/changelog_screen.dart +++ b/app/lib/ui/about/changelog_screen.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'dart:convert'; import 'dart:io'; diff --git a/app/lib/ui/components/app_bars/top/top_app_bar_large.dart b/app/lib/ui/components/app_bars/top/top_app_bar_large.dart index 842c303e..f048299b 100644 --- a/app/lib/ui/components/app_bars/top/top_app_bar_large.dart +++ b/app/lib/ui/components/app_bars/top/top_app_bar_large.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/components/app_bar/top/ods_large_top_app_bar.dart'; diff --git a/app/lib/ui/components/app_bars/top/top_app_bars.dart b/app/lib/ui/components/app_bars/top/top_app_bars.dart index ff3ebc37..fdfacbb8 100644 --- a/app/lib/ui/components/app_bars/top/top_app_bars.dart +++ b/app/lib/ui/components/app_bars/top/top_app_bars.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/components/app_bar/top/ods_top_app_bar.dart'; diff --git a/app/lib/ui/components/app_bars/top/top_app_bars_customization.dart b/app/lib/ui/components/app_bars/top/top_app_bars_customization.dart index b342d788..2eeddb79 100644 --- a/app/lib/ui/components/app_bars/top/top_app_bars_customization.dart +++ b/app/lib/ui/components/app_bars/top/top_app_bars_customization.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; class _ComponentTopAppBarsCustomization extends InheritedWidget { diff --git a/app/lib/ui/components/buttons/button_contained.dart b/app/lib/ui/components/buttons/button_contained.dart index e3ea94b9..41ddafe3 100644 --- a/app/lib/ui/components/buttons/button_contained.dart +++ b/app/lib/ui/components/buttons/button_contained.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:flutter_svg/svg.dart'; diff --git a/app/lib/ui/components/buttons/button_customization.dart b/app/lib/ui/components/buttons/button_customization.dart index 7d9f6b0f..e2380024 100644 --- a/app/lib/ui/components/buttons/button_customization.dart +++ b/app/lib/ui/components/buttons/button_customization.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter_demo/ui/components/buttons/button_enum.dart'; diff --git a/app/lib/ui/components/buttons/button_enum.dart b/app/lib/ui/components/buttons/button_enum.dart index 658d75f0..90303a50 100644 --- a/app/lib/ui/components/buttons/button_enum.dart +++ b/app/lib/ui/components/buttons/button_enum.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; diff --git a/app/lib/ui/components/buttons/button_outlined.dart b/app/lib/ui/components/buttons/button_outlined.dart index 4e753959..9d1a4c96 100644 --- a/app/lib/ui/components/buttons/button_outlined.dart +++ b/app/lib/ui/components/buttons/button_outlined.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:flutter_svg/svg.dart'; diff --git a/app/lib/ui/components/buttons/button_text.dart b/app/lib/ui/components/buttons/button_text.dart index c7cc9de3..25757271 100644 --- a/app/lib/ui/components/buttons/button_text.dart +++ b/app/lib/ui/components/buttons/button_text.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:flutter_svg/svg.dart'; diff --git a/app/lib/ui/components/buttons/segmented/segmented_button.dart b/app/lib/ui/components/buttons/segmented/segmented_button.dart index 09256c78..7785caa2 100644 --- a/app/lib/ui/components/buttons/segmented/segmented_button.dart +++ b/app/lib/ui/components/buttons/segmented/segmented_button.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/components/button/segmented/ods_segmented_button.dart'; diff --git a/app/lib/ui/components/buttons/segmented/segmented_button_customization.dart b/app/lib/ui/components/buttons/segmented/segmented_button_customization.dart index 23b335f7..c7f6ae0c 100644 --- a/app/lib/ui/components/buttons/segmented/segmented_button_customization.dart +++ b/app/lib/ui/components/buttons/segmented/segmented_button_customization.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter_demo/ui/components/buttons/segmented/segmented_button_enum.dart'; diff --git a/app/lib/ui/components/buttons/segmented/segmented_button_enum.dart b/app/lib/ui/components/buttons/segmented/segmented_button_enum.dart index c2775276..140cc4c6 100644 --- a/app/lib/ui/components/buttons/segmented/segmented_button_enum.dart +++ b/app/lib/ui/components/buttons/segmented/segmented_button_enum.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; diff --git a/app/lib/ui/components/cards/card_customization.dart b/app/lib/ui/components/cards/card_customization.dart index 9214a4f9..38071baa 100644 --- a/app/lib/ui/components/cards/card_customization.dart +++ b/app/lib/ui/components/cards/card_customization.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter_demo/ui/components/cards/card_enum.dart'; diff --git a/app/lib/ui/components/cards/card_enum.dart b/app/lib/ui/components/cards/card_enum.dart index 10549d45..aee67abd 100644 --- a/app/lib/ui/components/cards/card_enum.dart +++ b/app/lib/ui/components/cards/card_enum.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; diff --git a/app/lib/ui/components/cards/card_horizontal.dart b/app/lib/ui/components/cards/card_horizontal.dart index 57a5cded..4bffdcfa 100644 --- a/app/lib/ui/components/cards/card_horizontal.dart +++ b/app/lib/ui/components/cards/card_horizontal.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'dart:math'; import 'package:flutter/material.dart'; diff --git a/app/lib/ui/components/cards/card_small.dart b/app/lib/ui/components/cards/card_small.dart index d13ba47b..bfc31e85 100644 --- a/app/lib/ui/components/cards/card_small.dart +++ b/app/lib/ui/components/cards/card_small.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'dart:math'; import 'package:flutter/material.dart'; diff --git a/app/lib/ui/components/cards/card_vertical_image_first.dart b/app/lib/ui/components/cards/card_vertical_image_first.dart index ee9f3e78..59cb0378 100644 --- a/app/lib/ui/components/cards/card_vertical_image_first.dart +++ b/app/lib/ui/components/cards/card_vertical_image_first.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'dart:math'; import 'package:flutter/material.dart'; diff --git a/app/lib/ui/components/checkboxes/checkboxes.dart b/app/lib/ui/components/checkboxes/checkboxes.dart index 44c40fad..9984d8b1 100644 --- a/app/lib/ui/components/checkboxes/checkboxes.dart +++ b/app/lib/ui/components/checkboxes/checkboxes.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/components/checkbox/ods_checkbox.dart'; diff --git a/app/lib/ui/components/checkboxes/checkboxes_customization.dart b/app/lib/ui/components/checkboxes/checkboxes_customization.dart index eac2fd3d..f17669c7 100644 --- a/app/lib/ui/components/checkboxes/checkboxes_customization.dart +++ b/app/lib/ui/components/checkboxes/checkboxes_customization.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; class _CheckboxesCustomization extends InheritedWidget { diff --git a/app/lib/ui/components/chips/chips_action.dart b/app/lib/ui/components/chips/chips_action.dart index 6bdd09c2..61c237af 100644 --- a/app/lib/ui/components/chips/chips_action.dart +++ b/app/lib/ui/components/chips/chips_action.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:flutter_svg/svg.dart'; diff --git a/app/lib/ui/components/chips/chips_choice.dart b/app/lib/ui/components/chips/chips_choice.dart index cd126661..cd609d6d 100644 --- a/app/lib/ui/components/chips/chips_choice.dart +++ b/app/lib/ui/components/chips/chips_choice.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/components/app_bar/top/ods_top_app_bar.dart'; diff --git a/app/lib/ui/components/chips/chips_customization.dart b/app/lib/ui/components/chips/chips_customization.dart index 13652323..141bdd98 100644 --- a/app/lib/ui/components/chips/chips_customization.dart +++ b/app/lib/ui/components/chips/chips_customization.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter_demo/ui/components/chips/chips_enum.dart'; diff --git a/app/lib/ui/components/chips/chips_enum.dart b/app/lib/ui/components/chips/chips_enum.dart index e9adf2cb..84dbdeea 100644 --- a/app/lib/ui/components/chips/chips_enum.dart +++ b/app/lib/ui/components/chips/chips_enum.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; diff --git a/app/lib/ui/components/chips/chips_filter.dart b/app/lib/ui/components/chips/chips_filter.dart index 55ba7b92..297e105b 100644 --- a/app/lib/ui/components/chips/chips_filter.dart +++ b/app/lib/ui/components/chips/chips_filter.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/components/app_bar/top/ods_top_app_bar.dart'; diff --git a/app/lib/ui/components/chips/chips_input.dart b/app/lib/ui/components/chips/chips_input.dart index 7d0df8c3..3955e595 100644 --- a/app/lib/ui/components/chips/chips_input.dart +++ b/app/lib/ui/components/chips/chips_input.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:flutter_svg/svg.dart'; diff --git a/app/lib/ui/components/component_entities.dart b/app/lib/ui/components/component_entities.dart index 714a222e..9ec31f12 100644 --- a/app/lib/ui/components/component_entities.dart +++ b/app/lib/ui/components/component_entities.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'dart:core'; import 'package:flutter/material.dart'; @@ -8,7 +20,8 @@ class Component { String description; List variants; - Component(this.title, this.imageResourceName, this.description, this.variants); + Component( + this.title, this.imageResourceName, this.description, this.variants); } class Variant { diff --git a/app/lib/ui/components/components.dart b/app/lib/ui/components/components.dart index 4910161c..c9ebf1d5 100644 --- a/app/lib/ui/components/components.dart +++ b/app/lib/ui/components/components.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter_demo/ui/components/app_bars/top/top_app_bar_large.dart'; diff --git a/app/lib/ui/components/components_screen.dart b/app/lib/ui/components/components_screen.dart index 591765ab..f705e484 100644 --- a/app/lib/ui/components/components_screen.dart +++ b/app/lib/ui/components/components_screen.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:ods_flutter/components/card/ods_small_card.dart'; diff --git a/app/lib/ui/components/detail_screen.dart b/app/lib/ui/components/detail_screen.dart index 7e465ede..548eb995 100644 --- a/app/lib/ui/components/detail_screen.dart +++ b/app/lib/ui/components/detail_screen.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:ods_flutter/guidelines/spacings.dart'; diff --git a/app/lib/ui/components/dialogs/dialogs.dart b/app/lib/ui/components/dialogs/dialogs.dart index e0a99145..fe47119c 100644 --- a/app/lib/ui/components/dialogs/dialogs.dart +++ b/app/lib/ui/components/dialogs/dialogs.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'dart:math'; import 'package:flutter/material.dart'; diff --git a/app/lib/ui/components/dialogs/dialogs_customization.dart b/app/lib/ui/components/dialogs/dialogs_customization.dart index 43c31929..e8d28612 100644 --- a/app/lib/ui/components/dialogs/dialogs_customization.dart +++ b/app/lib/ui/components/dialogs/dialogs_customization.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; class _DialogsCustomization extends InheritedWidget { diff --git a/app/lib/ui/components/floating_action_button/floating_action_button.dart b/app/lib/ui/components/floating_action_button/floating_action_button.dart index 484e082c..620270e9 100644 --- a/app/lib/ui/components/floating_action_button/floating_action_button.dart +++ b/app/lib/ui/components/floating_action_button/floating_action_button.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter/semantics.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; diff --git a/app/lib/ui/components/floating_action_button/floating_action_button_enum.dart b/app/lib/ui/components/floating_action_button/floating_action_button_enum.dart index b556d7e1..32a1682b 100644 --- a/app/lib/ui/components/floating_action_button/floating_action_button_enum.dart +++ b/app/lib/ui/components/floating_action_button/floating_action_button_enum.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; diff --git a/app/lib/ui/components/floating_action_button/floating_action_customization.dart b/app/lib/ui/components/floating_action_button/floating_action_customization.dart index 8b9b5a62..bf7fe840 100644 --- a/app/lib/ui/components/floating_action_button/floating_action_customization.dart +++ b/app/lib/ui/components/floating_action_button/floating_action_customization.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter_demo/ui/components/floating_action_button/floating_action_button_enum.dart'; diff --git a/app/lib/ui/components/lists/lists_checkboxes.dart b/app/lib/ui/components/lists/lists_checkboxes.dart index bbf1615a..05e433c9 100644 --- a/app/lib/ui/components/lists/lists_checkboxes.dart +++ b/app/lib/ui/components/lists/lists_checkboxes.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/components/lists/ods_list_checkbox.dart'; diff --git a/app/lib/ui/components/lists/lists_customization.dart b/app/lib/ui/components/lists/lists_customization.dart index 0554f992..05206f65 100644 --- a/app/lib/ui/components/lists/lists_customization.dart +++ b/app/lib/ui/components/lists/lists_customization.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter_demo/ui/components/lists/lists_leading_enum.dart'; import 'package:ods_flutter_demo/ui/components/lists/lists_trailing_enum.dart'; diff --git a/app/lib/ui/components/lists/lists_leading_enum.dart b/app/lib/ui/components/lists/lists_leading_enum.dart index 228161d6..df718840 100644 --- a/app/lib/ui/components/lists/lists_leading_enum.dart +++ b/app/lib/ui/components/lists/lists_leading_enum.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; diff --git a/app/lib/ui/components/lists/lists_radio_buttons.dart b/app/lib/ui/components/lists/lists_radio_buttons.dart index ff537603..28000841 100644 --- a/app/lib/ui/components/lists/lists_radio_buttons.dart +++ b/app/lib/ui/components/lists/lists_radio_buttons.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/components/lists/ods_list_radio_button.dart'; diff --git a/app/lib/ui/components/lists/lists_selection.dart b/app/lib/ui/components/lists/lists_selection.dart index 4b7d276c..87921ed7 100644 --- a/app/lib/ui/components/lists/lists_selection.dart +++ b/app/lib/ui/components/lists/lists_selection.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/components/chips/ods_choice_chips.dart'; diff --git a/app/lib/ui/components/lists/lists_standard.dart b/app/lib/ui/components/lists/lists_standard.dart index 452f163b..45d1b181 100644 --- a/app/lib/ui/components/lists/lists_standard.dart +++ b/app/lib/ui/components/lists/lists_standard.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/components/chips/ods_choice_chips.dart'; diff --git a/app/lib/ui/components/lists/lists_switches.dart b/app/lib/ui/components/lists/lists_switches.dart index c39add90..913ba444 100644 --- a/app/lib/ui/components/lists/lists_switches.dart +++ b/app/lib/ui/components/lists/lists_switches.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/components/lists/ods_list_switch.dart'; diff --git a/app/lib/ui/components/lists/lists_trailing_enum.dart b/app/lib/ui/components/lists/lists_trailing_enum.dart index 68fbe9f1..767f532a 100644 --- a/app/lib/ui/components/lists/lists_trailing_enum.dart +++ b/app/lib/ui/components/lists/lists_trailing_enum.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; diff --git a/app/lib/ui/components/material/component_material.dart b/app/lib/ui/components/material/component_material.dart index ef4eeb9f..7302802e 100644 --- a/app/lib/ui/components/material/component_material.dart +++ b/app/lib/ui/components/material/component_material.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:ods_flutter/guidelines/spacings.dart'; diff --git a/app/lib/ui/components/menus/menu_customization.dart b/app/lib/ui/components/menus/menu_customization.dart index 729a2b8c..5b40f957 100644 --- a/app/lib/ui/components/menus/menu_customization.dart +++ b/app/lib/ui/components/menus/menu_customization.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; class _MenuCustomization extends InheritedWidget { diff --git a/app/lib/ui/components/menus/menu_dropdown.dart b/app/lib/ui/components/menus/menu_dropdown.dart index bbbc5c6c..dfd6da1e 100644 --- a/app/lib/ui/components/menus/menu_dropdown.dart +++ b/app/lib/ui/components/menus/menu_dropdown.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'dart:math'; import 'package:flutter/material.dart'; diff --git a/app/lib/ui/components/menus/menu_exposed_dropdown.dart b/app/lib/ui/components/menus/menu_exposed_dropdown.dart index 6b20d79c..a60f64b6 100644 --- a/app/lib/ui/components/menus/menu_exposed_dropdown.dart +++ b/app/lib/ui/components/menus/menu_exposed_dropdown.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:flutter_svg/flutter_svg.dart'; diff --git a/app/lib/ui/components/navigation_bar/navigation_bar.dart b/app/lib/ui/components/navigation_bar/navigation_bar.dart index 4f5489f6..f5082ab6 100644 --- a/app/lib/ui/components/navigation_bar/navigation_bar.dart +++ b/app/lib/ui/components/navigation_bar/navigation_bar.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/components/lists/ods_list_switch.dart'; diff --git a/app/lib/ui/components/navigation_bar/navigation_bar_customization.dart b/app/lib/ui/components/navigation_bar/navigation_bar_customization.dart index 5ccca09e..0412c5c3 100644 --- a/app/lib/ui/components/navigation_bar/navigation_bar_customization.dart +++ b/app/lib/ui/components/navigation_bar/navigation_bar_customization.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; class _NavigationBarCustomization extends InheritedWidget { diff --git a/app/lib/ui/components/progress/progress_circular.dart b/app/lib/ui/components/progress/progress_circular.dart index 6e0c4033..3270bd91 100644 --- a/app/lib/ui/components/progress/progress_circular.dart +++ b/app/lib/ui/components/progress/progress_circular.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/components/app_bar/top/ods_top_app_bar.dart'; diff --git a/app/lib/ui/components/progress/progress_customization.dart b/app/lib/ui/components/progress/progress_customization.dart index 83652a4b..1f9b2399 100644 --- a/app/lib/ui/components/progress/progress_customization.dart +++ b/app/lib/ui/components/progress/progress_customization.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter_demo/ui/components/progress/progress_enum.dart'; diff --git a/app/lib/ui/components/progress/progress_enum.dart b/app/lib/ui/components/progress/progress_enum.dart index 19093ad3..51ca5619 100644 --- a/app/lib/ui/components/progress/progress_enum.dart +++ b/app/lib/ui/components/progress/progress_enum.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; diff --git a/app/lib/ui/components/progress/progress_linear.dart b/app/lib/ui/components/progress/progress_linear.dart index bdb6569c..8d5c6a67 100644 --- a/app/lib/ui/components/progress/progress_linear.dart +++ b/app/lib/ui/components/progress/progress_linear.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/components/app_bar/top/ods_top_app_bar.dart'; diff --git a/app/lib/ui/components/radio_buttons/radio_buttons.dart b/app/lib/ui/components/radio_buttons/radio_buttons.dart index 9501d946..d6e90f9f 100644 --- a/app/lib/ui/components/radio_buttons/radio_buttons.dart +++ b/app/lib/ui/components/radio_buttons/radio_buttons.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/components/lists/ods_list_switch.dart'; diff --git a/app/lib/ui/components/radio_buttons/radio_buttons_customization.dart b/app/lib/ui/components/radio_buttons/radio_buttons_customization.dart index d4cb5e9d..f6a16302 100644 --- a/app/lib/ui/components/radio_buttons/radio_buttons_customization.dart +++ b/app/lib/ui/components/radio_buttons/radio_buttons_customization.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; class _RadioButtonsCustomization extends InheritedWidget { diff --git a/app/lib/ui/components/sheets_bottom/sheets_bottom.dart b/app/lib/ui/components/sheets_bottom/sheets_bottom.dart index e779fa64..35417932 100644 --- a/app/lib/ui/components/sheets_bottom/sheets_bottom.dart +++ b/app/lib/ui/components/sheets_bottom/sheets_bottom.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/components/app_bar/top/ods_top_app_bar.dart'; diff --git a/app/lib/ui/components/sheets_bottom/sheets_bottom_customization.dart b/app/lib/ui/components/sheets_bottom/sheets_bottom_customization.dart index 9c9c4d89..418a7b18 100644 --- a/app/lib/ui/components/sheets_bottom/sheets_bottom_customization.dart +++ b/app/lib/ui/components/sheets_bottom/sheets_bottom_customization.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter_demo/ui/components/sheets_bottom/sheets_bottom_enum.dart'; diff --git a/app/lib/ui/components/sheets_bottom/sheets_bottom_enum.dart b/app/lib/ui/components/sheets_bottom/sheets_bottom_enum.dart index eebdb3cb..1ab09050 100644 --- a/app/lib/ui/components/sheets_bottom/sheets_bottom_enum.dart +++ b/app/lib/ui/components/sheets_bottom/sheets_bottom_enum.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; diff --git a/app/lib/ui/components/sliders/sliders.dart b/app/lib/ui/components/sliders/sliders.dart index 1d1254ff..e68bc9ea 100644 --- a/app/lib/ui/components/sliders/sliders.dart +++ b/app/lib/ui/components/sliders/sliders.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/components/app_bar/top/ods_top_app_bar.dart'; diff --git a/app/lib/ui/components/sliders/sliders_customization.dart b/app/lib/ui/components/sliders/sliders_customization.dart index a84a8d97..7fb76943 100644 --- a/app/lib/ui/components/sliders/sliders_customization.dart +++ b/app/lib/ui/components/sliders/sliders_customization.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; class _SlidersCustomization extends InheritedWidget { diff --git a/app/lib/ui/components/snackbars/snackbars.dart b/app/lib/ui/components/snackbars/snackbars.dart index ef254d77..b7022d61 100644 --- a/app/lib/ui/components/snackbars/snackbars.dart +++ b/app/lib/ui/components/snackbars/snackbars.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/components/button/ods_button.dart'; diff --git a/app/lib/ui/components/snackbars/snackbars_customization.dart b/app/lib/ui/components/snackbars/snackbars_customization.dart index d8502c5d..87c1246f 100644 --- a/app/lib/ui/components/snackbars/snackbars_customization.dart +++ b/app/lib/ui/components/snackbars/snackbars_customization.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; class _ComponentSnackbarsCustomization extends InheritedWidget { diff --git a/app/lib/ui/components/switches/switches.dart b/app/lib/ui/components/switches/switches.dart index a0c27786..0b9e70af 100644 --- a/app/lib/ui/components/switches/switches.dart +++ b/app/lib/ui/components/switches/switches.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/components/lists/ods_list_switch.dart'; diff --git a/app/lib/ui/components/switches/switches_customization.dart b/app/lib/ui/components/switches/switches_customization.dart index b5825b45..0030dee4 100644 --- a/app/lib/ui/components/switches/switches_customization.dart +++ b/app/lib/ui/components/switches/switches_customization.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; class _SwitchesCustomization extends InheritedWidget { diff --git a/app/lib/ui/components/textfields/enum/keyboard_enum.dart b/app/lib/ui/components/textfields/enum/keyboard_enum.dart index b955fc6e..b84b8644 100644 --- a/app/lib/ui/components/textfields/enum/keyboard_enum.dart +++ b/app/lib/ui/components/textfields/enum/keyboard_enum.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; diff --git a/app/lib/ui/components/textfields/enum/textfield_enum.dart b/app/lib/ui/components/textfields/enum/textfield_enum.dart index ef4d2cf1..a66ada1a 100644 --- a/app/lib/ui/components/textfields/enum/textfield_enum.dart +++ b/app/lib/ui/components/textfields/enum/textfield_enum.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; diff --git a/app/lib/ui/components/textfields/textfield.dart b/app/lib/ui/components/textfields/textfield.dart index 777afaba..20b20f6c 100644 --- a/app/lib/ui/components/textfields/textfield.dart +++ b/app/lib/ui/components/textfields/textfield.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'dart:io'; import 'dart:math'; diff --git a/app/lib/ui/components/textfields/textfield_customization.dart b/app/lib/ui/components/textfields/textfield_customization.dart index d689fa95..80b4dcb0 100644 --- a/app/lib/ui/components/textfields/textfield_customization.dart +++ b/app/lib/ui/components/textfields/textfield_customization.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter_demo/ui/components/textfields/enum/keyboard_enum.dart'; import 'package:ods_flutter_demo/ui/components/textfields/enum/textfield_enum.dart'; diff --git a/app/lib/ui/components/textfields/textfield_password.dart b/app/lib/ui/components/textfields/textfield_password.dart index 2bda8731..e56ee3b4 100644 --- a/app/lib/ui/components/textfields/textfield_password.dart +++ b/app/lib/ui/components/textfields/textfield_password.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'dart:io'; import 'dart:math'; diff --git a/app/lib/ui/guidelines/colours/guideline_colours_screen.dart b/app/lib/ui/guidelines/colours/guideline_colours_screen.dart index 38eaf390..0dcd1916 100644 --- a/app/lib/ui/guidelines/colours/guideline_colours_screen.dart +++ b/app/lib/ui/guidelines/colours/guideline_colours_screen.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/guidelines/spacings.dart'; diff --git a/app/lib/ui/guidelines/guidelines.dart b/app/lib/ui/guidelines/guidelines.dart index a751c99e..3f9d1bd1 100644 --- a/app/lib/ui/guidelines/guidelines.dart +++ b/app/lib/ui/guidelines/guidelines.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter_demo/ui/guidelines/colours/guideline_colours_screen.dart'; diff --git a/app/lib/ui/guidelines/guidelines_entities.dart b/app/lib/ui/guidelines/guidelines_entities.dart index f3247c32..a8a465b7 100644 --- a/app/lib/ui/guidelines/guidelines_entities.dart +++ b/app/lib/ui/guidelines/guidelines_entities.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'dart:core'; import 'package:flutter/material.dart'; diff --git a/app/lib/ui/guidelines/guidelines_screen.dart b/app/lib/ui/guidelines/guidelines_screen.dart index db798d64..d92e29b7 100644 --- a/app/lib/ui/guidelines/guidelines_screen.dart +++ b/app/lib/ui/guidelines/guidelines_screen.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:get/get.dart'; import 'package:ods_flutter/components/card/ods_cards_common.dart'; diff --git a/app/lib/ui/guidelines/spacings/guideline_spacings_image.dart b/app/lib/ui/guidelines/spacings/guideline_spacings_image.dart index 34ebd876..7b811f1c 100644 --- a/app/lib/ui/guidelines/spacings/guideline_spacings_image.dart +++ b/app/lib/ui/guidelines/spacings/guideline_spacings_image.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; class GuidelineSpacingImage extends StatelessWidget { diff --git a/app/lib/ui/guidelines/spacings/guideline_spacings_screen.dart b/app/lib/ui/guidelines/spacings/guideline_spacings_screen.dart index 44451d4f..3931cebf 100644 --- a/app/lib/ui/guidelines/spacings/guideline_spacings_screen.dart +++ b/app/lib/ui/guidelines/spacings/guideline_spacings_screen.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/components/lists/ods_list_standard_item.dart'; diff --git a/app/lib/ui/guidelines/spacings/spacing.dart b/app/lib/ui/guidelines/spacings/spacing.dart index 8cf7346a..42ae99ba 100644 --- a/app/lib/ui/guidelines/spacings/spacing.dart +++ b/app/lib/ui/guidelines/spacings/spacing.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:ods_flutter/guidelines/spacings.dart'; enum Spacing { diff --git a/app/lib/ui/guidelines/typography/guideline_typography_screen.dart b/app/lib/ui/guidelines/typography/guideline_typography_screen.dart index 0261f58e..c526bfee 100644 --- a/app/lib/ui/guidelines/typography/guideline_typography_screen.dart +++ b/app/lib/ui/guidelines/typography/guideline_typography_screen.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter/components/divider/ods_divider.dart'; diff --git a/app/lib/ui/main_app_bar.dart b/app/lib/ui/main_app_bar.dart index 9871f4ee..0aad8270 100644 --- a/app/lib/ui/main_app_bar.dart +++ b/app/lib/ui/main_app_bar.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter_demo/ui/theme/theme_selector.dart'; diff --git a/app/lib/ui/main_screen.dart b/app/lib/ui/main_screen.dart index a129a4a7..04991619 100644 --- a/app/lib/ui/main_screen.dart +++ b/app/lib/ui/main_screen.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/components/navigation_bar/ods_navigation_bar.dart'; import 'package:ods_flutter_demo/ui/utilities/navigation_items.dart'; diff --git a/app/lib/ui/modules/modules_screen.dart b/app/lib/ui/modules/modules_screen.dart index dfd4855c..9cc3bb8e 100644 --- a/app/lib/ui/modules/modules_screen.dart +++ b/app/lib/ui/modules/modules_screen.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; class ModulesScreen extends StatelessWidget { diff --git a/app/lib/ui/theme/model_theme.dart b/app/lib/ui/theme/model_theme.dart index a1b331ad..6623d528 100644 --- a/app/lib/ui/theme/model_theme.dart +++ b/app/lib/ui/theme/model_theme.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'theme_preference.dart'; diff --git a/app/lib/ui/theme/theme_preference.dart b/app/lib/ui/theme/theme_preference.dart index b8b77ef2..dd9db51a 100644 --- a/app/lib/ui/theme/theme_preference.dart +++ b/app/lib/ui/theme/theme_preference.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:shared_preferences/shared_preferences.dart'; diff --git a/app/lib/ui/theme/theme_selector.dart b/app/lib/ui/theme/theme_selector.dart index 166cd464..9aaf3896 100644 --- a/app/lib/ui/theme/theme_selector.dart +++ b/app/lib/ui/theme/theme_selector.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:ods_flutter_demo/ui/theme/model_theme.dart'; diff --git a/app/lib/ui/utilities/component_count_row.dart b/app/lib/ui/utilities/component_count_row.dart index 14098d8f..771b11bd 100644 --- a/app/lib/ui/utilities/component_count_row.dart +++ b/app/lib/ui/utilities/component_count_row.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; class ComponentCountRow extends StatefulWidget { diff --git a/app/lib/ui/utilities/display_image.dart b/app/lib/ui/utilities/display_image.dart index 3aade517..5530325e 100644 --- a/app/lib/ui/utilities/display_image.dart +++ b/app/lib/ui/utilities/display_image.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_svg/flutter_svg.dart'; diff --git a/app/lib/ui/utilities/expandable_text.dart b/app/lib/ui/utilities/expandable_text.dart index 28b2653e..3d3d3166 100644 --- a/app/lib/ui/utilities/expandable_text.dart +++ b/app/lib/ui/utilities/expandable_text.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; class ExpandableTextWidget extends StatefulWidget { diff --git a/app/lib/ui/utilities/navigation_items.dart b/app/lib/ui/utilities/navigation_items.dart index 5390ab25..bfc49ca3 100644 --- a/app/lib/ui/utilities/navigation_items.dart +++ b/app/lib/ui/utilities/navigation_items.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart'; import 'package:flutter_svg/svg.dart'; diff --git a/library/CHANGELOG.md b/library/CHANGELOG.md index 15368206..31a61705 100644 --- a/library/CHANGELOG.md +++ b/library/CHANGELOG.md @@ -7,11 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.8.O](https://github.com/Orange-OpenSource/ods-flutter/compare/0.1.1...0.8.0) - 2023-03-02 -## Added +### Added - [Bug]: ODS - Components - Cards - Horizontal card - divider ([#271](https://github.com/Orange-OpenSource/ods-flutter/issues/271)) - ODS - Component - Buttons: Segmented Buttons ([#7](https://github.com/Orange-OpenSource/ods-flutter/issues/7)) +### Changed + +- Update Copyright in files ([#303](https://github.com/Orange-OpenSource/ods-flutter/issues/303)) + ## [0.7.0](https://github.com/Orange-OpenSource/ods-flutter/compare/0.1.1...0.7.0) - 2023-02-02 ### Added diff --git a/library/lib/components/app_bar/top/ods_large_top_app_bar.dart b/library/lib/components/app_bar/top/ods_large_top_app_bar.dart index 2b06b005..f3ddbbf5 100644 --- a/library/lib/components/app_bar/top/ods_large_top_app_bar.dart +++ b/library/lib/components/app_bar/top/ods_large_top_app_bar.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; class OdsLargeTopAppBar extends StatelessWidget implements PreferredSizeWidget { diff --git a/library/lib/components/app_bar/top/ods_top_app_bar.dart b/library/lib/components/app_bar/top/ods_top_app_bar.dart index 49646f08..6929b130 100644 --- a/library/lib/components/app_bar/top/ods_top_app_bar.dart +++ b/library/lib/components/app_bar/top/ods_top_app_bar.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; class OdsAppTopBar extends StatelessWidget implements PreferredSizeWidget { diff --git a/library/lib/components/button/ods_button.dart b/library/lib/components/button/ods_button.dart index 35f109b4..eb6cb95c 100644 --- a/library/lib/components/button/ods_button.dart +++ b/library/lib/components/button/ods_button.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/guidelines/spacings.dart'; import 'package:ods_flutter/theme/ods_palette.dart'; diff --git a/library/lib/components/button/ods_outlined_button.dart b/library/lib/components/button/ods_outlined_button.dart index b35e2e2b..24414869 100644 --- a/library/lib/components/button/ods_outlined_button.dart +++ b/library/lib/components/button/ods_outlined_button.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; /// ODS Design Button. diff --git a/library/lib/components/button/ods_text_button.dart b/library/lib/components/button/ods_text_button.dart index 70480cab..cf90fa57 100644 --- a/library/lib/components/button/ods_text_button.dart +++ b/library/lib/components/button/ods_text_button.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/guidelines/spacings.dart'; import 'package:ods_flutter/theme/ods_palette.dart'; diff --git a/library/lib/components/button/segmented/ods_segmented_button.dart b/library/lib/components/button/segmented/ods_segmented_button.dart index 07938846..80d479ed 100644 --- a/library/lib/components/button/segmented/ods_segmented_button.dart +++ b/library/lib/components/button/segmented/ods_segmented_button.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; /// ODS RadioButton. diff --git a/library/lib/components/card/ods_cards_common.dart b/library/lib/components/card/ods_cards_common.dart index 0ffbdf19..2262210c 100644 --- a/library/lib/components/card/ods_cards_common.dart +++ b/library/lib/components/card/ods_cards_common.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; class OdsCardImage extends StatelessWidget { diff --git a/library/lib/components/card/ods_horizontal_card.dart b/library/lib/components/card/ods_horizontal_card.dart index 71f69186..62c85469 100644 --- a/library/lib/components/card/ods_horizontal_card.dart +++ b/library/lib/components/card/ods_horizontal_card.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/components/button/ods_button.dart'; import 'package:ods_flutter/components/button/ods_outlined_button.dart'; diff --git a/library/lib/components/card/ods_small_card.dart b/library/lib/components/card/ods_small_card.dart index e912f1b7..df5c0a6c 100644 --- a/library/lib/components/card/ods_small_card.dart +++ b/library/lib/components/card/ods_small_card.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/guidelines/spacings.dart'; import 'package:ods_flutter/theme/ods_theme.dart'; diff --git a/library/lib/components/card/ods_vertical_image_first_card.dart b/library/lib/components/card/ods_vertical_image_first_card.dart index 2303e3b2..c1724823 100644 --- a/library/lib/components/card/ods_vertical_image_first_card.dart +++ b/library/lib/components/card/ods_vertical_image_first_card.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/components/button/ods_text_button.dart'; import 'package:ods_flutter/components/card/ods_cards_common.dart'; diff --git a/library/lib/components/checkbox/ods_checkbox.dart b/library/lib/components/checkbox/ods_checkbox.dart index f8701803..ff1ee750 100644 --- a/library/lib/components/checkbox/ods_checkbox.dart +++ b/library/lib/components/checkbox/ods_checkbox.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/l10n/gen/ods_localizations.dart'; diff --git a/library/lib/components/chips/ods_action_chips.dart b/library/lib/components/chips/ods_action_chips.dart index c71b3d8c..316b606c 100644 --- a/library/lib/components/chips/ods_action_chips.dart +++ b/library/lib/components/chips/ods_action_chips.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; /// ODS Design Chips. diff --git a/library/lib/components/chips/ods_chip_common.dart b/library/lib/components/chips/ods_chip_common.dart index 62f050ba..d0587251 100644 --- a/library/lib/components/chips/ods_chip_common.dart +++ b/library/lib/components/chips/ods_chip_common.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; /// diff --git a/library/lib/components/chips/ods_choice_chips.dart b/library/lib/components/chips/ods_choice_chips.dart index 473a7603..27c8029c 100644 --- a/library/lib/components/chips/ods_choice_chips.dart +++ b/library/lib/components/chips/ods_choice_chips.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'ods_chip_common.dart'; diff --git a/library/lib/components/chips/ods_filter_chips.dart b/library/lib/components/chips/ods_filter_chips.dart index 069935fa..e4834745 100644 --- a/library/lib/components/chips/ods_filter_chips.dart +++ b/library/lib/components/chips/ods_filter_chips.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; /// ODS Design Chips. diff --git a/library/lib/components/chips/ods_input_chips.dart b/library/lib/components/chips/ods_input_chips.dart index 91aefeb0..93b53a51 100644 --- a/library/lib/components/chips/ods_input_chips.dart +++ b/library/lib/components/chips/ods_input_chips.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/theme/ods_palette.dart'; diff --git a/library/lib/components/dialogs/ods_alert_dialog.dart b/library/lib/components/dialogs/ods_alert_dialog.dart index d79e6496..1c5f46bb 100644 --- a/library/lib/components/dialogs/ods_alert_dialog.dart +++ b/library/lib/components/dialogs/ods_alert_dialog.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/guidelines/spacings.dart'; diff --git a/library/lib/components/divider/ods_divider.dart b/library/lib/components/divider/ods_divider.dart index e7aaa5fd..5a0e9363 100644 --- a/library/lib/components/divider/ods_divider.dart +++ b/library/lib/components/divider/ods_divider.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; /// ODS Divider is a styled thin line of 1dp thickness that groups content in lists and layouts. diff --git a/library/lib/components/floating_action_button/ods_fab.dart b/library/lib/components/floating_action_button/ods_fab.dart index f0501265..2ce7100e 100644 --- a/library/lib/components/floating_action_button/ods_fab.dart +++ b/library/lib/components/floating_action_button/ods_fab.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; /// ODS Design Floating Action Button. diff --git a/library/lib/components/floating_action_button/ods_fab_extended.dart b/library/lib/components/floating_action_button/ods_fab_extended.dart index a8b69c05..fccfda57 100644 --- a/library/lib/components/floating_action_button/ods_fab_extended.dart +++ b/library/lib/components/floating_action_button/ods_fab_extended.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; /// ODS Design Extended Floating Action Button Extended. diff --git a/library/lib/components/floating_action_button/ods_fab_large.dart b/library/lib/components/floating_action_button/ods_fab_large.dart index ec35600d..8d53dc3f 100644 --- a/library/lib/components/floating_action_button/ods_fab_large.dart +++ b/library/lib/components/floating_action_button/ods_fab_large.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; /// ODS Design Large Floating Action Button. diff --git a/library/lib/components/floating_action_button/ods_fab_small.dart b/library/lib/components/floating_action_button/ods_fab_small.dart index 977b67dd..a469931e 100644 --- a/library/lib/components/floating_action_button/ods_fab_small.dart +++ b/library/lib/components/floating_action_button/ods_fab_small.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; /// ODS Design Small Floating Action Button. diff --git a/library/lib/components/lists/ods_list_checkbox.dart b/library/lib/components/lists/ods_list_checkbox.dart index 63fa90b2..fd1ea2fd 100644 --- a/library/lib/components/lists/ods_list_checkbox.dart +++ b/library/lib/components/lists/ods_list_checkbox.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/l10n/gen/ods_localizations.dart'; diff --git a/library/lib/components/lists/ods_list_radio_button.dart b/library/lib/components/lists/ods_list_radio_button.dart index bb5b7b7f..a88ba881 100644 --- a/library/lib/components/lists/ods_list_radio_button.dart +++ b/library/lib/components/lists/ods_list_radio_button.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/l10n/gen/ods_localizations.dart'; diff --git a/library/lib/components/lists/ods_list_selection_item.dart b/library/lib/components/lists/ods_list_selection_item.dart index 4484a83b..aa9b40e5 100644 --- a/library/lib/components/lists/ods_list_selection_item.dart +++ b/library/lib/components/lists/ods_list_selection_item.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/components/divider/ods_divider.dart'; diff --git a/library/lib/components/lists/ods_list_standard_item.dart b/library/lib/components/lists/ods_list_standard_item.dart index 9e57afce..52a63806 100644 --- a/library/lib/components/lists/ods_list_standard_item.dart +++ b/library/lib/components/lists/ods_list_standard_item.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/components/divider/ods_divider.dart'; diff --git a/library/lib/components/lists/ods_list_switch.dart b/library/lib/components/lists/ods_list_switch.dart index 834dcb69..05182d0a 100644 --- a/library/lib/components/lists/ods_list_switch.dart +++ b/library/lib/components/lists/ods_list_switch.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/components/utilities/ods_switch_icon.dart'; import 'package:ods_flutter/l10n/gen/ods_localizations.dart'; diff --git a/library/lib/components/menu/item/ods_dropdown_menu_Item.dart b/library/lib/components/menu/item/ods_dropdown_menu_Item.dart index fdb8edf8..b0e4c616 100644 --- a/library/lib/components/menu/item/ods_dropdown_menu_Item.dart +++ b/library/lib/components/menu/item/ods_dropdown_menu_Item.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; /// ODS OdsDropdownMenuItem. diff --git a/library/lib/components/menu/ods_dropdown_menu.dart b/library/lib/components/menu/ods_dropdown_menu.dart index 457d7769..8a27bd7b 100644 --- a/library/lib/components/menu/ods_dropdown_menu.dart +++ b/library/lib/components/menu/ods_dropdown_menu.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/components/menu/item/ods_dropdown_menu_Item.dart'; diff --git a/library/lib/components/menu/ods_exposed_dropdown_menu.dart b/library/lib/components/menu/ods_exposed_dropdown_menu.dart index f97ad84f..0cc75749 100644 --- a/library/lib/components/menu/ods_exposed_dropdown_menu.dart +++ b/library/lib/components/menu/ods_exposed_dropdown_menu.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/guidelines/spacings.dart'; diff --git a/library/lib/components/navigation_bar/ods_navigation_bar.dart b/library/lib/components/navigation_bar/ods_navigation_bar.dart index 5d3fdcda..f43e1645 100644 --- a/library/lib/components/navigation_bar/ods_navigation_bar.dart +++ b/library/lib/components/navigation_bar/ods_navigation_bar.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/components/navigation_bar/ods_navigation_bar_item.dart'; diff --git a/library/lib/components/navigation_bar/ods_navigation_bar_item.dart b/library/lib/components/navigation_bar/ods_navigation_bar_item.dart index 7af3852d..8d7399dd 100644 --- a/library/lib/components/navigation_bar/ods_navigation_bar_item.dart +++ b/library/lib/components/navigation_bar/ods_navigation_bar_item.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_svg/svg.dart'; import 'package:ods_flutter/l10n/gen/ods_localizations.dart'; diff --git a/library/lib/components/ods_localized_component.dart b/library/lib/components/ods_localized_component.dart index 3608e02c..7bea9d4f 100644 --- a/library/lib/components/ods_localized_component.dart +++ b/library/lib/components/ods_localized_component.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/l10n/gen/ods_localizations.dart'; diff --git a/library/lib/components/progress/ods_circular_progress_indicator.dart b/library/lib/components/progress/ods_circular_progress_indicator.dart index e73dae99..acf99a60 100644 --- a/library/lib/components/progress/ods_circular_progress_indicator.dart +++ b/library/lib/components/progress/ods_circular_progress_indicator.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/guidelines/spacings.dart'; import 'package:ods_flutter/l10n/gen/ods_localizations.dart'; diff --git a/library/lib/components/progress/ods_linear_progress_indicator.dart b/library/lib/components/progress/ods_linear_progress_indicator.dart index 65fdc554..e78eff5f 100644 --- a/library/lib/components/progress/ods_linear_progress_indicator.dart +++ b/library/lib/components/progress/ods_linear_progress_indicator.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/guidelines/spacings.dart'; import 'package:ods_flutter/l10n/gen/ods_localizations.dart'; diff --git a/library/lib/components/radio_button/ods_radio_button.dart b/library/lib/components/radio_button/ods_radio_button.dart index 679fe706..de44c349 100644 --- a/library/lib/components/radio_button/ods_radio_button.dart +++ b/library/lib/components/radio_button/ods_radio_button.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; /// ODS RadioButton. diff --git a/library/lib/components/sheets_bottom/ods_sheets_bottom.dart b/library/lib/components/sheets_bottom/ods_sheets_bottom.dart index 27eedf57..603b6d05 100644 --- a/library/lib/components/sheets_bottom/ods_sheets_bottom.dart +++ b/library/lib/components/sheets_bottom/ods_sheets_bottom.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'dart:io'; import 'package:flutter/material.dart'; diff --git a/library/lib/components/sliders/ods_slider.dart b/library/lib/components/sliders/ods_slider.dart index dbf65f62..0eb7dd00 100644 --- a/library/lib/components/sliders/ods_slider.dart +++ b/library/lib/components/sliders/ods_slider.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/guidelines/spacings.dart'; diff --git a/library/lib/components/snackbars/ods_snackbar.dart b/library/lib/components/snackbars/ods_snackbar.dart index 7b0feb45..887835ec 100644 --- a/library/lib/components/snackbars/ods_snackbar.dart +++ b/library/lib/components/snackbars/ods_snackbar.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; class OdsSnackbar { diff --git a/library/lib/components/switch/ods_switch.dart b/library/lib/components/switch/ods_switch.dart index 4d6d39b6..86d6119c 100644 --- a/library/lib/components/switch/ods_switch.dart +++ b/library/lib/components/switch/ods_switch.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/components/utilities/ods_switch_icon.dart'; import 'package:ods_flutter/l10n/gen/ods_localizations.dart'; diff --git a/library/lib/components/textfield/ods_text_field.dart b/library/lib/components/textfield/ods_text_field.dart index 172e5ca0..e0f88eb2 100644 --- a/library/lib/components/textfield/ods_text_field.dart +++ b/library/lib/components/textfield/ods_text_field.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; /// ODS OdsTextField. diff --git a/library/lib/components/textfield/password/ods_password_text_field.dart b/library/lib/components/textfield/password/ods_password_text_field.dart index d9f1681d..8a25ef87 100644 --- a/library/lib/components/textfield/password/ods_password_text_field.dart +++ b/library/lib/components/textfield/password/ods_password_text_field.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; /// ODS OdsPasswordTextField. diff --git a/library/lib/components/utilities/ods_button_entity.dart b/library/lib/components/utilities/ods_button_entity.dart index 86ce428d..81516acf 100644 --- a/library/lib/components/utilities/ods_button_entity.dart +++ b/library/lib/components/utilities/ods_button_entity.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'dart:ui'; /// Button entity used in ODS components. diff --git a/library/lib/components/utilities/ods_image_shape.dart b/library/lib/components/utilities/ods_image_shape.dart index 905bf1b3..91a75bff 100644 --- a/library/lib/components/utilities/ods_image_shape.dart +++ b/library/lib/components/utilities/ods_image_shape.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter_svg/flutter_svg.dart'; diff --git a/library/lib/components/utilities/ods_switch_icon.dart b/library/lib/components/utilities/ods_switch_icon.dart index 2b1f2da5..0934b9a4 100644 --- a/library/lib/components/utilities/ods_switch_icon.dart +++ b/library/lib/components/utilities/ods_switch_icon.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:ods_flutter/theme/ods_palette.dart'; diff --git a/library/lib/guidelines/spacings.dart b/library/lib/guidelines/spacings.dart index f3a04cd1..130c4d76 100644 --- a/library/lib/guidelines/spacings.dart +++ b/library/lib/guidelines/spacings.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + const spacingNone = 0.0; const spacingXs = 4.0; const spacingS = 8.0; diff --git a/library/lib/theme/ods_color_scheme.dart b/library/lib/theme/ods_color_scheme.dart index 6aadbda3..48e99e77 100644 --- a/library/lib/theme/ods_color_scheme.dart +++ b/library/lib/theme/ods_color_scheme.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'ods_palette.dart'; diff --git a/library/lib/theme/ods_palette.dart b/library/lib/theme/ods_palette.dart index 1c58bef5..d7e4bccb 100644 --- a/library/lib/theme/ods_palette.dart +++ b/library/lib/theme/ods_palette.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; const orange100 = Color(0xffff7900); diff --git a/library/lib/theme/ods_theme.dart b/library/lib/theme/ods_theme.dart index 7725465e..bbafb330 100644 --- a/library/lib/theme/ods_theme.dart +++ b/library/lib/theme/ods_theme.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:ods_flutter/guidelines/spacings.dart'; diff --git a/library/lib/theme/ods_typography.dart b/library/lib/theme/ods_typography.dart index 305320db..e7b45fd5 100644 --- a/library/lib/theme/ods_typography.dart +++ b/library/lib/theme/ods_typography.dart @@ -1,3 +1,15 @@ +/* + * Software Name : Orange Design System + * SPDX-FileCopyrightText: Copyright (c) Orange SA + * SPDX-License-Identifier: MIT + * + * This software is distributed under the MIT licence, + * the text of which is available at https://opensource.org/license/MIT/ + * or see the "LICENSE" file for more details. + * + * Software description: Flutter library of reusable graphical components for Android and iOS + */ + import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart';