-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3164 from jonataslaw/wasm
add support to wasm and refactor example app.
- Loading branch information
Showing
29 changed files
with
697 additions
and
721 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,6 @@ | |
/windows/ | ||
|
||
# Web related | ||
lib/generated_plugin_registrant.dart | ||
|
||
# Symbolication related | ||
app.*.symbols | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
// ignore_for_file: file_names | ||
|
||
const Map<String, String> en_US = { | ||
'covid': 'Corona Virus', | ||
'total_confirmed': 'Total Confirmed', | ||
'total_deaths': 'Total Deaths', | ||
'fetch_country': 'Fetch by country', | ||
'corona_by_country': 'Corona by country', | ||
'total_infecteds': 'Total Infecteds', | ||
'update_language': 'Update language to Portuguese', | ||
'number_of_prizes': 'Number of prizes', | ||
'average_age_of_laureates': 'Average age of laureates', | ||
'details': 'Details', | ||
'total_recovered': 'Total Recovered', | ||
'nobel_by_country': 'Nobel by country', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
// ignore_for_file: file_names | ||
|
||
const Map<String, String> pt_BR = { | ||
'covid': 'Corona Vírus', | ||
'total_confirmed': 'Total confirmado', | ||
'total_deaths': 'Total de mortes', | ||
'fetch_country': 'Listar por país', | ||
'corona_by_country': 'Corona por país', | ||
'total_infecteds': 'Total de infectados', | ||
'update_language': 'Atualizar idioma para Inglês', | ||
'number_of_prizes': 'Número de prêmios', | ||
'average_age_of_laureates': 'Idade média dos laureados', | ||
'details': 'Detalhes', | ||
'total_recovered': 'Total de recuperados' | ||
'nobel_by_country': 'Nobel por país', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.