| @ -0,0 +1 @@ | |||||
| /mobile/nsconfig.json | |||||
| @ -0,0 +1,22 @@ | |||||
| package Auth | |||||
| import ( | |||||
| "golang.org/x/crypto/bcrypt" | |||||
| ) | |||||
| func HashPassword(password string) (string, error) { | |||||
| var ( | |||||
| bytes []byte | |||||
| err error | |||||
| ) | |||||
| bytes, err = bcrypt.GenerateFromPassword([]byte(password), 14) | |||||
| return string(bytes), err | |||||
| } | |||||
| func CheckPasswordHash(password, hash string) bool { | |||||
| var ( | |||||
| err error | |||||
| ) | |||||
| err = bcrypt.CompareHashAndPassword([]byte(hash), []byte(password)) | |||||
| return err == nil | |||||
| } | |||||
| @ -0,0 +1,74 @@ | |||||
| package Auth | |||||
| import ( | |||||
| "encoding/json" | |||||
| "io/ioutil" | |||||
| "log" | |||||
| "net/http" | |||||
| "git.tovijaeschke.xyz/tovi/Envelope/Backend/Api/JsonSerialization" | |||||
| "git.tovijaeschke.xyz/tovi/Envelope/Backend/Database" | |||||
| "git.tovijaeschke.xyz/tovi/Envelope/Backend/Models" | |||||
| ) | |||||
| func Signup(w http.ResponseWriter, r *http.Request) { | |||||
| var ( | |||||
| userData Models.User | |||||
| requestBody []byte | |||||
| returnJson []byte | |||||
| err error | |||||
| ) | |||||
| requestBody, err = ioutil.ReadAll(r.Body) | |||||
| if err != nil { | |||||
| log.Printf("Error encountered reading POST body: %s\n", err.Error()) | |||||
| http.Error(w, "Error", http.StatusInternalServerError) | |||||
| return | |||||
| } | |||||
| userData, err = JsonSerialization.DeserializeUser(requestBody, []string{ | |||||
| "id", | |||||
| }, false) | |||||
| if err != nil { | |||||
| log.Printf("Invalid data provided to Signup: %s\n", err.Error()) | |||||
| http.Error(w, "Invalid Data", http.StatusUnprocessableEntity) | |||||
| return | |||||
| } | |||||
| if userData.Username == "" || | |||||
| userData.Password == "" || | |||||
| userData.ConfirmPassword == "" || | |||||
| len(userData.AsymmetricPrivateKey) == 0 || | |||||
| len(userData.AsymmetricPublicKey) == 0 { | |||||
| http.Error(w, "Invalid Data", http.StatusUnprocessableEntity) | |||||
| return | |||||
| } | |||||
| err = Database.CheckUniqueUsername(userData.Username) | |||||
| if err != nil { | |||||
| http.Error(w, "Invalid Data", http.StatusUnprocessableEntity) | |||||
| return | |||||
| } | |||||
| userData.Password, err = HashPassword(userData.Password) | |||||
| if err != nil { | |||||
| http.Error(w, "Error", http.StatusInternalServerError) | |||||
| return | |||||
| } | |||||
| err = Database.CreateUser(&userData) | |||||
| if err != nil { | |||||
| http.Error(w, "Error", http.StatusInternalServerError) | |||||
| return | |||||
| } | |||||
| returnJson, err = json.MarshalIndent(userData, "", " ") | |||||
| if err != nil { | |||||
| http.Error(w, "Error", http.StatusInternalServerError) | |||||
| return | |||||
| } | |||||
| // Return updated json | |||||
| w.WriteHeader(http.StatusOK) | |||||
| w.Write(returnJson) | |||||
| } | |||||
| @ -0,0 +1,76 @@ | |||||
| package JsonSerialization | |||||
| import ( | |||||
| "encoding/json" | |||||
| "errors" | |||||
| "fmt" | |||||
| "strings" | |||||
| "git.tovijaeschke.xyz/tovi/Envelope/Backend/Models" | |||||
| schema "github.com/Kangaroux/go-map-schema" | |||||
| ) | |||||
| func DeserializeUser(data []byte, allowMissing []string, allowAllMissing bool) (Models.User, error) { | |||||
| var ( | |||||
| userData Models.User = Models.User{} | |||||
| jsonStructureTest map[string]interface{} = make(map[string]interface{}) | |||||
| jsonStructureTestResults *schema.CompareResults | |||||
| field schema.FieldMissing | |||||
| allowed string | |||||
| missingFields []string | |||||
| i int | |||||
| err error | |||||
| ) | |||||
| // Verify the JSON has the correct structure | |||||
| json.Unmarshal(data, &jsonStructureTest) | |||||
| jsonStructureTestResults, err = schema.CompareMapToStruct( | |||||
| &userData, | |||||
| jsonStructureTest, | |||||
| &schema.CompareOpts{ | |||||
| ConvertibleFunc: CanConvert, | |||||
| TypeNameFunc: schema.DetailedTypeName, | |||||
| }) | |||||
| if err != nil { | |||||
| return userData, err | |||||
| } | |||||
| if len(jsonStructureTestResults.MismatchedFields) > 0 { | |||||
| return userData, errors.New(fmt.Sprintf( | |||||
| "MismatchedFields found when deserializing data: %s", | |||||
| jsonStructureTestResults.Errors().Error(), | |||||
| )) | |||||
| } | |||||
| // Remove allowed missing fields from MissingFields | |||||
| for _, allowed = range allowMissing { | |||||
| for i, field = range jsonStructureTestResults.MissingFields { | |||||
| if allowed == field.String() { | |||||
| jsonStructureTestResults.MissingFields = append( | |||||
| jsonStructureTestResults.MissingFields[:i], | |||||
| jsonStructureTestResults.MissingFields[i+1:]..., | |||||
| ) | |||||
| } | |||||
| } | |||||
| } | |||||
| if !allowAllMissing && len(jsonStructureTestResults.MissingFields) > 0 { | |||||
| for _, field = range jsonStructureTestResults.MissingFields { | |||||
| missingFields = append(missingFields, field.String()) | |||||
| } | |||||
| return userData, errors.New(fmt.Sprintf( | |||||
| "MissingFields found when deserializing data: %s", | |||||
| strings.Join(missingFields, ", "), | |||||
| )) | |||||
| } | |||||
| // Deserialize the JSON into the struct | |||||
| err = json.Unmarshal(data, &userData) | |||||
| if err != nil { | |||||
| return userData, err | |||||
| } | |||||
| return userData, err | |||||
| } | |||||
| @ -0,0 +1,109 @@ | |||||
| package JsonSerialization | |||||
| import ( | |||||
| "math" | |||||
| "reflect" | |||||
| ) | |||||
| // isIntegerType returns whether the type is an integer and if it's unsigned. | |||||
| // See: https://github.com/Kangaroux/go-map-schema/blob/master/schema.go#L328 | |||||
| func isIntegerType(t reflect.Type) (bool, bool) { | |||||
| var ( | |||||
| yes bool | |||||
| unsigned bool | |||||
| ) | |||||
| switch t.Kind() { | |||||
| case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: | |||||
| yes = true | |||||
| case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64: | |||||
| yes = true | |||||
| unsigned = true | |||||
| } | |||||
| return yes, unsigned | |||||
| } | |||||
| // isFloatType returns true if the type is a floating point. Note that this doesn't | |||||
| // care about the value -- unmarshaling the number "0" gives a float, not an int. | |||||
| // See: https://github.com/Kangaroux/go-map-schema/blob/master/schema.go#L319 | |||||
| func isFloatType(t reflect.Type) bool { | |||||
| var ( | |||||
| yes bool | |||||
| ) | |||||
| switch t.Kind() { | |||||
| case reflect.Float32, reflect.Float64: | |||||
| yes = true | |||||
| } | |||||
| return yes | |||||
| } | |||||
| // CanConvert returns whether value v is convertible to type t. | |||||
| // | |||||
| // If t is a pointer and v is not nil, it checks if v is convertible to the type that | |||||
| // t points to. | |||||
| // Modified due to not handling slices (DefaultCanConvert fails on PhotoUrls and Tags) | |||||
| // See: https://github.com/Kangaroux/go-map-schema/blob/master/schema.go#L191 | |||||
| func CanConvert(t reflect.Type, v reflect.Value) bool { | |||||
| var ( | |||||
| isPtr bool | |||||
| isStruct bool | |||||
| isArray bool | |||||
| dstType reflect.Type | |||||
| dstInt bool | |||||
| unsigned bool | |||||
| f float64 | |||||
| srcInt bool | |||||
| ) | |||||
| isPtr = t.Kind() == reflect.Ptr | |||||
| isStruct = t.Kind() == reflect.Struct | |||||
| isArray = t.Kind() == reflect.Array | |||||
| dstType = t | |||||
| // Check if v is a nil value. | |||||
| if !v.IsValid() || (v.CanAddr() && v.IsNil()) { | |||||
| return isPtr | |||||
| } | |||||
| // If the dst is a pointer, check if we can convert to the type it's pointing to. | |||||
| if isPtr { | |||||
| dstType = t.Elem() | |||||
| isStruct = t.Elem().Kind() == reflect.Struct | |||||
| } | |||||
| // If the dst is a struct, we should check its nested fields. | |||||
| if isStruct { | |||||
| return v.Kind() == reflect.Map | |||||
| } | |||||
| if isArray { | |||||
| return v.Kind() == reflect.String | |||||
| } | |||||
| if t.Kind() == reflect.Slice { | |||||
| return v.Kind() == reflect.Slice | |||||
| } | |||||
| if !v.Type().ConvertibleTo(dstType) { | |||||
| return false | |||||
| } | |||||
| // Handle converting to an integer type. | |||||
| dstInt, unsigned = isIntegerType(dstType) | |||||
| if dstInt { | |||||
| if isFloatType(v.Type()) { | |||||
| f = v.Float() | |||||
| if math.Trunc(f) != f || unsigned && f < 0 { | |||||
| return false | |||||
| } | |||||
| } | |||||
| srcInt, _ = isIntegerType(v.Type()) | |||||
| if srcInt && unsigned && v.Int() < 0 { | |||||
| return false | |||||
| } | |||||
| } | |||||
| return true | |||||
| } | |||||
| @ -0,0 +1,75 @@ | |||||
| package Api | |||||
| import ( | |||||
| "log" | |||||
| "net/http" | |||||
| "git.tovijaeschke.xyz/tovi/Envelope/Backend/Api/Auth" | |||||
| "github.com/gorilla/mux" | |||||
| ) | |||||
| func loggingMiddleware(next http.Handler) http.Handler { | |||||
| return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { | |||||
| log.Printf( | |||||
| "%s %s %s, Content Length: %d", | |||||
| r.RemoteAddr, | |||||
| r.Method, | |||||
| r.RequestURI, | |||||
| r.ContentLength, | |||||
| ) | |||||
| next.ServeHTTP(w, r) | |||||
| }) | |||||
| } | |||||
| func authenticationMiddleware(next http.Handler) http.Handler { | |||||
| return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { | |||||
| var ( | |||||
| //userSession Auth.Session | |||||
| //err error | |||||
| ) | |||||
| http.Error(w, "Forbidden", http.StatusUnauthorized) | |||||
| return | |||||
| /** | |||||
| userSession, err = Auth.CheckCookie(r) | |||||
| if err != nil { | |||||
| http.Error(w, "Forbidden", http.StatusUnauthorized) | |||||
| return | |||||
| } | |||||
| log.Printf( | |||||
| "Authenticated user: %s (%s)", | |||||
| userSession.Email, | |||||
| userSession.UserID, | |||||
| ) | |||||
| next.ServeHTTP(w, r) | |||||
| */ | |||||
| }) | |||||
| } | |||||
| func InitApiEndpoints(router *mux.Router) { | |||||
| var ( | |||||
| api *mux.Router | |||||
| adminApi *mux.Router | |||||
| ) | |||||
| log.Println("Initializing API routes...") | |||||
| api = router.PathPrefix("/api/v1/").Subrouter() | |||||
| api.Use(loggingMiddleware) | |||||
| // Define routes for authentication | |||||
| api.HandleFunc("/signup", Auth.Signup).Methods("POST") | |||||
| // api.HandleFunc("/login", Auth.Login).Methods("POST") | |||||
| // api.HandleFunc("/logout", Auth.Logout).Methods("GET") | |||||
| adminApi = api.PathPrefix("/message/").Subrouter() | |||||
| adminApi.Use(authenticationMiddleware) | |||||
| } | |||||
| @ -0,0 +1,64 @@ | |||||
| package Database | |||||
| import ( | |||||
| "log" | |||||
| "git.tovijaeschke.xyz/tovi/Envelope/Backend/Models" | |||||
| "gorm.io/driver/postgres" | |||||
| "gorm.io/gorm" | |||||
| ) | |||||
| const dbUrl = "postgres://postgres:@localhost:5432/envelope" | |||||
| const dbTestUrl = "postgres://postgres:@localhost:5432/envelope_test" | |||||
| var ( | |||||
| DB *gorm.DB | |||||
| ) | |||||
| func GetModels() []interface{} { | |||||
| return []interface{}{ | |||||
| &Models.User{}, | |||||
| &Models.MessageData{}, | |||||
| &Models.MessageKey{}, | |||||
| } | |||||
| } | |||||
| func Init() { | |||||
| var ( | |||||
| model interface{} | |||||
| err error | |||||
| ) | |||||
| log.Println("Initializing database...") | |||||
| DB, err = gorm.Open(postgres.Open(dbUrl), &gorm.Config{}) | |||||
| if err != nil { | |||||
| log.Fatalln(err) | |||||
| } | |||||
| log.Println("Running AutoMigrate...") | |||||
| for _, model = range GetModels() { | |||||
| DB.AutoMigrate(model) | |||||
| } | |||||
| } | |||||
| func InitTest() { | |||||
| var ( | |||||
| model interface{} | |||||
| err error | |||||
| ) | |||||
| DB, err = gorm.Open(postgres.Open(dbTestUrl), &gorm.Config{}) | |||||
| if err != nil { | |||||
| log.Fatalln(err) | |||||
| } | |||||
| for _, model = range GetModels() { | |||||
| DB.Migrator().DropTable(model) | |||||
| DB.AutoMigrate(model) | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,99 @@ | |||||
| package Database | |||||
| import ( | |||||
| "errors" | |||||
| "git.tovijaeschke.xyz/tovi/Envelope/Backend/Models" | |||||
| "gorm.io/gorm" | |||||
| "gorm.io/gorm/clause" | |||||
| ) | |||||
| func GetUserById(id string) (Models.User, error) { | |||||
| var ( | |||||
| userData Models.User | |||||
| err error | |||||
| ) | |||||
| err = DB.Preload(clause.Associations). | |||||
| First(&userData, "id = ?", id). | |||||
| Error | |||||
| return userData, err | |||||
| } | |||||
| func GetUserByUsername(username string) (Models.User, error) { | |||||
| var ( | |||||
| userData Models.User | |||||
| err error | |||||
| ) | |||||
| err = DB.Preload(clause.Associations). | |||||
| First(&userData, "username = ?", username). | |||||
| Error | |||||
| return userData, err | |||||
| } | |||||
| func CheckUniqueUsername(username string) error { | |||||
| var ( | |||||
| exists bool | |||||
| err error | |||||
| ) | |||||
| err = DB.Model(Models.User{}). | |||||
| Select("count(*) > 0"). | |||||
| Where("username = ?", username). | |||||
| Find(&exists). | |||||
| Error | |||||
| if err != nil { | |||||
| return err | |||||
| } | |||||
| if exists { | |||||
| return errors.New("Invalid username") | |||||
| } | |||||
| return nil | |||||
| } | |||||
| func CreateUser(userData *Models.User) error { | |||||
| var ( | |||||
| err error | |||||
| ) | |||||
| err = DB.Session(&gorm.Session{FullSaveAssociations: true}). | |||||
| Create(userData). | |||||
| Error | |||||
| return err | |||||
| } | |||||
| func UpdateUser(id string, userData *Models.User) error { | |||||
| var ( | |||||
| err error | |||||
| ) | |||||
| err = DB.Model(&userData). | |||||
| Omit("id"). | |||||
| Where("id = ?", id). | |||||
| Updates(userData). | |||||
| Error | |||||
| if err != nil { | |||||
| return err | |||||
| } | |||||
| err = DB.Model(Models.User{}). | |||||
| Where("id = ?", id). | |||||
| First(userData). | |||||
| Error | |||||
| return err | |||||
| } | |||||
| func DeleteUser(userData *Models.User) error { | |||||
| return DB.Session(&gorm.Session{FullSaveAssociations: true}). | |||||
| Delete(userData). | |||||
| Error | |||||
| } | |||||
| @ -0,0 +1,27 @@ | |||||
| package Models | |||||
| import ( | |||||
| "github.com/gofrs/uuid" | |||||
| "gorm.io/gorm" | |||||
| ) | |||||
| // Base contains common columns for all tables. | |||||
| type Base struct { | |||||
| ID uuid.UUID `gorm:"type:uuid;primary_key;" json:"id"` | |||||
| } | |||||
| // BeforeCreate will set a UUID rather than numeric ID. | |||||
| func (base *Base) BeforeCreate(tx *gorm.DB) error { | |||||
| var ( | |||||
| id uuid.UUID | |||||
| err error | |||||
| ) | |||||
| id, err = uuid.NewV4() | |||||
| if err != nil { | |||||
| return err | |||||
| } | |||||
| base.ID = id | |||||
| return nil | |||||
| } | |||||
| @ -0,0 +1,15 @@ | |||||
| package Models | |||||
| import "github.com/gofrs/uuid" | |||||
| type MessageData struct { | |||||
| Base | |||||
| Data []byte `gorm:"not null" json:"data"` // Stored encrypted | |||||
| } | |||||
| type MessageKey struct { | |||||
| Base | |||||
| UserID uuid.UUID `gorm:"type:uuid;column:user_id;not null;" json:"user_id"` | |||||
| MessageDataID uuid.UUID `gorm:"type:uuid;column:message_data_id;not null;" json:"message_data_id"` | |||||
| SymmetricKey []byte `gorm:"not null" json:"symmetric_key"` // Stored encrypted | |||||
| } | |||||
| @ -0,0 +1,23 @@ | |||||
| package Models | |||||
| import ( | |||||
| "gorm.io/gorm" | |||||
| ) | |||||
| // Prevent updating the email if it has not changed | |||||
| // This stops a unique constraint error | |||||
| func (u *User) BeforeUpdate(tx *gorm.DB) (err error) { | |||||
| if !tx.Statement.Changed("Username") { | |||||
| tx.Statement.Omit("Username") | |||||
| } | |||||
| return nil | |||||
| } | |||||
| type User struct { | |||||
| Base | |||||
| Username string `gorm:"not null;unique" json:"username"` | |||||
| Password string `gorm:"not null" json:"password"` | |||||
| ConfirmPassword string `gorm:"-" json:"confirm_password"` | |||||
| AsymmetricPrivateKey []byte `gorm:"not null" json:"asymmetric_private_key"` // Stored encrypted | |||||
| AsymmetricPublicKey []byte `gorm:"not null" json:"asymmetric_public_key"` | |||||
| } | |||||
| @ -0,0 +1,26 @@ | |||||
| module git.tovijaeschke.xyz/tovi/Envelope/Backend | |||||
| go 1.18 | |||||
| require ( | |||||
| github.com/Kangaroux/go-map-schema v0.6.1 | |||||
| github.com/gofrs/uuid v4.2.0+incompatible | |||||
| github.com/gorilla/mux v1.8.0 | |||||
| gorm.io/driver/postgres v1.3.4 | |||||
| gorm.io/gorm v1.23.4 | |||||
| ) | |||||
| require ( | |||||
| github.com/jackc/chunkreader/v2 v2.0.1 // indirect | |||||
| github.com/jackc/pgconn v1.11.0 // indirect | |||||
| github.com/jackc/pgio v1.0.0 // indirect | |||||
| github.com/jackc/pgpassfile v1.0.0 // indirect | |||||
| github.com/jackc/pgproto3/v2 v2.2.0 // indirect | |||||
| github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect | |||||
| github.com/jackc/pgtype v1.10.0 // indirect | |||||
| github.com/jackc/pgx/v4 v4.15.0 // indirect | |||||
| github.com/jinzhu/inflection v1.0.0 // indirect | |||||
| github.com/jinzhu/now v1.1.4 // indirect | |||||
| golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect | |||||
| golang.org/x/text v0.3.7 // indirect | |||||
| ) | |||||
| @ -0,0 +1,192 @@ | |||||
| github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= | |||||
| github.com/Kangaroux/go-map-schema v0.6.1 h1:jXpOzi7kNFC6M8QSvJuI7xeDxObBrVHwA3D6vSrxuG4= | |||||
| github.com/Kangaroux/go-map-schema v0.6.1/go.mod h1:56jN+6h/N8Pmn5D+JL9gREOvZTlVEAvXtXyLd/NRjh4= | |||||
| github.com/Masterminds/semver/v3 v3.1.1 h1:hLg3sBzpNErnxhQtUy/mmLR2I9foDujNK030IGemrRc= | |||||
| github.com/Masterminds/semver/v3 v3.1.1/go.mod h1:VPu/7SZ7ePZ3QOrcuXROw5FAcLl4a0cBrbBpGY/8hQs= | |||||
| github.com/cockroachdb/apd v1.1.0 h1:3LFP3629v+1aKXU5Q37mxmRxX/pIu1nijXydLShEq5I= | |||||
| github.com/cockroachdb/apd v1.1.0/go.mod h1:8Sl8LxpKi29FqWXR16WEFZRNSz3SoPzUzeMeY4+DwBQ= | |||||
| github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= | |||||
| github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= | |||||
| github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= | |||||
| github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= | |||||
| github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= | |||||
| github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= | |||||
| github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= | |||||
| github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= | |||||
| github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= | |||||
| github.com/gofrs/uuid v4.0.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= | |||||
| github.com/gofrs/uuid v4.2.0+incompatible h1:yyYWMnhkhrKwwr8gAOcOCYxOOscHgDS9yZgBrnJfGa0= | |||||
| github.com/gofrs/uuid v4.2.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= | |||||
| github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= | |||||
| github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI= | |||||
| github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= | |||||
| github.com/jackc/chunkreader v1.0.0/go.mod h1:RT6O25fNZIuasFJRyZ4R/Y2BbhasbmZXF9QQ7T3kePo= | |||||
| github.com/jackc/chunkreader/v2 v2.0.0/go.mod h1:odVSm741yZoC3dpHEUXIqA9tQRhFrgOHwnPIn9lDKlk= | |||||
| github.com/jackc/chunkreader/v2 v2.0.1 h1:i+RDz65UE+mmpjTfyz0MoVTnzeYxroil2G82ki7MGG8= | |||||
| github.com/jackc/chunkreader/v2 v2.0.1/go.mod h1:odVSm741yZoC3dpHEUXIqA9tQRhFrgOHwnPIn9lDKlk= | |||||
| github.com/jackc/pgconn v0.0.0-20190420214824-7e0022ef6ba3/go.mod h1:jkELnwuX+w9qN5YIfX0fl88Ehu4XC3keFuOJJk9pcnA= | |||||
| github.com/jackc/pgconn v0.0.0-20190824142844-760dd75542eb/go.mod h1:lLjNuW/+OfW9/pnVKPazfWOgNfH2aPem8YQ7ilXGvJE= | |||||
| github.com/jackc/pgconn v0.0.0-20190831204454-2fabfa3c18b7/go.mod h1:ZJKsE/KZfsUgOEh9hBm+xYTstcNHg7UPMVJqRfQxq4s= | |||||
| github.com/jackc/pgconn v1.8.0/go.mod h1:1C2Pb36bGIP9QHGBYCjnyhqu7Rv3sGshaQUvmfGIB/o= | |||||
| github.com/jackc/pgconn v1.9.0/go.mod h1:YctiPyvzfU11JFxoXokUOOKQXQmDMoJL9vJzHH8/2JY= | |||||
| github.com/jackc/pgconn v1.9.1-0.20210724152538-d89c8390a530/go.mod h1:4z2w8XhRbP1hYxkpTuBjTS3ne3J48K83+u0zoyvg2pI= | |||||
| github.com/jackc/pgconn v1.11.0 h1:HiHArx4yFbwl91X3qqIHtUFoiIfLNJXCQRsnzkiwwaQ= | |||||
| github.com/jackc/pgconn v1.11.0/go.mod h1:4z2w8XhRbP1hYxkpTuBjTS3ne3J48K83+u0zoyvg2pI= | |||||
| github.com/jackc/pgio v1.0.0 h1:g12B9UwVnzGhueNavwioyEEpAmqMe1E/BN9ES+8ovkE= | |||||
| github.com/jackc/pgio v1.0.0/go.mod h1:oP+2QK2wFfUWgr+gxjoBH9KGBb31Eio69xUb0w5bYf8= | |||||
| github.com/jackc/pgmock v0.0.0-20190831213851-13a1b77aafa2/go.mod h1:fGZlG77KXmcq05nJLRkk0+p82V8B8Dw8KN2/V9c/OAE= | |||||
| github.com/jackc/pgmock v0.0.0-20201204152224-4fe30f7445fd/go.mod h1:hrBW0Enj2AZTNpt/7Y5rr2xe/9Mn757Wtb2xeBzPv2c= | |||||
| github.com/jackc/pgmock v0.0.0-20210724152146-4ad1a8207f65 h1:DadwsjnMwFjfWc9y5Wi/+Zz7xoE5ALHsRQlOctkOiHc= | |||||
| github.com/jackc/pgmock v0.0.0-20210724152146-4ad1a8207f65/go.mod h1:5R2h2EEX+qri8jOWMbJCtaPWkrrNc7OHwsp2TCqp7ak= | |||||
| github.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsIM= | |||||
| github.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg= | |||||
| github.com/jackc/pgproto3 v1.1.0/go.mod h1:eR5FA3leWg7p9aeAqi37XOTgTIbkABlvcPB3E5rlc78= | |||||
| github.com/jackc/pgproto3/v2 v2.0.0-alpha1.0.20190420180111-c116219b62db/go.mod h1:bhq50y+xrl9n5mRYyCBFKkpRVTLYJVWeCc+mEAI3yXA= | |||||
| github.com/jackc/pgproto3/v2 v2.0.0-alpha1.0.20190609003834-432c2951c711/go.mod h1:uH0AWtUmuShn0bcesswc4aBTWGvw0cAxIJp+6OB//Wg= | |||||
| github.com/jackc/pgproto3/v2 v2.0.0-rc3/go.mod h1:ryONWYqW6dqSg1Lw6vXNMXoBJhpzvWKnT95C46ckYeM= | |||||
| github.com/jackc/pgproto3/v2 v2.0.0-rc3.0.20190831210041-4c03ce451f29/go.mod h1:ryONWYqW6dqSg1Lw6vXNMXoBJhpzvWKnT95C46ckYeM= | |||||
| github.com/jackc/pgproto3/v2 v2.0.6/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA= | |||||
| github.com/jackc/pgproto3/v2 v2.1.1/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA= | |||||
| github.com/jackc/pgproto3/v2 v2.2.0 h1:r7JypeP2D3onoQTCxWdTpCtJ4D+qpKr0TxvoyMhZ5ns= | |||||
| github.com/jackc/pgproto3/v2 v2.2.0/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA= | |||||
| github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b h1:C8S2+VttkHFdOOCXJe+YGfa4vHYwlt4Zx+IVXQ97jYg= | |||||
| github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b/go.mod h1:vsD4gTJCa9TptPL8sPkXrLZ+hDuNrZCnj29CQpr4X1E= | |||||
| github.com/jackc/pgtype v0.0.0-20190421001408-4ed0de4755e0/go.mod h1:hdSHsc1V01CGwFsrv11mJRHWJ6aifDLfdV3aVjFF0zg= | |||||
| github.com/jackc/pgtype v0.0.0-20190824184912-ab885b375b90/go.mod h1:KcahbBH1nCMSo2DXpzsoWOAfFkdEtEJpPbVLq8eE+mc= | |||||
| github.com/jackc/pgtype v0.0.0-20190828014616-a8802b16cc59/go.mod h1:MWlu30kVJrUS8lot6TQqcg7mtthZ9T0EoIBFiJcmcyw= | |||||
| github.com/jackc/pgtype v1.8.1-0.20210724151600-32e20a603178/go.mod h1:C516IlIV9NKqfsMCXTdChteoXmwgUceqaLfjg2e3NlM= | |||||
| github.com/jackc/pgtype v1.10.0 h1:ILnBWrRMSXGczYvmkYD6PsYyVFUNLTnIUJHHDLmqk38= | |||||
| github.com/jackc/pgtype v1.10.0/go.mod h1:LUMuVrfsFfdKGLw+AFFVv6KtHOFMwRgDDzBt76IqCA4= | |||||
| github.com/jackc/pgx/v4 v4.0.0-20190420224344-cc3461e65d96/go.mod h1:mdxmSJJuR08CZQyj1PVQBHy9XOp5p8/SHH6a0psbY9Y= | |||||
| github.com/jackc/pgx/v4 v4.0.0-20190421002000-1b8f0016e912/go.mod h1:no/Y67Jkk/9WuGR0JG/JseM9irFbnEPbuWV2EELPNuM= | |||||
| github.com/jackc/pgx/v4 v4.0.0-pre1.0.20190824185557-6972a5742186/go.mod h1:X+GQnOEnf1dqHGpw7JmHqHc1NxDoalibchSk9/RWuDc= | |||||
| github.com/jackc/pgx/v4 v4.12.1-0.20210724153913-640aa07df17c/go.mod h1:1QD0+tgSXP7iUjYm9C1NxKhny7lq6ee99u/z+IHFcgs= | |||||
| github.com/jackc/pgx/v4 v4.15.0 h1:B7dTkXsdILD3MF987WGGCcg+tvLW6bZJdEcqVFeU//w= | |||||
| github.com/jackc/pgx/v4 v4.15.0/go.mod h1:D/zyOyXiaM1TmVWnOM18p0xdDtdakRBa0RsVGI3U3bw= | |||||
| github.com/jackc/puddle v0.0.0-20190413234325-e4ced69a3a2b/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= | |||||
| github.com/jackc/puddle v0.0.0-20190608224051-11cab39313c9/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= | |||||
| github.com/jackc/puddle v1.1.3/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= | |||||
| github.com/jackc/puddle v1.2.1/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= | |||||
| github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E= | |||||
| github.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc= | |||||
| github.com/jinzhu/now v1.1.4 h1:tHnRBy1i5F2Dh8BAFxqFzxKqqvezXrL2OW1TnX+Mlas= | |||||
| github.com/jinzhu/now v1.1.4/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8= | |||||
| github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= | |||||
| github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= | |||||
| github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= | |||||
| github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= | |||||
| github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= | |||||
| github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= | |||||
| github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= | |||||
| github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= | |||||
| github.com/lib/pq v1.1.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= | |||||
| github.com/lib/pq v1.2.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= | |||||
| github.com/lib/pq v1.10.2 h1:AqzbZs4ZoCBp+GtejcpCpcxM3zlSMx29dXbUSeVtJb8= | |||||
| github.com/lib/pq v1.10.2/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= | |||||
| github.com/mattn/go-colorable v0.1.1/go.mod h1:FuOcm+DKB9mbwrcAfNl7/TZVBZ6rcnceauSikq3lYCQ= | |||||
| github.com/mattn/go-colorable v0.1.6/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= | |||||
| github.com/mattn/go-isatty v0.0.5/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= | |||||
| github.com/mattn/go-isatty v0.0.7/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= | |||||
| github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= | |||||
| github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= | |||||
| github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= | |||||
| github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= | |||||
| github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= | |||||
| github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= | |||||
| github.com/rs/xid v1.2.1/go.mod h1:+uKXf+4Djp6Md1KODXJxgGQPKngRmWyn10oCKFzNHOQ= | |||||
| github.com/rs/zerolog v1.13.0/go.mod h1:YbFCdg8HfsridGWAh22vktObvhZbQsZXe4/zB0OKkWU= | |||||
| github.com/rs/zerolog v1.15.0/go.mod h1:xYTKnLHcpfU2225ny5qZjxnj9NvkumZYjJHlAThCjNc= | |||||
| github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0= | |||||
| github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24/go.mod h1:M+9NzErvs504Cn4c5DxATwIqPbtswREoFCre64PpcG4= | |||||
| github.com/shopspring/decimal v1.2.0 h1:abSATXmQEYyShuxI4/vyW3tV1MrKAJzCZ/0zLUXYbsQ= | |||||
| github.com/shopspring/decimal v1.2.0/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= | |||||
| github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= | |||||
| github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= | |||||
| github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= | |||||
| github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= | |||||
| github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= | |||||
| github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= | |||||
| github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= | |||||
| github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= | |||||
| github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= | |||||
| github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY= | |||||
| github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= | |||||
| github.com/zenazn/goji v0.9.0/go.mod h1:7S9M489iMyHBNxwZnk9/EHS098H4/F6TATF2mIxtB1Q= | |||||
| go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= | |||||
| go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= | |||||
| go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= | |||||
| go.uber.org/atomic v1.6.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= | |||||
| go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= | |||||
| go.uber.org/multierr v1.3.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4= | |||||
| go.uber.org/multierr v1.5.0/go.mod h1:FeouvMocqHpRaaGuG9EjoKcStLC43Zu/fmqdUMPcKYU= | |||||
| go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA= | |||||
| go.uber.org/zap v1.9.1/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= | |||||
| go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= | |||||
| go.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM= | |||||
| golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= | |||||
| golang.org/x/crypto v0.0.0-20190411191339-88737f569e3a/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= | |||||
| golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= | |||||
| golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= | |||||
| golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= | |||||
| golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= | |||||
| golang.org/x/crypto v0.0.0-20201203163018-be400aefbc4c/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= | |||||
| golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= | |||||
| golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= | |||||
| golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 h1:7I4JAnoQBe7ZtJcBaYHi5UtiO8tQHbUSXxL+pnGRANg= | |||||
| golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= | |||||
| golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= | |||||
| golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= | |||||
| golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= | |||||
| golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= | |||||
| golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= | |||||
| golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= | |||||
| golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= | |||||
| golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= | |||||
| golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= | |||||
| golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= | |||||
| golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= | |||||
| golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= | |||||
| golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | |||||
| golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | |||||
| golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | |||||
| golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | |||||
| golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | |||||
| golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | |||||
| golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | |||||
| golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | |||||
| golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= | |||||
| golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= | |||||
| golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= | |||||
| golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= | |||||
| golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= | |||||
| golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= | |||||
| golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= | |||||
| golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= | |||||
| golang.org/x/text v0.3.7 h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk= | |||||
| golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= | |||||
| golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= | |||||
| golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= | |||||
| golang.org/x/tools v0.0.0-20190425163242-31fd60d6bfdc/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= | |||||
| golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= | |||||
| golang.org/x/tools v0.0.0-20190823170909-c4a336ef6a2f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= | |||||
| golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= | |||||
| golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= | |||||
| golang.org/x/tools v0.0.0-20200103221440-774c71fcf114/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= | |||||
| golang.org/x/xerrors v0.0.0-20190410155217-1f06c39b4373/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= | |||||
| golang.org/x/xerrors v0.0.0-20190513163551-3ee3066db522/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= | |||||
| golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= | |||||
| golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= | |||||
| golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= | |||||
| gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | |||||
| gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | |||||
| gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= | |||||
| gopkg.in/inconshreveable/log15.v2 v2.0.0-20180818164646-67afb5ed74ec/go.mod h1:aPpfJ7XW+gOuirDoZ8gHhLh3kZ1B08FtV2bbmy7Jv3s= | |||||
| gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= | |||||
| gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo= | |||||
| gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= | |||||
| gorm.io/driver/postgres v1.3.4 h1:evZ7plF+Bp+Lr1mO5NdPvd6M/N98XtwHixGB+y7fdEQ= | |||||
| gorm.io/driver/postgres v1.3.4/go.mod h1:y0vEuInFKJtijuSGu9e5bs5hzzSzPK+LancpKpvbRBw= | |||||
| gorm.io/gorm v1.23.1/go.mod h1:l2lP/RyAtc1ynaTjFksBde/O8v9oOGIApu2/xRitmZk= | |||||
| gorm.io/gorm v1.23.4 h1:1BKWM67O6CflSLcwGQR7ccfmC4ebOxQrTfOQGRE9wjg= | |||||
| gorm.io/gorm v1.23.4/go.mod h1:l2lP/RyAtc1ynaTjFksBde/O8v9oOGIApu2/xRitmZk= | |||||
| honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= | |||||
| @ -0,0 +1,26 @@ | |||||
| package main | |||||
| import ( | |||||
| "net/http" | |||||
| "git.tovijaeschke.xyz/tovi/Envelope/Backend/Api" | |||||
| "git.tovijaeschke.xyz/tovi/Envelope/Backend/Database" | |||||
| "github.com/gorilla/mux" | |||||
| ) | |||||
| func init() { | |||||
| Database.Init() | |||||
| } | |||||
| func main() { | |||||
| var ( | |||||
| router *mux.Router | |||||
| ) | |||||
| router = mux.NewRouter() | |||||
| Api.InitApiEndpoints(router) | |||||
| http.ListenAndServe(":8080", router) | |||||
| } | |||||
| @ -0,0 +1,46 @@ | |||||
| # Miscellaneous | |||||
| *.class | |||||
| *.log | |||||
| *.pyc | |||||
| *.swp | |||||
| .DS_Store | |||||
| .atom/ | |||||
| .buildlog/ | |||||
| .history | |||||
| .svn/ | |||||
| # IntelliJ related | |||||
| *.iml | |||||
| *.ipr | |||||
| *.iws | |||||
| .idea/ | |||||
| # The .vscode folder contains launch configuration and tasks you configure in | |||||
| # VS Code which you may wish to be included in version control, so this line | |||||
| # is commented out by default. | |||||
| #.vscode/ | |||||
| # Flutter/Dart/Pub related | |||||
| **/doc/api/ | |||||
| **/ios/Flutter/.last_build_id | |||||
| .dart_tool/ | |||||
| .flutter-plugins | |||||
| .flutter-plugins-dependencies | |||||
| .packages | |||||
| .pub-cache/ | |||||
| .pub/ | |||||
| /build/ | |||||
| # Web related | |||||
| lib/generated_plugin_registrant.dart | |||||
| # Symbolication related | |||||
| app.*.symbols | |||||
| # Obfuscation related | |||||
| app.*.map.json | |||||
| # Android Studio will place build artifacts here | |||||
| /android/app/debug | |||||
| /android/app/profile | |||||
| /android/app/release | |||||
| @ -0,0 +1,10 @@ | |||||
| # This file tracks properties of this Flutter project. | |||||
| # Used by Flutter tool to assess capabilities and perform upgrades etc. | |||||
| # | |||||
| # This file should be version controlled and should not be manually edited. | |||||
| version: | |||||
| revision: c860cba910319332564e1e9d470a17074c1f2dfd | |||||
| channel: stable | |||||
| project_type: app | |||||
| @ -0,0 +1,16 @@ | |||||
| # mobile | |||||
| A new Flutter project. | |||||
| ## Getting Started | |||||
| This project is a starting point for a Flutter application. | |||||
| A few resources to get you started if this is your first Flutter project: | |||||
| - [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) | |||||
| - [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) | |||||
| For help getting started with Flutter, view our | |||||
| [online documentation](https://flutter.dev/docs), which offers tutorials, | |||||
| samples, guidance on mobile development, and a full API reference. | |||||
| @ -0,0 +1,29 @@ | |||||
| # This file configures the analyzer, which statically analyzes Dart code to | |||||
| # check for errors, warnings, and lints. | |||||
| # | |||||
| # The issues identified by the analyzer are surfaced in the UI of Dart-enabled | |||||
| # IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be | |||||
| # invoked from the command line by running `flutter analyze`. | |||||
| # The following line activates a set of recommended lints for Flutter apps, | |||||
| # packages, and plugins designed to encourage good coding practices. | |||||
| include: package:flutter_lints/flutter.yaml | |||||
| linter: | |||||
| # The lint rules applied to this project can be customized in the | |||||
| # section below to disable rules from the `package:flutter_lints/flutter.yaml` | |||||
| # included above or to enable additional rules. A list of all available lints | |||||
| # and their documentation is published at | |||||
| # https://dart-lang.github.io/linter/lints/index.html. | |||||
| # | |||||
| # Instead of disabling a lint rule for the entire project in the | |||||
| # section below, it can also be suppressed for a single line of code | |||||
| # or a specific dart file by using the `// ignore: name_of_lint` and | |||||
| # `// ignore_for_file: name_of_lint` syntax on the line or in the file | |||||
| # producing the lint. | |||||
| rules: | |||||
| # avoid_print: false # Uncomment to disable the `avoid_print` rule | |||||
| # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule | |||||
| # Additional information about this file can be found at | |||||
| # https://dart.dev/guides/language/analysis-options | |||||
| @ -0,0 +1,13 @@ | |||||
| gradle-wrapper.jar | |||||
| /.gradle | |||||
| /captures/ | |||||
| /gradlew | |||||
| /gradlew.bat | |||||
| /local.properties | |||||
| GeneratedPluginRegistrant.java | |||||
| # Remember to never publicly share your keystore. | |||||
| # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app | |||||
| key.properties | |||||
| **/*.keystore | |||||
| **/*.jks | |||||
| @ -0,0 +1,68 @@ | |||||
| def localProperties = new Properties() | |||||
| def localPropertiesFile = rootProject.file('local.properties') | |||||
| if (localPropertiesFile.exists()) { | |||||
| localPropertiesFile.withReader('UTF-8') { reader -> | |||||
| localProperties.load(reader) | |||||
| } | |||||
| } | |||||
| def flutterRoot = localProperties.getProperty('flutter.sdk') | |||||
| if (flutterRoot == null) { | |||||
| throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") | |||||
| } | |||||
| def flutterVersionCode = localProperties.getProperty('flutter.versionCode') | |||||
| if (flutterVersionCode == null) { | |||||
| flutterVersionCode = '1' | |||||
| } | |||||
| def flutterVersionName = localProperties.getProperty('flutter.versionName') | |||||
| if (flutterVersionName == null) { | |||||
| flutterVersionName = '1.0' | |||||
| } | |||||
| apply plugin: 'com.android.application' | |||||
| apply plugin: 'kotlin-android' | |||||
| apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" | |||||
| android { | |||||
| compileSdkVersion flutter.compileSdkVersion | |||||
| compileOptions { | |||||
| sourceCompatibility JavaVersion.VERSION_1_8 | |||||
| targetCompatibility JavaVersion.VERSION_1_8 | |||||
| } | |||||
| kotlinOptions { | |||||
| jvmTarget = '1.8' | |||||
| } | |||||
| sourceSets { | |||||
| main.java.srcDirs += 'src/main/kotlin' | |||||
| } | |||||
| defaultConfig { | |||||
| // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). | |||||
| applicationId "com.example.mobile" | |||||
| minSdkVersion flutter.minSdkVersion | |||||
| targetSdkVersion flutter.targetSdkVersion | |||||
| versionCode flutterVersionCode.toInteger() | |||||
| versionName flutterVersionName | |||||
| } | |||||
| buildTypes { | |||||
| release { | |||||
| // TODO: Add your own signing config for the release build. | |||||
| // Signing with the debug keys for now, so `flutter run --release` works. | |||||
| signingConfig signingConfigs.debug | |||||
| } | |||||
| } | |||||
| } | |||||
| flutter { | |||||
| source '../..' | |||||
| } | |||||
| dependencies { | |||||
| implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" | |||||
| } | |||||
| @ -0,0 +1,7 @@ | |||||
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |||||
| package="com.example.mobile"> | |||||
| <!-- Flutter needs it to communicate with the running application | |||||
| to allow setting breakpoints, to provide hot reload, etc. | |||||
| --> | |||||
| <uses-permission android:name="android.permission.INTERNET"/> | |||||
| </manifest> | |||||
| @ -0,0 +1,34 @@ | |||||
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |||||
| package="com.example.mobile"> | |||||
| <application | |||||
| android:label="mobile" | |||||
| android:name="${applicationName}" | |||||
| android:icon="@mipmap/ic_launcher"> | |||||
| <activity | |||||
| android:name=".MainActivity" | |||||
| android:exported="true" | |||||
| android:launchMode="singleTop" | |||||
| android:theme="@style/LaunchTheme" | |||||
| android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" | |||||
| android:hardwareAccelerated="true" | |||||
| android:windowSoftInputMode="adjustResize"> | |||||
| <!-- Specifies an Android theme to apply to this Activity as soon as | |||||
| the Android process has started. This theme is visible to the user | |||||
| while the Flutter UI initializes. After that, this theme continues | |||||
| to determine the Window background behind the Flutter UI. --> | |||||
| <meta-data | |||||
| android:name="io.flutter.embedding.android.NormalTheme" | |||||
| android:resource="@style/NormalTheme" | |||||
| /> | |||||
| <intent-filter> | |||||
| <action android:name="android.intent.action.MAIN"/> | |||||
| <category android:name="android.intent.category.LAUNCHER"/> | |||||
| </intent-filter> | |||||
| </activity> | |||||
| <!-- Don't delete the meta-data below. | |||||
| This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> | |||||
| <meta-data | |||||
| android:name="flutterEmbedding" | |||||
| android:value="2" /> | |||||
| </application> | |||||
| </manifest> | |||||
| @ -0,0 +1,6 @@ | |||||
| package com.example.mobile | |||||
| import io.flutter.embedding.android.FlutterActivity | |||||
| class MainActivity: FlutterActivity() { | |||||
| } | |||||
| @ -0,0 +1,12 @@ | |||||
| <?xml version="1.0" encoding="utf-8"?> | |||||
| <!-- Modify this file to customize your launch splash screen --> | |||||
| <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> | |||||
| <item android:drawable="?android:colorBackground" /> | |||||
| <!-- You can insert your own image assets here --> | |||||
| <!-- <item> | |||||
| <bitmap | |||||
| android:gravity="center" | |||||
| android:src="@mipmap/launch_image" /> | |||||
| </item> --> | |||||
| </layer-list> | |||||
| @ -0,0 +1,12 @@ | |||||
| <?xml version="1.0" encoding="utf-8"?> | |||||
| <!-- Modify this file to customize your launch splash screen --> | |||||
| <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> | |||||
| <item android:drawable="@android:color/white" /> | |||||
| <!-- You can insert your own image assets here --> | |||||
| <!-- <item> | |||||
| <bitmap | |||||
| android:gravity="center" | |||||
| android:src="@mipmap/launch_image" /> | |||||
| </item> --> | |||||
| </layer-list> | |||||
| @ -0,0 +1,18 @@ | |||||
| <?xml version="1.0" encoding="utf-8"?> | |||||
| <resources> | |||||
| <!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on --> | |||||
| <style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar"> | |||||
| <!-- Show a splash screen on the activity. Automatically removed when | |||||
| Flutter draws its first frame --> | |||||
| <item name="android:windowBackground">@drawable/launch_background</item> | |||||
| </style> | |||||
| <!-- Theme applied to the Android Window as soon as the process has started. | |||||
| This theme determines the color of the Android Window while your | |||||
| Flutter UI initializes, as well as behind your Flutter UI while its | |||||
| running. | |||||
| This Theme is only used starting with V2 of Flutter's Android embedding. --> | |||||
| <style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar"> | |||||
| <item name="android:windowBackground">?android:colorBackground</item> | |||||
| </style> | |||||
| </resources> | |||||
| @ -0,0 +1,18 @@ | |||||
| <?xml version="1.0" encoding="utf-8"?> | |||||
| <resources> | |||||
| <!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off --> | |||||
| <style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar"> | |||||
| <!-- Show a splash screen on the activity. Automatically removed when | |||||
| Flutter draws its first frame --> | |||||
| <item name="android:windowBackground">@drawable/launch_background</item> | |||||
| </style> | |||||
| <!-- Theme applied to the Android Window as soon as the process has started. | |||||
| This theme determines the color of the Android Window while your | |||||
| Flutter UI initializes, as well as behind your Flutter UI while its | |||||
| running. | |||||
| This Theme is only used starting with V2 of Flutter's Android embedding. --> | |||||
| <style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar"> | |||||
| <item name="android:windowBackground">?android:colorBackground</item> | |||||
| </style> | |||||
| </resources> | |||||
| @ -0,0 +1,7 @@ | |||||
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |||||
| package="com.example.mobile"> | |||||
| <!-- Flutter needs it to communicate with the running application | |||||
| to allow setting breakpoints, to provide hot reload, etc. | |||||
| --> | |||||
| <uses-permission android:name="android.permission.INTERNET"/> | |||||
| </manifest> | |||||
| @ -0,0 +1,31 @@ | |||||
| buildscript { | |||||
| ext.kotlin_version = '1.6.10' | |||||
| repositories { | |||||
| google() | |||||
| mavenCentral() | |||||
| } | |||||
| dependencies { | |||||
| classpath 'com.android.tools.build:gradle:4.1.0' | |||||
| classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" | |||||
| } | |||||
| } | |||||
| allprojects { | |||||
| repositories { | |||||
| google() | |||||
| mavenCentral() | |||||
| } | |||||
| } | |||||
| rootProject.buildDir = '../build' | |||||
| subprojects { | |||||
| project.buildDir = "${rootProject.buildDir}/${project.name}" | |||||
| } | |||||
| subprojects { | |||||
| project.evaluationDependsOn(':app') | |||||
| } | |||||
| task clean(type: Delete) { | |||||
| delete rootProject.buildDir | |||||
| } | |||||
| @ -0,0 +1,3 @@ | |||||
| org.gradle.jvmargs=-Xmx1536M | |||||
| android.useAndroidX=true | |||||
| android.enableJetifier=true | |||||
| @ -0,0 +1,6 @@ | |||||
| #Fri Jun 23 08:50:38 CEST 2017 | |||||
| distributionBase=GRADLE_USER_HOME | |||||
| distributionPath=wrapper/dists | |||||
| zipStoreBase=GRADLE_USER_HOME | |||||
| zipStorePath=wrapper/dists | |||||
| distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip | |||||
| @ -0,0 +1,11 @@ | |||||
| include ':app' | |||||
| def localPropertiesFile = new File(rootProject.projectDir, "local.properties") | |||||
| def properties = new Properties() | |||||
| assert localPropertiesFile.exists() | |||||
| localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } | |||||
| def flutterSdkPath = properties.getProperty("flutter.sdk") | |||||
| assert flutterSdkPath != null, "flutter.sdk not set in local.properties" | |||||
| apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" | |||||
| @ -0,0 +1,34 @@ | |||||
| **/dgph | |||||
| *.mode1v3 | |||||
| *.mode2v3 | |||||
| *.moved-aside | |||||
| *.pbxuser | |||||
| *.perspectivev3 | |||||
| **/*sync/ | |||||
| .sconsign.dblite | |||||
| .tags* | |||||
| **/.vagrant/ | |||||
| **/DerivedData/ | |||||
| Icon? | |||||
| **/Pods/ | |||||
| **/.symlinks/ | |||||
| profile | |||||
| xcuserdata | |||||
| **/.generated/ | |||||
| Flutter/App.framework | |||||
| Flutter/Flutter.framework | |||||
| Flutter/Flutter.podspec | |||||
| Flutter/Generated.xcconfig | |||||
| Flutter/ephemeral/ | |||||
| Flutter/app.flx | |||||
| Flutter/app.zip | |||||
| Flutter/flutter_assets/ | |||||
| Flutter/flutter_export_environment.sh | |||||
| ServiceDefinitions.json | |||||
| Runner/GeneratedPluginRegistrant.* | |||||
| # Exceptions to above rules. | |||||
| !default.mode1v3 | |||||
| !default.mode2v3 | |||||
| !default.pbxuser | |||||
| !default.perspectivev3 | |||||
| @ -0,0 +1,26 @@ | |||||
| <?xml version="1.0" encoding="UTF-8"?> | |||||
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |||||
| <plist version="1.0"> | |||||
| <dict> | |||||
| <key>CFBundleDevelopmentRegion</key> | |||||
| <string>en</string> | |||||
| <key>CFBundleExecutable</key> | |||||
| <string>App</string> | |||||
| <key>CFBundleIdentifier</key> | |||||
| <string>io.flutter.flutter.app</string> | |||||
| <key>CFBundleInfoDictionaryVersion</key> | |||||
| <string>6.0</string> | |||||
| <key>CFBundleName</key> | |||||
| <string>App</string> | |||||
| <key>CFBundlePackageType</key> | |||||
| <string>FMWK</string> | |||||
| <key>CFBundleShortVersionString</key> | |||||
| <string>1.0</string> | |||||
| <key>CFBundleSignature</key> | |||||
| <string>????</string> | |||||
| <key>CFBundleVersion</key> | |||||
| <string>1.0</string> | |||||
| <key>MinimumOSVersion</key> | |||||
| <string>9.0</string> | |||||
| </dict> | |||||
| </plist> | |||||
| @ -0,0 +1 @@ | |||||
| #include "Generated.xcconfig" | |||||
| @ -0,0 +1 @@ | |||||
| #include "Generated.xcconfig" | |||||
| @ -0,0 +1,481 @@ | |||||
| // !$*UTF8*$! | |||||
| { | |||||
| archiveVersion = 1; | |||||
| classes = { | |||||
| }; | |||||
| objectVersion = 50; | |||||
| objects = { | |||||
| /* Begin PBXBuildFile section */ | |||||
| 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; | |||||
| 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; | |||||
| 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; | |||||
| 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; | |||||
| 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; | |||||
| 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; | |||||
| /* End PBXBuildFile section */ | |||||
| /* Begin PBXCopyFilesBuildPhase section */ | |||||
| 9705A1C41CF9048500538489 /* Embed Frameworks */ = { | |||||
| isa = PBXCopyFilesBuildPhase; | |||||
| buildActionMask = 2147483647; | |||||
| dstPath = ""; | |||||
| dstSubfolderSpec = 10; | |||||
| files = ( | |||||
| ); | |||||
| name = "Embed Frameworks"; | |||||
| runOnlyForDeploymentPostprocessing = 0; | |||||
| }; | |||||
| /* End PBXCopyFilesBuildPhase section */ | |||||
| /* Begin PBXFileReference section */ | |||||
| 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; }; | |||||
| 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; }; | |||||
| 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; }; | |||||
| 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; }; | |||||
| 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; }; | |||||
| 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; }; | |||||
| 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; }; | |||||
| 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; }; | |||||
| 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; | |||||
| 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; }; | |||||
| 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; }; | |||||
| 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; }; | |||||
| 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; | |||||
| /* End PBXFileReference section */ | |||||
| /* Begin PBXFrameworksBuildPhase section */ | |||||
| 97C146EB1CF9000F007C117D /* Frameworks */ = { | |||||
| isa = PBXFrameworksBuildPhase; | |||||
| buildActionMask = 2147483647; | |||||
| files = ( | |||||
| ); | |||||
| runOnlyForDeploymentPostprocessing = 0; | |||||
| }; | |||||
| /* End PBXFrameworksBuildPhase section */ | |||||
| /* Begin PBXGroup section */ | |||||
| 9740EEB11CF90186004384FC /* Flutter */ = { | |||||
| isa = PBXGroup; | |||||
| children = ( | |||||
| 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, | |||||
| 9740EEB21CF90195004384FC /* Debug.xcconfig */, | |||||
| 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, | |||||
| 9740EEB31CF90195004384FC /* Generated.xcconfig */, | |||||
| ); | |||||
| name = Flutter; | |||||
| sourceTree = "<group>"; | |||||
| }; | |||||
| 97C146E51CF9000F007C117D = { | |||||
| isa = PBXGroup; | |||||
| children = ( | |||||
| 9740EEB11CF90186004384FC /* Flutter */, | |||||
| 97C146F01CF9000F007C117D /* Runner */, | |||||
| 97C146EF1CF9000F007C117D /* Products */, | |||||
| ); | |||||
| sourceTree = "<group>"; | |||||
| }; | |||||
| 97C146EF1CF9000F007C117D /* Products */ = { | |||||
| isa = PBXGroup; | |||||
| children = ( | |||||
| 97C146EE1CF9000F007C117D /* Runner.app */, | |||||
| ); | |||||
| name = Products; | |||||
| sourceTree = "<group>"; | |||||
| }; | |||||
| 97C146F01CF9000F007C117D /* Runner */ = { | |||||
| isa = PBXGroup; | |||||
| children = ( | |||||
| 97C146FA1CF9000F007C117D /* Main.storyboard */, | |||||
| 97C146FD1CF9000F007C117D /* Assets.xcassets */, | |||||
| 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, | |||||
| 97C147021CF9000F007C117D /* Info.plist */, | |||||
| 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, | |||||
| 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, | |||||
| 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, | |||||
| 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, | |||||
| ); | |||||
| path = Runner; | |||||
| sourceTree = "<group>"; | |||||
| }; | |||||
| /* End PBXGroup section */ | |||||
| /* Begin PBXNativeTarget section */ | |||||
| 97C146ED1CF9000F007C117D /* Runner */ = { | |||||
| isa = PBXNativeTarget; | |||||
| buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; | |||||
| buildPhases = ( | |||||
| 9740EEB61CF901F6004384FC /* Run Script */, | |||||
| 97C146EA1CF9000F007C117D /* Sources */, | |||||
| 97C146EB1CF9000F007C117D /* Frameworks */, | |||||
| 97C146EC1CF9000F007C117D /* Resources */, | |||||
| 9705A1C41CF9048500538489 /* Embed Frameworks */, | |||||
| 3B06AD1E1E4923F5004D2608 /* Thin Binary */, | |||||
| ); | |||||
| buildRules = ( | |||||
| ); | |||||
| dependencies = ( | |||||
| ); | |||||
| name = Runner; | |||||
| productName = Runner; | |||||
| productReference = 97C146EE1CF9000F007C117D /* Runner.app */; | |||||
| productType = "com.apple.product-type.application"; | |||||
| }; | |||||
| /* End PBXNativeTarget section */ | |||||
| /* Begin PBXProject section */ | |||||
| 97C146E61CF9000F007C117D /* Project object */ = { | |||||
| isa = PBXProject; | |||||
| attributes = { | |||||
| LastUpgradeCheck = 1300; | |||||
| ORGANIZATIONNAME = ""; | |||||
| TargetAttributes = { | |||||
| 97C146ED1CF9000F007C117D = { | |||||
| CreatedOnToolsVersion = 7.3.1; | |||||
| LastSwiftMigration = 1100; | |||||
| }; | |||||
| }; | |||||
| }; | |||||
| buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; | |||||
| compatibilityVersion = "Xcode 9.3"; | |||||
| developmentRegion = en; | |||||
| hasScannedForEncodings = 0; | |||||
| knownRegions = ( | |||||
| en, | |||||
| Base, | |||||
| ); | |||||
| mainGroup = 97C146E51CF9000F007C117D; | |||||
| productRefGroup = 97C146EF1CF9000F007C117D /* Products */; | |||||
| projectDirPath = ""; | |||||
| projectRoot = ""; | |||||
| targets = ( | |||||
| 97C146ED1CF9000F007C117D /* Runner */, | |||||
| ); | |||||
| }; | |||||
| /* End PBXProject section */ | |||||
| /* Begin PBXResourcesBuildPhase section */ | |||||
| 97C146EC1CF9000F007C117D /* Resources */ = { | |||||
| isa = PBXResourcesBuildPhase; | |||||
| buildActionMask = 2147483647; | |||||
| files = ( | |||||
| 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, | |||||
| 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, | |||||
| 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, | |||||
| 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, | |||||
| ); | |||||
| runOnlyForDeploymentPostprocessing = 0; | |||||
| }; | |||||
| /* End PBXResourcesBuildPhase section */ | |||||
| /* Begin PBXShellScriptBuildPhase section */ | |||||
| 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { | |||||
| isa = PBXShellScriptBuildPhase; | |||||
| buildActionMask = 2147483647; | |||||
| files = ( | |||||
| ); | |||||
| inputPaths = ( | |||||
| ); | |||||
| name = "Thin Binary"; | |||||
| outputPaths = ( | |||||
| ); | |||||
| runOnlyForDeploymentPostprocessing = 0; | |||||
| shellPath = /bin/sh; | |||||
| shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; | |||||
| }; | |||||
| 9740EEB61CF901F6004384FC /* Run Script */ = { | |||||
| isa = PBXShellScriptBuildPhase; | |||||
| buildActionMask = 2147483647; | |||||
| files = ( | |||||
| ); | |||||
| inputPaths = ( | |||||
| ); | |||||
| name = "Run Script"; | |||||
| outputPaths = ( | |||||
| ); | |||||
| runOnlyForDeploymentPostprocessing = 0; | |||||
| shellPath = /bin/sh; | |||||
| shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; | |||||
| }; | |||||
| /* End PBXShellScriptBuildPhase section */ | |||||
| /* Begin PBXSourcesBuildPhase section */ | |||||
| 97C146EA1CF9000F007C117D /* Sources */ = { | |||||
| isa = PBXSourcesBuildPhase; | |||||
| buildActionMask = 2147483647; | |||||
| files = ( | |||||
| 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, | |||||
| 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, | |||||
| ); | |||||
| runOnlyForDeploymentPostprocessing = 0; | |||||
| }; | |||||
| /* End PBXSourcesBuildPhase section */ | |||||
| /* Begin PBXVariantGroup section */ | |||||
| 97C146FA1CF9000F007C117D /* Main.storyboard */ = { | |||||
| isa = PBXVariantGroup; | |||||
| children = ( | |||||
| 97C146FB1CF9000F007C117D /* Base */, | |||||
| ); | |||||
| name = Main.storyboard; | |||||
| sourceTree = "<group>"; | |||||
| }; | |||||
| 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { | |||||
| isa = PBXVariantGroup; | |||||
| children = ( | |||||
| 97C147001CF9000F007C117D /* Base */, | |||||
| ); | |||||
| name = LaunchScreen.storyboard; | |||||
| sourceTree = "<group>"; | |||||
| }; | |||||
| /* End PBXVariantGroup section */ | |||||
| /* Begin XCBuildConfiguration section */ | |||||
| 249021D3217E4FDB00AE95B9 /* Profile */ = { | |||||
| isa = XCBuildConfiguration; | |||||
| buildSettings = { | |||||
| ALWAYS_SEARCH_USER_PATHS = NO; | |||||
| CLANG_ANALYZER_NONNULL = YES; | |||||
| CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; | |||||
| CLANG_CXX_LIBRARY = "libc++"; | |||||
| CLANG_ENABLE_MODULES = YES; | |||||
| CLANG_ENABLE_OBJC_ARC = YES; | |||||
| CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; | |||||
| CLANG_WARN_BOOL_CONVERSION = YES; | |||||
| CLANG_WARN_COMMA = YES; | |||||
| CLANG_WARN_CONSTANT_CONVERSION = YES; | |||||
| CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; | |||||
| CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; | |||||
| CLANG_WARN_EMPTY_BODY = YES; | |||||
| CLANG_WARN_ENUM_CONVERSION = YES; | |||||
| CLANG_WARN_INFINITE_RECURSION = YES; | |||||
| CLANG_WARN_INT_CONVERSION = YES; | |||||
| CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; | |||||
| CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | |||||
| CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | |||||
| CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | |||||
| CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | |||||
| CLANG_WARN_STRICT_PROTOTYPES = YES; | |||||
| CLANG_WARN_SUSPICIOUS_MOVE = YES; | |||||
| CLANG_WARN_UNREACHABLE_CODE = YES; | |||||
| CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; | |||||
| "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; | |||||
| COPY_PHASE_STRIP = NO; | |||||
| DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; | |||||
| ENABLE_NS_ASSERTIONS = NO; | |||||
| ENABLE_STRICT_OBJC_MSGSEND = YES; | |||||
| GCC_C_LANGUAGE_STANDARD = gnu99; | |||||
| GCC_NO_COMMON_BLOCKS = YES; | |||||
| GCC_WARN_64_TO_32_BIT_CONVERSION = YES; | |||||
| GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; | |||||
| GCC_WARN_UNDECLARED_SELECTOR = YES; | |||||
| GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | |||||
| GCC_WARN_UNUSED_FUNCTION = YES; | |||||
| GCC_WARN_UNUSED_VARIABLE = YES; | |||||
| IPHONEOS_DEPLOYMENT_TARGET = 9.0; | |||||
| MTL_ENABLE_DEBUG_INFO = NO; | |||||
| SDKROOT = iphoneos; | |||||
| SUPPORTED_PLATFORMS = iphoneos; | |||||
| TARGETED_DEVICE_FAMILY = "1,2"; | |||||
| VALIDATE_PRODUCT = YES; | |||||
| }; | |||||
| name = Profile; | |||||
| }; | |||||
| 249021D4217E4FDB00AE95B9 /* Profile */ = { | |||||
| isa = XCBuildConfiguration; | |||||
| baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; | |||||
| buildSettings = { | |||||
| ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | |||||
| CLANG_ENABLE_MODULES = YES; | |||||
| CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; | |||||
| ENABLE_BITCODE = NO; | |||||
| INFOPLIST_FILE = Runner/Info.plist; | |||||
| LD_RUNPATH_SEARCH_PATHS = ( | |||||
| "$(inherited)", | |||||
| "@executable_path/Frameworks", | |||||
| ); | |||||
| PRODUCT_BUNDLE_IDENTIFIER = com.example.mobile; | |||||
| PRODUCT_NAME = "$(TARGET_NAME)"; | |||||
| SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; | |||||
| SWIFT_VERSION = 5.0; | |||||
| VERSIONING_SYSTEM = "apple-generic"; | |||||
| }; | |||||
| name = Profile; | |||||
| }; | |||||
| 97C147031CF9000F007C117D /* Debug */ = { | |||||
| isa = XCBuildConfiguration; | |||||
| buildSettings = { | |||||
| ALWAYS_SEARCH_USER_PATHS = NO; | |||||
| CLANG_ANALYZER_NONNULL = YES; | |||||
| CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; | |||||
| CLANG_CXX_LIBRARY = "libc++"; | |||||
| CLANG_ENABLE_MODULES = YES; | |||||
| CLANG_ENABLE_OBJC_ARC = YES; | |||||
| CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; | |||||
| CLANG_WARN_BOOL_CONVERSION = YES; | |||||
| CLANG_WARN_COMMA = YES; | |||||
| CLANG_WARN_CONSTANT_CONVERSION = YES; | |||||
| CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; | |||||
| CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; | |||||
| CLANG_WARN_EMPTY_BODY = YES; | |||||
| CLANG_WARN_ENUM_CONVERSION = YES; | |||||
| CLANG_WARN_INFINITE_RECURSION = YES; | |||||
| CLANG_WARN_INT_CONVERSION = YES; | |||||
| CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; | |||||
| CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | |||||
| CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | |||||
| CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | |||||
| CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | |||||
| CLANG_WARN_STRICT_PROTOTYPES = YES; | |||||
| CLANG_WARN_SUSPICIOUS_MOVE = YES; | |||||
| CLANG_WARN_UNREACHABLE_CODE = YES; | |||||
| CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; | |||||
| "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; | |||||
| COPY_PHASE_STRIP = NO; | |||||
| DEBUG_INFORMATION_FORMAT = dwarf; | |||||
| ENABLE_STRICT_OBJC_MSGSEND = YES; | |||||
| ENABLE_TESTABILITY = YES; | |||||
| GCC_C_LANGUAGE_STANDARD = gnu99; | |||||
| GCC_DYNAMIC_NO_PIC = NO; | |||||
| GCC_NO_COMMON_BLOCKS = YES; | |||||
| GCC_OPTIMIZATION_LEVEL = 0; | |||||
| GCC_PREPROCESSOR_DEFINITIONS = ( | |||||
| "DEBUG=1", | |||||
| "$(inherited)", | |||||
| ); | |||||
| GCC_WARN_64_TO_32_BIT_CONVERSION = YES; | |||||
| GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; | |||||
| GCC_WARN_UNDECLARED_SELECTOR = YES; | |||||
| GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | |||||
| GCC_WARN_UNUSED_FUNCTION = YES; | |||||
| GCC_WARN_UNUSED_VARIABLE = YES; | |||||
| IPHONEOS_DEPLOYMENT_TARGET = 9.0; | |||||
| MTL_ENABLE_DEBUG_INFO = YES; | |||||
| ONLY_ACTIVE_ARCH = YES; | |||||
| SDKROOT = iphoneos; | |||||
| TARGETED_DEVICE_FAMILY = "1,2"; | |||||
| }; | |||||
| name = Debug; | |||||
| }; | |||||
| 97C147041CF9000F007C117D /* Release */ = { | |||||
| isa = XCBuildConfiguration; | |||||
| buildSettings = { | |||||
| ALWAYS_SEARCH_USER_PATHS = NO; | |||||
| CLANG_ANALYZER_NONNULL = YES; | |||||
| CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; | |||||
| CLANG_CXX_LIBRARY = "libc++"; | |||||
| CLANG_ENABLE_MODULES = YES; | |||||
| CLANG_ENABLE_OBJC_ARC = YES; | |||||
| CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; | |||||
| CLANG_WARN_BOOL_CONVERSION = YES; | |||||
| CLANG_WARN_COMMA = YES; | |||||
| CLANG_WARN_CONSTANT_CONVERSION = YES; | |||||
| CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; | |||||
| CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; | |||||
| CLANG_WARN_EMPTY_BODY = YES; | |||||
| CLANG_WARN_ENUM_CONVERSION = YES; | |||||
| CLANG_WARN_INFINITE_RECURSION = YES; | |||||
| CLANG_WARN_INT_CONVERSION = YES; | |||||
| CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; | |||||
| CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | |||||
| CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | |||||
| CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | |||||
| CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | |||||
| CLANG_WARN_STRICT_PROTOTYPES = YES; | |||||
| CLANG_WARN_SUSPICIOUS_MOVE = YES; | |||||
| CLANG_WARN_UNREACHABLE_CODE = YES; | |||||
| CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; | |||||
| "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; | |||||
| COPY_PHASE_STRIP = NO; | |||||
| DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; | |||||
| ENABLE_NS_ASSERTIONS = NO; | |||||
| ENABLE_STRICT_OBJC_MSGSEND = YES; | |||||
| GCC_C_LANGUAGE_STANDARD = gnu99; | |||||
| GCC_NO_COMMON_BLOCKS = YES; | |||||
| GCC_WARN_64_TO_32_BIT_CONVERSION = YES; | |||||
| GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; | |||||
| GCC_WARN_UNDECLARED_SELECTOR = YES; | |||||
| GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | |||||
| GCC_WARN_UNUSED_FUNCTION = YES; | |||||
| GCC_WARN_UNUSED_VARIABLE = YES; | |||||
| IPHONEOS_DEPLOYMENT_TARGET = 9.0; | |||||
| MTL_ENABLE_DEBUG_INFO = NO; | |||||
| SDKROOT = iphoneos; | |||||
| SUPPORTED_PLATFORMS = iphoneos; | |||||
| SWIFT_COMPILATION_MODE = wholemodule; | |||||
| SWIFT_OPTIMIZATION_LEVEL = "-O"; | |||||
| TARGETED_DEVICE_FAMILY = "1,2"; | |||||
| VALIDATE_PRODUCT = YES; | |||||
| }; | |||||
| name = Release; | |||||
| }; | |||||
| 97C147061CF9000F007C117D /* Debug */ = { | |||||
| isa = XCBuildConfiguration; | |||||
| baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; | |||||
| buildSettings = { | |||||
| ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | |||||
| CLANG_ENABLE_MODULES = YES; | |||||
| CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; | |||||
| ENABLE_BITCODE = NO; | |||||
| INFOPLIST_FILE = Runner/Info.plist; | |||||
| LD_RUNPATH_SEARCH_PATHS = ( | |||||
| "$(inherited)", | |||||
| "@executable_path/Frameworks", | |||||
| ); | |||||
| PRODUCT_BUNDLE_IDENTIFIER = com.example.mobile; | |||||
| PRODUCT_NAME = "$(TARGET_NAME)"; | |||||
| SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; | |||||
| SWIFT_OPTIMIZATION_LEVEL = "-Onone"; | |||||
| SWIFT_VERSION = 5.0; | |||||
| VERSIONING_SYSTEM = "apple-generic"; | |||||
| }; | |||||
| name = Debug; | |||||
| }; | |||||
| 97C147071CF9000F007C117D /* Release */ = { | |||||
| isa = XCBuildConfiguration; | |||||
| baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; | |||||
| buildSettings = { | |||||
| ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | |||||
| CLANG_ENABLE_MODULES = YES; | |||||
| CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; | |||||
| ENABLE_BITCODE = NO; | |||||
| INFOPLIST_FILE = Runner/Info.plist; | |||||
| LD_RUNPATH_SEARCH_PATHS = ( | |||||
| "$(inherited)", | |||||
| "@executable_path/Frameworks", | |||||
| ); | |||||
| PRODUCT_BUNDLE_IDENTIFIER = com.example.mobile; | |||||
| PRODUCT_NAME = "$(TARGET_NAME)"; | |||||
| SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; | |||||
| SWIFT_VERSION = 5.0; | |||||
| VERSIONING_SYSTEM = "apple-generic"; | |||||
| }; | |||||
| name = Release; | |||||
| }; | |||||
| /* End XCBuildConfiguration section */ | |||||
| /* Begin XCConfigurationList section */ | |||||
| 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { | |||||
| isa = XCConfigurationList; | |||||
| buildConfigurations = ( | |||||
| 97C147031CF9000F007C117D /* Debug */, | |||||
| 97C147041CF9000F007C117D /* Release */, | |||||
| 249021D3217E4FDB00AE95B9 /* Profile */, | |||||
| ); | |||||
| defaultConfigurationIsVisible = 0; | |||||
| defaultConfigurationName = Release; | |||||
| }; | |||||
| 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { | |||||
| isa = XCConfigurationList; | |||||
| buildConfigurations = ( | |||||
| 97C147061CF9000F007C117D /* Debug */, | |||||
| 97C147071CF9000F007C117D /* Release */, | |||||
| 249021D4217E4FDB00AE95B9 /* Profile */, | |||||
| ); | |||||
| defaultConfigurationIsVisible = 0; | |||||
| defaultConfigurationName = Release; | |||||
| }; | |||||
| /* End XCConfigurationList section */ | |||||
| }; | |||||
| rootObject = 97C146E61CF9000F007C117D /* Project object */; | |||||
| } | |||||
| @ -0,0 +1,7 @@ | |||||
| <?xml version="1.0" encoding="UTF-8"?> | |||||
| <Workspace | |||||
| version = "1.0"> | |||||
| <FileRef | |||||
| location = "self:"> | |||||
| </FileRef> | |||||
| </Workspace> | |||||
| @ -0,0 +1,8 @@ | |||||
| <?xml version="1.0" encoding="UTF-8"?> | |||||
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |||||
| <plist version="1.0"> | |||||
| <dict> | |||||
| <key>IDEDidComputeMac32BitWarning</key> | |||||
| <true/> | |||||
| </dict> | |||||
| </plist> | |||||
| @ -0,0 +1,8 @@ | |||||
| <?xml version="1.0" encoding="UTF-8"?> | |||||
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |||||
| <plist version="1.0"> | |||||
| <dict> | |||||
| <key>PreviewsEnabled</key> | |||||
| <false/> | |||||
| </dict> | |||||
| </plist> | |||||
| @ -0,0 +1,87 @@ | |||||
| <?xml version="1.0" encoding="UTF-8"?> | |||||
| <Scheme | |||||
| LastUpgradeVersion = "1300" | |||||
| version = "1.3"> | |||||
| <BuildAction | |||||
| parallelizeBuildables = "YES" | |||||
| buildImplicitDependencies = "YES"> | |||||
| <BuildActionEntries> | |||||
| <BuildActionEntry | |||||
| buildForTesting = "YES" | |||||
| buildForRunning = "YES" | |||||
| buildForProfiling = "YES" | |||||
| buildForArchiving = "YES" | |||||
| buildForAnalyzing = "YES"> | |||||
| <BuildableReference | |||||
| BuildableIdentifier = "primary" | |||||
| BlueprintIdentifier = "97C146ED1CF9000F007C117D" | |||||
| BuildableName = "Runner.app" | |||||
| BlueprintName = "Runner" | |||||
| ReferencedContainer = "container:Runner.xcodeproj"> | |||||
| </BuildableReference> | |||||
| </BuildActionEntry> | |||||
| </BuildActionEntries> | |||||
| </BuildAction> | |||||
| <TestAction | |||||
| buildConfiguration = "Debug" | |||||
| selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | |||||
| selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | |||||
| shouldUseLaunchSchemeArgsEnv = "YES"> | |||||
| <MacroExpansion> | |||||
| <BuildableReference | |||||
| BuildableIdentifier = "primary" | |||||
| BlueprintIdentifier = "97C146ED1CF9000F007C117D" | |||||
| BuildableName = "Runner.app" | |||||
| BlueprintName = "Runner" | |||||
| ReferencedContainer = "container:Runner.xcodeproj"> | |||||
| </BuildableReference> | |||||
| </MacroExpansion> | |||||
| <Testables> | |||||
| </Testables> | |||||
| </TestAction> | |||||
| <LaunchAction | |||||
| buildConfiguration = "Debug" | |||||
| selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | |||||
| selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | |||||
| launchStyle = "0" | |||||
| useCustomWorkingDirectory = "NO" | |||||
| ignoresPersistentStateOnLaunch = "NO" | |||||
| debugDocumentVersioning = "YES" | |||||
| debugServiceExtension = "internal" | |||||
| allowLocationSimulation = "YES"> | |||||
| <BuildableProductRunnable | |||||
| runnableDebuggingMode = "0"> | |||||
| <BuildableReference | |||||
| BuildableIdentifier = "primary" | |||||
| BlueprintIdentifier = "97C146ED1CF9000F007C117D" | |||||
| BuildableName = "Runner.app" | |||||
| BlueprintName = "Runner" | |||||
| ReferencedContainer = "container:Runner.xcodeproj"> | |||||
| </BuildableReference> | |||||
| </BuildableProductRunnable> | |||||
| </LaunchAction> | |||||
| <ProfileAction | |||||
| buildConfiguration = "Profile" | |||||
| shouldUseLaunchSchemeArgsEnv = "YES" | |||||
| savedToolIdentifier = "" | |||||
| useCustomWorkingDirectory = "NO" | |||||
| debugDocumentVersioning = "YES"> | |||||
| <BuildableProductRunnable | |||||
| runnableDebuggingMode = "0"> | |||||
| <BuildableReference | |||||
| BuildableIdentifier = "primary" | |||||
| BlueprintIdentifier = "97C146ED1CF9000F007C117D" | |||||
| BuildableName = "Runner.app" | |||||
| BlueprintName = "Runner" | |||||
| ReferencedContainer = "container:Runner.xcodeproj"> | |||||
| </BuildableReference> | |||||
| </BuildableProductRunnable> | |||||
| </ProfileAction> | |||||
| <AnalyzeAction | |||||
| buildConfiguration = "Debug"> | |||||
| </AnalyzeAction> | |||||
| <ArchiveAction | |||||
| buildConfiguration = "Release" | |||||
| revealArchiveInOrganizer = "YES"> | |||||
| </ArchiveAction> | |||||
| </Scheme> | |||||
| @ -0,0 +1,7 @@ | |||||
| <?xml version="1.0" encoding="UTF-8"?> | |||||
| <Workspace | |||||
| version = "1.0"> | |||||
| <FileRef | |||||
| location = "group:Runner.xcodeproj"> | |||||
| </FileRef> | |||||
| </Workspace> | |||||
| @ -0,0 +1,8 @@ | |||||
| <?xml version="1.0" encoding="UTF-8"?> | |||||
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |||||
| <plist version="1.0"> | |||||
| <dict> | |||||
| <key>IDEDidComputeMac32BitWarning</key> | |||||
| <true/> | |||||
| </dict> | |||||
| </plist> | |||||
| @ -0,0 +1,8 @@ | |||||
| <?xml version="1.0" encoding="UTF-8"?> | |||||
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |||||
| <plist version="1.0"> | |||||
| <dict> | |||||
| <key>PreviewsEnabled</key> | |||||
| <false/> | |||||
| </dict> | |||||
| </plist> | |||||
| @ -0,0 +1,13 @@ | |||||
| import UIKit | |||||
| import Flutter | |||||
| @UIApplicationMain | |||||
| @objc class AppDelegate: FlutterAppDelegate { | |||||
| override func application( | |||||
| _ application: UIApplication, | |||||
| didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? | |||||
| ) -> Bool { | |||||
| GeneratedPluginRegistrant.register(with: self) | |||||
| return super.application(application, didFinishLaunchingWithOptions: launchOptions) | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,122 @@ | |||||
| { | |||||
| "images" : [ | |||||
| { | |||||
| "size" : "20x20", | |||||
| "idiom" : "iphone", | |||||
| "filename" : "Icon-App-20x20@2x.png", | |||||
| "scale" : "2x" | |||||
| }, | |||||
| { | |||||
| "size" : "20x20", | |||||
| "idiom" : "iphone", | |||||
| "filename" : "Icon-App-20x20@3x.png", | |||||
| "scale" : "3x" | |||||
| }, | |||||
| { | |||||
| "size" : "29x29", | |||||
| "idiom" : "iphone", | |||||
| "filename" : "Icon-App-29x29@1x.png", | |||||
| "scale" : "1x" | |||||
| }, | |||||
| { | |||||
| "size" : "29x29", | |||||
| "idiom" : "iphone", | |||||
| "filename" : "Icon-App-29x29@2x.png", | |||||
| "scale" : "2x" | |||||
| }, | |||||
| { | |||||
| "size" : "29x29", | |||||
| "idiom" : "iphone", | |||||
| "filename" : "Icon-App-29x29@3x.png", | |||||
| "scale" : "3x" | |||||
| }, | |||||
| { | |||||
| "size" : "40x40", | |||||
| "idiom" : "iphone", | |||||
| "filename" : "Icon-App-40x40@2x.png", | |||||
| "scale" : "2x" | |||||
| }, | |||||
| { | |||||
| "size" : "40x40", | |||||
| "idiom" : "iphone", | |||||
| "filename" : "Icon-App-40x40@3x.png", | |||||
| "scale" : "3x" | |||||
| }, | |||||
| { | |||||
| "size" : "60x60", | |||||
| "idiom" : "iphone", | |||||
| "filename" : "Icon-App-60x60@2x.png", | |||||
| "scale" : "2x" | |||||
| }, | |||||
| { | |||||
| "size" : "60x60", | |||||
| "idiom" : "iphone", | |||||
| "filename" : "Icon-App-60x60@3x.png", | |||||
| "scale" : "3x" | |||||
| }, | |||||
| { | |||||
| "size" : "20x20", | |||||
| "idiom" : "ipad", | |||||
| "filename" : "Icon-App-20x20@1x.png", | |||||
| "scale" : "1x" | |||||
| }, | |||||
| { | |||||
| "size" : "20x20", | |||||
| "idiom" : "ipad", | |||||
| "filename" : "Icon-App-20x20@2x.png", | |||||
| "scale" : "2x" | |||||
| }, | |||||
| { | |||||
| "size" : "29x29", | |||||
| "idiom" : "ipad", | |||||
| "filename" : "Icon-App-29x29@1x.png", | |||||
| "scale" : "1x" | |||||
| }, | |||||
| { | |||||
| "size" : "29x29", | |||||
| "idiom" : "ipad", | |||||
| "filename" : "Icon-App-29x29@2x.png", | |||||
| "scale" : "2x" | |||||
| }, | |||||
| { | |||||
| "size" : "40x40", | |||||
| "idiom" : "ipad", | |||||
| "filename" : "Icon-App-40x40@1x.png", | |||||
| "scale" : "1x" | |||||
| }, | |||||
| { | |||||
| "size" : "40x40", | |||||
| "idiom" : "ipad", | |||||
| "filename" : "Icon-App-40x40@2x.png", | |||||
| "scale" : "2x" | |||||
| }, | |||||
| { | |||||
| "size" : "76x76", | |||||
| "idiom" : "ipad", | |||||
| "filename" : "Icon-App-76x76@1x.png", | |||||
| "scale" : "1x" | |||||
| }, | |||||
| { | |||||
| "size" : "76x76", | |||||
| "idiom" : "ipad", | |||||
| "filename" : "Icon-App-76x76@2x.png", | |||||
| "scale" : "2x" | |||||
| }, | |||||
| { | |||||
| "size" : "83.5x83.5", | |||||
| "idiom" : "ipad", | |||||
| "filename" : "Icon-App-83.5x83.5@2x.png", | |||||
| "scale" : "2x" | |||||
| }, | |||||
| { | |||||
| "size" : "1024x1024", | |||||
| "idiom" : "ios-marketing", | |||||
| "filename" : "Icon-App-1024x1024@1x.png", | |||||
| "scale" : "1x" | |||||
| } | |||||
| ], | |||||
| "info" : { | |||||
| "version" : 1, | |||||
| "author" : "xcode" | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,23 @@ | |||||
| { | |||||
| "images" : [ | |||||
| { | |||||
| "idiom" : "universal", | |||||
| "filename" : "LaunchImage.png", | |||||
| "scale" : "1x" | |||||
| }, | |||||
| { | |||||
| "idiom" : "universal", | |||||
| "filename" : "LaunchImage@2x.png", | |||||
| "scale" : "2x" | |||||
| }, | |||||
| { | |||||
| "idiom" : "universal", | |||||
| "filename" : "LaunchImage@3x.png", | |||||
| "scale" : "3x" | |||||
| } | |||||
| ], | |||||
| "info" : { | |||||
| "version" : 1, | |||||
| "author" : "xcode" | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,5 @@ | |||||
| # Launch Screen Assets | |||||
| You can customize the launch screen with your own desired assets by replacing the image files in this directory. | |||||
| You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. | |||||
| @ -0,0 +1,37 @@ | |||||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||||
| <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="12121" systemVersion="16G29" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" colorMatched="YES" initialViewController="01J-lp-oVM"> | |||||
| <dependencies> | |||||
| <deployment identifier="iOS"/> | |||||
| <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="12089"/> | |||||
| </dependencies> | |||||
| <scenes> | |||||
| <!--View Controller--> | |||||
| <scene sceneID="EHf-IW-A2E"> | |||||
| <objects> | |||||
| <viewController id="01J-lp-oVM" sceneMemberID="viewController"> | |||||
| <layoutGuides> | |||||
| <viewControllerLayoutGuide type="top" id="Ydg-fD-yQy"/> | |||||
| <viewControllerLayoutGuide type="bottom" id="xbc-2k-c8Z"/> | |||||
| </layoutGuides> | |||||
| <view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3"> | |||||
| <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> | |||||
| <subviews> | |||||
| <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" image="LaunchImage" translatesAutoresizingMaskIntoConstraints="NO" id="YRO-k0-Ey4"> | |||||
| </imageView> | |||||
| </subviews> | |||||
| <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> | |||||
| <constraints> | |||||
| <constraint firstItem="YRO-k0-Ey4" firstAttribute="centerX" secondItem="Ze5-6b-2t3" secondAttribute="centerX" id="1a2-6s-vTC"/> | |||||
| <constraint firstItem="YRO-k0-Ey4" firstAttribute="centerY" secondItem="Ze5-6b-2t3" secondAttribute="centerY" id="4X2-HB-R7a"/> | |||||
| </constraints> | |||||
| </view> | |||||
| </viewController> | |||||
| <placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/> | |||||
| </objects> | |||||
| <point key="canvasLocation" x="53" y="375"/> | |||||
| </scene> | |||||
| </scenes> | |||||
| <resources> | |||||
| <image name="LaunchImage" width="168" height="185"/> | |||||
| </resources> | |||||
| </document> | |||||
| @ -0,0 +1,26 @@ | |||||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||||
| <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="10117" systemVersion="15F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="BYZ-38-t0r"> | |||||
| <dependencies> | |||||
| <deployment identifier="iOS"/> | |||||
| <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="10085"/> | |||||
| </dependencies> | |||||
| <scenes> | |||||
| <!--Flutter View Controller--> | |||||
| <scene sceneID="tne-QT-ifu"> | |||||
| <objects> | |||||
| <viewController id="BYZ-38-t0r" customClass="FlutterViewController" sceneMemberID="viewController"> | |||||
| <layoutGuides> | |||||
| <viewControllerLayoutGuide type="top" id="y3c-jy-aDJ"/> | |||||
| <viewControllerLayoutGuide type="bottom" id="wfy-db-euE"/> | |||||
| </layoutGuides> | |||||
| <view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC"> | |||||
| <rect key="frame" x="0.0" y="0.0" width="600" height="600"/> | |||||
| <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> | |||||
| <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/> | |||||
| </view> | |||||
| </viewController> | |||||
| <placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/> | |||||
| </objects> | |||||
| </scene> | |||||
| </scenes> | |||||
| </document> | |||||
| @ -0,0 +1,47 @@ | |||||
| <?xml version="1.0" encoding="UTF-8"?> | |||||
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |||||
| <plist version="1.0"> | |||||
| <dict> | |||||
| <key>CFBundleDevelopmentRegion</key> | |||||
| <string>$(DEVELOPMENT_LANGUAGE)</string> | |||||
| <key>CFBundleDisplayName</key> | |||||
| <string>Mobile</string> | |||||
| <key>CFBundleExecutable</key> | |||||
| <string>$(EXECUTABLE_NAME)</string> | |||||
| <key>CFBundleIdentifier</key> | |||||
| <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> | |||||
| <key>CFBundleInfoDictionaryVersion</key> | |||||
| <string>6.0</string> | |||||
| <key>CFBundleName</key> | |||||
| <string>mobile</string> | |||||
| <key>CFBundlePackageType</key> | |||||
| <string>APPL</string> | |||||
| <key>CFBundleShortVersionString</key> | |||||
| <string>$(FLUTTER_BUILD_NAME)</string> | |||||
| <key>CFBundleSignature</key> | |||||
| <string>????</string> | |||||
| <key>CFBundleVersion</key> | |||||
| <string>$(FLUTTER_BUILD_NUMBER)</string> | |||||
| <key>LSRequiresIPhoneOS</key> | |||||
| <true/> | |||||
| <key>UILaunchStoryboardName</key> | |||||
| <string>LaunchScreen</string> | |||||
| <key>UIMainStoryboardFile</key> | |||||
| <string>Main</string> | |||||
| <key>UISupportedInterfaceOrientations</key> | |||||
| <array> | |||||
| <string>UIInterfaceOrientationPortrait</string> | |||||
| <string>UIInterfaceOrientationLandscapeLeft</string> | |||||
| <string>UIInterfaceOrientationLandscapeRight</string> | |||||
| </array> | |||||
| <key>UISupportedInterfaceOrientations~ipad</key> | |||||
| <array> | |||||
| <string>UIInterfaceOrientationPortrait</string> | |||||
| <string>UIInterfaceOrientationPortraitUpsideDown</string> | |||||
| <string>UIInterfaceOrientationLandscapeLeft</string> | |||||
| <string>UIInterfaceOrientationLandscapeRight</string> | |||||
| </array> | |||||
| <key>UIViewControllerBasedStatusBarAppearance</key> | |||||
| <false/> | |||||
| </dict> | |||||
| </plist> | |||||
| @ -0,0 +1 @@ | |||||
| #import "GeneratedPluginRegistrant.h" | |||||
| @ -0,0 +1,172 @@ | |||||
| import 'package:flutter/material.dart'; | |||||
| import 'package:pointycastle/api.dart'; | |||||
| class Signup extends StatelessWidget { | |||||
| const Signup({Key? key}) : super(key: key); | |||||
| static const String _title = 'Envelope'; | |||||
| @override | |||||
| Widget build(BuildContext context) { | |||||
| return MaterialApp( | |||||
| title: _title, | |||||
| home: Scaffold( | |||||
| backgroundColor: Colors.cyan, | |||||
| appBar: AppBar( | |||||
| title: null, | |||||
| automaticallyImplyLeading: true, | |||||
| //`true` if you want Flutter to automatically add Back Button when needed, | |||||
| //or `false` if you want to force your own back button every where | |||||
| leading: IconButton(icon: const Icon(Icons.arrow_back), | |||||
| //onPressed:() => Navigator.pop(context, false), | |||||
| onPressed:() => { | |||||
| Navigator.pop(context) | |||||
| } | |||||
| ) | |||||
| ), | |||||
| body: const SafeArea( | |||||
| child: SignupWidget(), | |||||
| ) | |||||
| ), | |||||
| theme: ThemeData( | |||||
| appBarTheme: const AppBarTheme( | |||||
| backgroundColor: Colors.cyan, | |||||
| elevation: 0, | |||||
| ), | |||||
| inputDecorationTheme: const InputDecorationTheme( | |||||
| border: OutlineInputBorder(), | |||||
| focusedBorder: OutlineInputBorder(), | |||||
| labelStyle: TextStyle( | |||||
| color: Colors.white, | |||||
| fontSize: 30, | |||||
| ), | |||||
| filled: true, | |||||
| fillColor: Colors.white, | |||||
| ), | |||||
| ), | |||||
| ); | |||||
| } | |||||
| } | |||||
| class SignupWidget extends StatefulWidget { | |||||
| const SignupWidget({Key? key}) : super(key: key); | |||||
| @override | |||||
| State<SignupWidget> createState() => _SignupWidgetState(); | |||||
| } | |||||
| class _SignupWidgetState extends State<SignupWidget> { | |||||
| final _formKey = GlobalKey<FormState>(); | |||||
| TextEditingController usernameController = TextEditingController(); | |||||
| TextEditingController passwordController = TextEditingController(); | |||||
| TextEditingController passwordConfirmController = TextEditingController(); | |||||
| @override | |||||
| Widget build(BuildContext context) { | |||||
| const TextStyle _inputTextStyle = TextStyle(fontSize: 18, color: Colors.black); | |||||
| final ButtonStyle _buttonStyle = ElevatedButton.styleFrom( | |||||
| primary: Colors.white, | |||||
| onPrimary: Colors.cyan, | |||||
| minimumSize: const Size.fromHeight(50), | |||||
| padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 10), | |||||
| textStyle: const TextStyle( | |||||
| fontSize: 20, | |||||
| fontWeight: FontWeight.bold, | |||||
| color: Colors.red, | |||||
| ), | |||||
| ); | |||||
| return Center( | |||||
| child: Form( | |||||
| key: _formKey, | |||||
| child: Center( | |||||
| child: Padding( | |||||
| padding: const EdgeInsets.all(15), | |||||
| child: Column( | |||||
| mainAxisAlignment: MainAxisAlignment.center, | |||||
| crossAxisAlignment: CrossAxisAlignment.center, | |||||
| children: [ | |||||
| const Text('Sign Up', style: TextStyle(fontSize: 35, color: Colors.white),), | |||||
| const SizedBox(height: 30), | |||||
| TextFormField( | |||||
| controller: usernameController, | |||||
| decoration: const InputDecoration( | |||||
| hintText: 'Username', | |||||
| ), | |||||
| style: _inputTextStyle, | |||||
| // The validator receives the text that the user has entered. | |||||
| validator: (value) { | |||||
| if (value == null || value.isEmpty) { | |||||
| return 'Create a username'; | |||||
| } | |||||
| return null; | |||||
| }, | |||||
| ), | |||||
| const SizedBox(height: 5), | |||||
| TextFormField( | |||||
| controller: passwordController, | |||||
| obscureText: true, | |||||
| enableSuggestions: false, | |||||
| autocorrect: false, | |||||
| decoration: const InputDecoration( | |||||
| hintText: 'Password', | |||||
| ), | |||||
| style: _inputTextStyle, | |||||
| // The validator receives the text that the user has entered. | |||||
| validator: (value) { | |||||
| if (value == null || value.isEmpty) { | |||||
| return 'Enter a password'; | |||||
| } | |||||
| return null; | |||||
| }, | |||||
| ), | |||||
| const SizedBox(height: 5), | |||||
| TextFormField( | |||||
| controller: passwordConfirmController, | |||||
| obscureText: true, | |||||
| enableSuggestions: false, | |||||
| autocorrect: false, | |||||
| decoration: const InputDecoration( | |||||
| hintText: 'Password', | |||||
| ), | |||||
| style: _inputTextStyle, | |||||
| // The validator receives the text that the user has entered. | |||||
| validator: (value) { | |||||
| if (value == null || value.isEmpty) { | |||||
| return 'Confirm your password'; | |||||
| } | |||||
| if (value != passwordController.text) { | |||||
| return 'Passwords do not match'; | |||||
| } | |||||
| return null; | |||||
| }, | |||||
| ), | |||||
| const SizedBox(height: 5), | |||||
| ElevatedButton( | |||||
| style: _buttonStyle, | |||||
| onPressed: () { | |||||
| if (_formKey.currentState!.validate()) { | |||||
| ScaffoldMessenger.of(context).showSnackBar( | |||||
| const SnackBar(content: Text('Processing Data')), | |||||
| ); | |||||
| signup(context); | |||||
| } | |||||
| }, | |||||
| child: const Text('Submit'), | |||||
| ), | |||||
| ], | |||||
| ) | |||||
| ) | |||||
| ) | |||||
| ) | |||||
| ); | |||||
| } | |||||
| } | |||||
| void signup(context) { | |||||
| } | |||||
| @ -0,0 +1,75 @@ | |||||
| import 'package:flutter/material.dart'; | |||||
| import 'package:font_awesome_flutter/font_awesome_flutter.dart'; | |||||
| import './signup.dart'; | |||||
| class UnauthenticatedLandingWidget extends StatefulWidget { | |||||
| const UnauthenticatedLandingWidget({Key? key}) : super(key: key); | |||||
| @override | |||||
| State<UnauthenticatedLandingWidget> createState() => _UnauthenticatedLandingWidgetState(); | |||||
| } | |||||
| class _UnauthenticatedLandingWidgetState extends State<UnauthenticatedLandingWidget> { | |||||
| @override | |||||
| Widget build(BuildContext context) { | |||||
| final ButtonStyle buttonStyle = ElevatedButton.styleFrom( | |||||
| primary: Colors.white, | |||||
| onPrimary: Colors.cyan, | |||||
| minimumSize: const Size.fromHeight(50), | |||||
| padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 10), | |||||
| textStyle: const TextStyle( | |||||
| fontSize: 20, | |||||
| fontWeight: FontWeight.bold, | |||||
| color: Colors.red, | |||||
| ), | |||||
| ); | |||||
| return Center( | |||||
| child: Column( | |||||
| mainAxisAlignment: MainAxisAlignment.center, | |||||
| crossAxisAlignment: CrossAxisAlignment.center, | |||||
| children: <Widget>[ | |||||
| Center( | |||||
| child: Row( | |||||
| mainAxisAlignment: MainAxisAlignment.center, | |||||
| crossAxisAlignment: CrossAxisAlignment.center, | |||||
| children: const [ | |||||
| FaIcon(FontAwesomeIcons.envelope, color: Colors.white, size: 40), | |||||
| SizedBox(width: 15), | |||||
| Text('Envelope', style: TextStyle(fontSize: 40, color: Colors.white),) | |||||
| ] | |||||
| ), | |||||
| ), | |||||
| const SizedBox(height: 10), | |||||
| Padding( | |||||
| padding: const EdgeInsets.all(15), | |||||
| child: Column ( | |||||
| children: [ | |||||
| ElevatedButton( | |||||
| child: const Text('Login'), | |||||
| onPressed: loginButton, | |||||
| style: buttonStyle, | |||||
| ), | |||||
| const SizedBox(height: 20), | |||||
| ElevatedButton( | |||||
| child: const Text('Sign Up'), | |||||
| onPressed: () => { | |||||
| Navigator.push( | |||||
| context, | |||||
| MaterialPageRoute(builder: (context) => const Signup()), | |||||
| ), | |||||
| }, | |||||
| style: buttonStyle, | |||||
| ), | |||||
| ] | |||||
| ), | |||||
| ), | |||||
| ], | |||||
| ), | |||||
| ); | |||||
| } | |||||
| } | |||||
| void loginButton() { | |||||
| } | |||||
| @ -0,0 +1,25 @@ | |||||
| import 'package:flutter/material.dart'; | |||||
| import './authentication/unauthenticated_landing.dart'; | |||||
| void main() { | |||||
| runApp(const Home()); | |||||
| } | |||||
| class Home extends StatelessWidget { | |||||
| const Home({Key? key}) : super(key: key); | |||||
| static const String _title = 'Envelope'; | |||||
| @override | |||||
| Widget build(BuildContext context) { | |||||
| return const MaterialApp( | |||||
| title: _title, | |||||
| home: Scaffold( | |||||
| backgroundColor: Colors.cyan, | |||||
| body: SafeArea( | |||||
| child: UnauthenticatedLandingWidget(), | |||||
| ) | |||||
| ) | |||||
| ); | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,202 @@ | |||||
| # Generated by pub | |||||
| # See https://dart.dev/tools/pub/glossary#lockfile | |||||
| packages: | |||||
| async: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: async | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "2.8.2" | |||||
| boolean_selector: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: boolean_selector | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "2.1.0" | |||||
| characters: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: characters | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "1.2.0" | |||||
| charcode: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: charcode | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "1.3.1" | |||||
| clock: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: clock | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "1.1.0" | |||||
| collection: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: collection | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "1.15.0" | |||||
| convert: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: convert | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "3.0.1" | |||||
| cupertino_icons: | |||||
| dependency: "direct main" | |||||
| description: | |||||
| name: cupertino_icons | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "1.0.4" | |||||
| fake_async: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: fake_async | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "1.2.0" | |||||
| flutter: | |||||
| dependency: "direct main" | |||||
| description: flutter | |||||
| source: sdk | |||||
| version: "0.0.0" | |||||
| flutter_lints: | |||||
| dependency: "direct dev" | |||||
| description: | |||||
| name: flutter_lints | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "1.0.4" | |||||
| flutter_test: | |||||
| dependency: "direct dev" | |||||
| description: flutter | |||||
| source: sdk | |||||
| version: "0.0.0" | |||||
| font_awesome_flutter: | |||||
| dependency: "direct main" | |||||
| description: | |||||
| name: font_awesome_flutter | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "10.1.0" | |||||
| js: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: js | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "0.6.4" | |||||
| lints: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: lints | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "1.0.1" | |||||
| matcher: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: matcher | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "0.12.11" | |||||
| material_color_utilities: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: material_color_utilities | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "0.1.3" | |||||
| meta: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: meta | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "1.7.0" | |||||
| path: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: path | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "1.8.0" | |||||
| pointycastle: | |||||
| dependency: "direct main" | |||||
| description: | |||||
| name: pointycastle | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "3.5.2" | |||||
| sky_engine: | |||||
| dependency: transitive | |||||
| description: flutter | |||||
| source: sdk | |||||
| version: "0.0.99" | |||||
| source_span: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: source_span | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "1.8.1" | |||||
| stack_trace: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: stack_trace | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "1.10.0" | |||||
| stream_channel: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: stream_channel | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "2.1.0" | |||||
| string_scanner: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: string_scanner | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "1.1.0" | |||||
| term_glyph: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: term_glyph | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "1.2.0" | |||||
| test_api: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: test_api | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "0.4.8" | |||||
| typed_data: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: typed_data | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "1.3.0" | |||||
| vector_math: | |||||
| dependency: transitive | |||||
| description: | |||||
| name: vector_math | |||||
| url: "https://pub.dartlang.org" | |||||
| source: hosted | |||||
| version: "2.1.1" | |||||
| sdks: | |||||
| dart: ">=2.16.2 <3.0.0" | |||||
| @ -0,0 +1,28 @@ | |||||
| name: mobile | |||||
| description: A new Flutter project. | |||||
| publish_to: 'none' # Remove this line if you wish to publish to pub.dev | |||||
| version: 1.0.0+1 | |||||
| environment: | |||||
| sdk: ">=2.16.2 <3.0.0" | |||||
| dependencies: | |||||
| flutter: | |||||
| sdk: flutter | |||||
| cupertino_icons: ^1.0.2 | |||||
| font_awesome_flutter: ^10.1.0 | |||||
| pointycastle: ^3.5.2 | |||||
| dev_dependencies: | |||||
| flutter_test: | |||||
| sdk: flutter | |||||
| flutter_lints: ^1.0.0 | |||||
| flutter: | |||||
| uses-material-design: true | |||||
| @ -0,0 +1,30 @@ | |||||
| // This is a basic Flutter widget test. | |||||
| // | |||||
| // To perform an interaction with a widget in your test, use the WidgetTester | |||||
| // utility that Flutter provides. For example, you can send tap and scroll | |||||
| // gestures. You can also use WidgetTester to find child widgets in the widget | |||||
| // tree, read text, and verify that the values of widget properties are correct. | |||||
| import 'package:flutter/material.dart'; | |||||
| import 'package:flutter_test/flutter_test.dart'; | |||||
| import 'package:mobile/main.dart'; | |||||
| void main() { | |||||
| testWidgets('Counter increments smoke test', (WidgetTester tester) async { | |||||
| // Build our app and trigger a frame. | |||||
| await tester.pumpWidget(const MyApp()); | |||||
| // Verify that our counter starts at 0. | |||||
| expect(find.text('0'), findsOneWidget); | |||||
| expect(find.text('1'), findsNothing); | |||||
| // Tap the '+' icon and trigger a frame. | |||||
| await tester.tap(find.byIcon(Icons.add)); | |||||
| await tester.pump(); | |||||
| // Verify that our counter has incremented. | |||||
| expect(find.text('0'), findsNothing); | |||||
| expect(find.text('1'), findsOneWidget); | |||||
| }); | |||||
| } | |||||
| @ -0,0 +1,104 @@ | |||||
| <!DOCTYPE html> | |||||
| <html> | |||||
| <head> | |||||
| <!-- | |||||
| If you are serving your web app in a path other than the root, change the | |||||
| href value below to reflect the base path you are serving from. | |||||
| The path provided below has to start and end with a slash "/" in order for | |||||
| it to work correctly. | |||||
| For more details: | |||||
| * https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base | |||||
| This is a placeholder for base href that will be replaced by the value of | |||||
| the `--base-href` argument provided to `flutter build`. | |||||
| --> | |||||
| <base href="$FLUTTER_BASE_HREF"> | |||||
| <meta charset="UTF-8"> | |||||
| <meta content="IE=Edge" http-equiv="X-UA-Compatible"> | |||||
| <meta name="description" content="A new Flutter project."> | |||||
| <!-- iOS meta tags & icons --> | |||||
| <meta name="apple-mobile-web-app-capable" content="yes"> | |||||
| <meta name="apple-mobile-web-app-status-bar-style" content="black"> | |||||
| <meta name="apple-mobile-web-app-title" content="mobile"> | |||||
| <link rel="apple-touch-icon" href="icons/Icon-192.png"> | |||||
| <!-- Favicon --> | |||||
| <link rel="icon" type="image/png" href="favicon.png"/> | |||||
| <title>mobile</title> | |||||
| <link rel="manifest" href="manifest.json"> | |||||
| </head> | |||||
| <body> | |||||
| <!-- This script installs service_worker.js to provide PWA functionality to | |||||
| application. For more information, see: | |||||
| https://developers.google.com/web/fundamentals/primers/service-workers --> | |||||
| <script> | |||||
| var serviceWorkerVersion = null; | |||||
| var scriptLoaded = false; | |||||
| function loadMainDartJs() { | |||||
| if (scriptLoaded) { | |||||
| return; | |||||
| } | |||||
| scriptLoaded = true; | |||||
| var scriptTag = document.createElement('script'); | |||||
| scriptTag.src = 'main.dart.js'; | |||||
| scriptTag.type = 'application/javascript'; | |||||
| document.body.append(scriptTag); | |||||
| } | |||||
| if ('serviceWorker' in navigator) { | |||||
| // Service workers are supported. Use them. | |||||
| window.addEventListener('load', function () { | |||||
| // Wait for registration to finish before dropping the <script> tag. | |||||
| // Otherwise, the browser will load the script multiple times, | |||||
| // potentially different versions. | |||||
| var serviceWorkerUrl = 'flutter_service_worker.js?v=' + serviceWorkerVersion; | |||||
| navigator.serviceWorker.register(serviceWorkerUrl) | |||||
| .then((reg) => { | |||||
| function waitForActivation(serviceWorker) { | |||||
| serviceWorker.addEventListener('statechange', () => { | |||||
| if (serviceWorker.state == 'activated') { | |||||
| console.log('Installed new service worker.'); | |||||
| loadMainDartJs(); | |||||
| } | |||||
| }); | |||||
| } | |||||
| if (!reg.active && (reg.installing || reg.waiting)) { | |||||
| // No active web worker and we have installed or are installing | |||||
| // one for the first time. Simply wait for it to activate. | |||||
| waitForActivation(reg.installing || reg.waiting); | |||||
| } else if (!reg.active.scriptURL.endsWith(serviceWorkerVersion)) { | |||||
| // When the app updates the serviceWorkerVersion changes, so we | |||||
| // need to ask the service worker to update. | |||||
| console.log('New service worker available.'); | |||||
| reg.update(); | |||||
| waitForActivation(reg.installing); | |||||
| } else { | |||||
| // Existing service worker is still good. | |||||
| console.log('Loading app from service worker.'); | |||||
| loadMainDartJs(); | |||||
| } | |||||
| }); | |||||
| // If service worker doesn't succeed in a reasonable amount of time, | |||||
| // fallback to plaint <script> tag. | |||||
| setTimeout(() => { | |||||
| if (!scriptLoaded) { | |||||
| console.warn( | |||||
| 'Failed to load app from service worker. Falling back to plain <script> tag.', | |||||
| ); | |||||
| loadMainDartJs(); | |||||
| } | |||||
| }, 4000); | |||||
| }); | |||||
| } else { | |||||
| // Service workers not supported. Just drop the <script> tag. | |||||
| loadMainDartJs(); | |||||
| } | |||||
| </script> | |||||
| </body> | |||||
| </html> | |||||
| @ -0,0 +1,35 @@ | |||||
| { | |||||
| "name": "mobile", | |||||
| "short_name": "mobile", | |||||
| "start_url": ".", | |||||
| "display": "standalone", | |||||
| "background_color": "#0175C2", | |||||
| "theme_color": "#0175C2", | |||||
| "description": "A new Flutter project.", | |||||
| "orientation": "portrait-primary", | |||||
| "prefer_related_applications": false, | |||||
| "icons": [ | |||||
| { | |||||
| "src": "icons/Icon-192.png", | |||||
| "sizes": "192x192", | |||||
| "type": "image/png" | |||||
| }, | |||||
| { | |||||
| "src": "icons/Icon-512.png", | |||||
| "sizes": "512x512", | |||||
| "type": "image/png" | |||||
| }, | |||||
| { | |||||
| "src": "icons/Icon-maskable-192.png", | |||||
| "sizes": "192x192", | |||||
| "type": "image/png", | |||||
| "purpose": "maskable" | |||||
| }, | |||||
| { | |||||
| "src": "icons/Icon-maskable-512.png", | |||||
| "sizes": "512x512", | |||||
| "type": "image/png", | |||||
| "purpose": "maskable" | |||||
| } | |||||
| ] | |||||
| } | |||||
| @ -0,0 +1,17 @@ | |||||
| flutter/ephemeral/ | |||||
| # Visual Studio user-specific files. | |||||
| *.suo | |||||
| *.user | |||||
| *.userosscache | |||||
| *.sln.docstates | |||||
| # Visual Studio build-related files. | |||||
| x64/ | |||||
| x86/ | |||||
| # Visual Studio cache files | |||||
| # files ending in .cache can be ignored | |||||
| *.[Cc]ache | |||||
| # but keep track of directories ending in .cache | |||||
| !*.[Cc]ache/ | |||||
| @ -0,0 +1,95 @@ | |||||
| cmake_minimum_required(VERSION 3.14) | |||||
| project(mobile LANGUAGES CXX) | |||||
| set(BINARY_NAME "mobile") | |||||
| cmake_policy(SET CMP0063 NEW) | |||||
| set(CMAKE_INSTALL_RPATH "$ORIGIN/lib") | |||||
| # Configure build options. | |||||
| get_property(IS_MULTICONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) | |||||
| if(IS_MULTICONFIG) | |||||
| set(CMAKE_CONFIGURATION_TYPES "Debug;Profile;Release" | |||||
| CACHE STRING "" FORCE) | |||||
| else() | |||||
| if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) | |||||
| set(CMAKE_BUILD_TYPE "Debug" CACHE | |||||
| STRING "Flutter build mode" FORCE) | |||||
| set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS | |||||
| "Debug" "Profile" "Release") | |||||
| endif() | |||||
| endif() | |||||
| set(CMAKE_EXE_LINKER_FLAGS_PROFILE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}") | |||||
| set(CMAKE_SHARED_LINKER_FLAGS_PROFILE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE}") | |||||
| set(CMAKE_C_FLAGS_PROFILE "${CMAKE_C_FLAGS_RELEASE}") | |||||
| set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_RELEASE}") | |||||
| # Use Unicode for all projects. | |||||
| add_definitions(-DUNICODE -D_UNICODE) | |||||
| # Compilation settings that should be applied to most targets. | |||||
| function(APPLY_STANDARD_SETTINGS TARGET) | |||||
| target_compile_features(${TARGET} PUBLIC cxx_std_17) | |||||
| target_compile_options(${TARGET} PRIVATE /W4 /WX /wd"4100") | |||||
| target_compile_options(${TARGET} PRIVATE /EHsc) | |||||
| target_compile_definitions(${TARGET} PRIVATE "_HAS_EXCEPTIONS=0") | |||||
| target_compile_definitions(${TARGET} PRIVATE "$<$<CONFIG:Debug>:_DEBUG>") | |||||
| endfunction() | |||||
| set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") | |||||
| # Flutter library and tool build rules. | |||||
| add_subdirectory(${FLUTTER_MANAGED_DIR}) | |||||
| # Application build | |||||
| add_subdirectory("runner") | |||||
| # Generated plugin build rules, which manage building the plugins and adding | |||||
| # them to the application. | |||||
| include(flutter/generated_plugins.cmake) | |||||
| # === Installation === | |||||
| # Support files are copied into place next to the executable, so that it can | |||||
| # run in place. This is done instead of making a separate bundle (as on Linux) | |||||
| # so that building and running from within Visual Studio will work. | |||||
| set(BUILD_BUNDLE_DIR "$<TARGET_FILE_DIR:${BINARY_NAME}>") | |||||
| # Make the "install" step default, as it's required to run. | |||||
| set(CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD 1) | |||||
| if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) | |||||
| set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) | |||||
| endif() | |||||
| set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") | |||||
| set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}") | |||||
| install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" | |||||
| COMPONENT Runtime) | |||||
| install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" | |||||
| COMPONENT Runtime) | |||||
| install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" | |||||
| COMPONENT Runtime) | |||||
| if(PLUGIN_BUNDLED_LIBRARIES) | |||||
| install(FILES "${PLUGIN_BUNDLED_LIBRARIES}" | |||||
| DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" | |||||
| COMPONENT Runtime) | |||||
| endif() | |||||
| # Fully re-copy the assets directory on each build to avoid having stale files | |||||
| # from a previous install. | |||||
| set(FLUTTER_ASSET_DIR_NAME "flutter_assets") | |||||
| install(CODE " | |||||
| file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") | |||||
| " COMPONENT Runtime) | |||||
| install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" | |||||
| DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) | |||||
| # Install the AOT library on non-Debug builds only. | |||||
| install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" | |||||
| CONFIGURATIONS Profile;Release | |||||
| COMPONENT Runtime) | |||||
| @ -0,0 +1,103 @@ | |||||
| cmake_minimum_required(VERSION 3.14) | |||||
| set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") | |||||
| # Configuration provided via flutter tool. | |||||
| include(${EPHEMERAL_DIR}/generated_config.cmake) | |||||
| # TODO: Move the rest of this into files in ephemeral. See | |||||
| # https://github.com/flutter/flutter/issues/57146. | |||||
| set(WRAPPER_ROOT "${EPHEMERAL_DIR}/cpp_client_wrapper") | |||||
| # === Flutter Library === | |||||
| set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/flutter_windows.dll") | |||||
| # Published to parent scope for install step. | |||||
| set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) | |||||
| set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) | |||||
| set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) | |||||
| set(AOT_LIBRARY "${PROJECT_DIR}/build/windows/app.so" PARENT_SCOPE) | |||||
| list(APPEND FLUTTER_LIBRARY_HEADERS | |||||
| "flutter_export.h" | |||||
| "flutter_windows.h" | |||||
| "flutter_messenger.h" | |||||
| "flutter_plugin_registrar.h" | |||||
| "flutter_texture_registrar.h" | |||||
| ) | |||||
| list(TRANSFORM FLUTTER_LIBRARY_HEADERS PREPEND "${EPHEMERAL_DIR}/") | |||||
| add_library(flutter INTERFACE) | |||||
| target_include_directories(flutter INTERFACE | |||||
| "${EPHEMERAL_DIR}" | |||||
| ) | |||||
| target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}.lib") | |||||
| add_dependencies(flutter flutter_assemble) | |||||
| # === Wrapper === | |||||
| list(APPEND CPP_WRAPPER_SOURCES_CORE | |||||
| "core_implementations.cc" | |||||
| "standard_codec.cc" | |||||
| ) | |||||
| list(TRANSFORM CPP_WRAPPER_SOURCES_CORE PREPEND "${WRAPPER_ROOT}/") | |||||
| list(APPEND CPP_WRAPPER_SOURCES_PLUGIN | |||||
| "plugin_registrar.cc" | |||||
| ) | |||||
| list(TRANSFORM CPP_WRAPPER_SOURCES_PLUGIN PREPEND "${WRAPPER_ROOT}/") | |||||
| list(APPEND CPP_WRAPPER_SOURCES_APP | |||||
| "flutter_engine.cc" | |||||
| "flutter_view_controller.cc" | |||||
| ) | |||||
| list(TRANSFORM CPP_WRAPPER_SOURCES_APP PREPEND "${WRAPPER_ROOT}/") | |||||
| # Wrapper sources needed for a plugin. | |||||
| add_library(flutter_wrapper_plugin STATIC | |||||
| ${CPP_WRAPPER_SOURCES_CORE} | |||||
| ${CPP_WRAPPER_SOURCES_PLUGIN} | |||||
| ) | |||||
| apply_standard_settings(flutter_wrapper_plugin) | |||||
| set_target_properties(flutter_wrapper_plugin PROPERTIES | |||||
| POSITION_INDEPENDENT_CODE ON) | |||||
| set_target_properties(flutter_wrapper_plugin PROPERTIES | |||||
| CXX_VISIBILITY_PRESET hidden) | |||||
| target_link_libraries(flutter_wrapper_plugin PUBLIC flutter) | |||||
| target_include_directories(flutter_wrapper_plugin PUBLIC | |||||
| "${WRAPPER_ROOT}/include" | |||||
| ) | |||||
| add_dependencies(flutter_wrapper_plugin flutter_assemble) | |||||
| # Wrapper sources needed for the runner. | |||||
| add_library(flutter_wrapper_app STATIC | |||||
| ${CPP_WRAPPER_SOURCES_CORE} | |||||
| ${CPP_WRAPPER_SOURCES_APP} | |||||
| ) | |||||
| apply_standard_settings(flutter_wrapper_app) | |||||
| target_link_libraries(flutter_wrapper_app PUBLIC flutter) | |||||
| target_include_directories(flutter_wrapper_app PUBLIC | |||||
| "${WRAPPER_ROOT}/include" | |||||
| ) | |||||
| add_dependencies(flutter_wrapper_app flutter_assemble) | |||||
| # === Flutter tool backend === | |||||
| # _phony_ is a non-existent file to force this command to run every time, | |||||
| # since currently there's no way to get a full input/output list from the | |||||
| # flutter tool. | |||||
| set(PHONY_OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/_phony_") | |||||
| set_source_files_properties("${PHONY_OUTPUT}" PROPERTIES SYMBOLIC TRUE) | |||||
| add_custom_command( | |||||
| OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} | |||||
| ${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_PLUGIN} | |||||
| ${CPP_WRAPPER_SOURCES_APP} | |||||
| ${PHONY_OUTPUT} | |||||
| COMMAND ${CMAKE_COMMAND} -E env | |||||
| ${FLUTTER_TOOL_ENVIRONMENT} | |||||
| "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.bat" | |||||
| windows-x64 $<CONFIG> | |||||
| VERBATIM | |||||
| ) | |||||
| add_custom_target(flutter_assemble DEPENDS | |||||
| "${FLUTTER_LIBRARY}" | |||||
| ${FLUTTER_LIBRARY_HEADERS} | |||||
| ${CPP_WRAPPER_SOURCES_CORE} | |||||
| ${CPP_WRAPPER_SOURCES_PLUGIN} | |||||
| ${CPP_WRAPPER_SOURCES_APP} | |||||
| ) | |||||
| @ -0,0 +1,11 @@ | |||||
| // | |||||
| // Generated file. Do not edit. | |||||
| // | |||||
| // clang-format off | |||||
| #include "generated_plugin_registrant.h" | |||||
| void RegisterPlugins(flutter::PluginRegistry* registry) { | |||||
| } | |||||
| @ -0,0 +1,15 @@ | |||||
| // | |||||
| // Generated file. Do not edit. | |||||
| // | |||||
| // clang-format off | |||||
| #ifndef GENERATED_PLUGIN_REGISTRANT_ | |||||
| #define GENERATED_PLUGIN_REGISTRANT_ | |||||
| #include <flutter/plugin_registry.h> | |||||
| // Registers Flutter plugins. | |||||
| void RegisterPlugins(flutter::PluginRegistry* registry); | |||||
| #endif // GENERATED_PLUGIN_REGISTRANT_ | |||||
| @ -0,0 +1,15 @@ | |||||
| # | |||||
| # Generated file, do not edit. | |||||
| # | |||||
| list(APPEND FLUTTER_PLUGIN_LIST | |||||
| ) | |||||
| set(PLUGIN_BUNDLED_LIBRARIES) | |||||
| foreach(plugin ${FLUTTER_PLUGIN_LIST}) | |||||
| add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin}) | |||||
| target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) | |||||
| list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>) | |||||
| list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) | |||||
| endforeach(plugin) | |||||
| @ -0,0 +1,17 @@ | |||||
| cmake_minimum_required(VERSION 3.14) | |||||
| project(runner LANGUAGES CXX) | |||||
| add_executable(${BINARY_NAME} WIN32 | |||||
| "flutter_window.cpp" | |||||
| "main.cpp" | |||||
| "utils.cpp" | |||||
| "win32_window.cpp" | |||||
| "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" | |||||
| "Runner.rc" | |||||
| "runner.exe.manifest" | |||||
| ) | |||||
| apply_standard_settings(${BINARY_NAME}) | |||||
| target_compile_definitions(${BINARY_NAME} PRIVATE "NOMINMAX") | |||||
| target_link_libraries(${BINARY_NAME} PRIVATE flutter flutter_wrapper_app) | |||||
| target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}") | |||||
| add_dependencies(${BINARY_NAME} flutter_assemble) | |||||
| @ -0,0 +1,121 @@ | |||||
| // Microsoft Visual C++ generated resource script. | |||||
| // | |||||
| #pragma code_page(65001) | |||||
| #include "resource.h" | |||||
| #define APSTUDIO_READONLY_SYMBOLS | |||||
| ///////////////////////////////////////////////////////////////////////////// | |||||
| // | |||||
| // Generated from the TEXTINCLUDE 2 resource. | |||||
| // | |||||
| #include "winres.h" | |||||
| ///////////////////////////////////////////////////////////////////////////// | |||||
| #undef APSTUDIO_READONLY_SYMBOLS | |||||
| ///////////////////////////////////////////////////////////////////////////// | |||||
| // English (United States) resources | |||||
| #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) | |||||
| LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US | |||||
| #ifdef APSTUDIO_INVOKED | |||||
| ///////////////////////////////////////////////////////////////////////////// | |||||
| // | |||||
| // TEXTINCLUDE | |||||
| // | |||||
| 1 TEXTINCLUDE | |||||
| BEGIN | |||||
| "resource.h\0" | |||||
| END | |||||
| 2 TEXTINCLUDE | |||||
| BEGIN | |||||
| "#include ""winres.h""\r\n" | |||||
| "\0" | |||||
| END | |||||
| 3 TEXTINCLUDE | |||||
| BEGIN | |||||
| "\r\n" | |||||
| "\0" | |||||
| END | |||||
| #endif // APSTUDIO_INVOKED | |||||
| ///////////////////////////////////////////////////////////////////////////// | |||||
| // | |||||
| // Icon | |||||
| // | |||||
| // Icon with lowest ID value placed first to ensure application icon | |||||
| // remains consistent on all systems. | |||||
| IDI_APP_ICON ICON "resources\\app_icon.ico" | |||||
| ///////////////////////////////////////////////////////////////////////////// | |||||
| // | |||||
| // Version | |||||
| // | |||||
| #ifdef FLUTTER_BUILD_NUMBER | |||||
| #define VERSION_AS_NUMBER FLUTTER_BUILD_NUMBER | |||||
| #else | |||||
| #define VERSION_AS_NUMBER 1,0,0 | |||||
| #endif | |||||
| #ifdef FLUTTER_BUILD_NAME | |||||
| #define VERSION_AS_STRING #FLUTTER_BUILD_NAME | |||||
| #else | |||||
| #define VERSION_AS_STRING "1.0.0" | |||||
| #endif | |||||
| VS_VERSION_INFO VERSIONINFO | |||||
| FILEVERSION VERSION_AS_NUMBER | |||||
| PRODUCTVERSION VERSION_AS_NUMBER | |||||
| FILEFLAGSMASK VS_FFI_FILEFLAGSMASK | |||||
| #ifdef _DEBUG | |||||
| FILEFLAGS VS_FF_DEBUG | |||||
| #else | |||||
| FILEFLAGS 0x0L | |||||
| #endif | |||||
| FILEOS VOS__WINDOWS32 | |||||
| FILETYPE VFT_APP | |||||
| FILESUBTYPE 0x0L | |||||
| BEGIN | |||||
| BLOCK "StringFileInfo" | |||||
| BEGIN | |||||
| BLOCK "040904e4" | |||||
| BEGIN | |||||
| VALUE "CompanyName", "com.example" "\0" | |||||
| VALUE "FileDescription", "mobile" "\0" | |||||
| VALUE "FileVersion", VERSION_AS_STRING "\0" | |||||
| VALUE "InternalName", "mobile" "\0" | |||||
| VALUE "LegalCopyright", "Copyright (C) 2022 com.example. All rights reserved." "\0" | |||||
| VALUE "OriginalFilename", "mobile.exe" "\0" | |||||
| VALUE "ProductName", "mobile" "\0" | |||||
| VALUE "ProductVersion", VERSION_AS_STRING "\0" | |||||
| END | |||||
| END | |||||
| BLOCK "VarFileInfo" | |||||
| BEGIN | |||||
| VALUE "Translation", 0x409, 1252 | |||||
| END | |||||
| END | |||||
| #endif // English (United States) resources | |||||
| ///////////////////////////////////////////////////////////////////////////// | |||||
| #ifndef APSTUDIO_INVOKED | |||||
| ///////////////////////////////////////////////////////////////////////////// | |||||
| // | |||||
| // Generated from the TEXTINCLUDE 3 resource. | |||||
| // | |||||
| ///////////////////////////////////////////////////////////////////////////// | |||||
| #endif // not APSTUDIO_INVOKED | |||||
| @ -0,0 +1,61 @@ | |||||
| #include "flutter_window.h" | |||||
| #include <optional> | |||||
| #include "flutter/generated_plugin_registrant.h" | |||||
| FlutterWindow::FlutterWindow(const flutter::DartProject& project) | |||||
| : project_(project) {} | |||||
| FlutterWindow::~FlutterWindow() {} | |||||
| bool FlutterWindow::OnCreate() { | |||||
| if (!Win32Window::OnCreate()) { | |||||
| return false; | |||||
| } | |||||
| RECT frame = GetClientArea(); | |||||
| // The size here must match the window dimensions to avoid unnecessary surface | |||||
| // creation / destruction in the startup path. | |||||
| flutter_controller_ = std::make_unique<flutter::FlutterViewController>( | |||||
| frame.right - frame.left, frame.bottom - frame.top, project_); | |||||
| // Ensure that basic setup of the controller was successful. | |||||
| if (!flutter_controller_->engine() || !flutter_controller_->view()) { | |||||
| return false; | |||||
| } | |||||
| RegisterPlugins(flutter_controller_->engine()); | |||||
| SetChildContent(flutter_controller_->view()->GetNativeWindow()); | |||||
| return true; | |||||
| } | |||||
| void FlutterWindow::OnDestroy() { | |||||
| if (flutter_controller_) { | |||||
| flutter_controller_ = nullptr; | |||||
| } | |||||
| Win32Window::OnDestroy(); | |||||
| } | |||||
| LRESULT | |||||
| FlutterWindow::MessageHandler(HWND hwnd, UINT const message, | |||||
| WPARAM const wparam, | |||||
| LPARAM const lparam) noexcept { | |||||
| // Give Flutter, including plugins, an opportunity to handle window messages. | |||||
| if (flutter_controller_) { | |||||
| std::optional<LRESULT> result = | |||||
| flutter_controller_->HandleTopLevelWindowProc(hwnd, message, wparam, | |||||
| lparam); | |||||
| if (result) { | |||||
| return *result; | |||||
| } | |||||
| } | |||||
| switch (message) { | |||||
| case WM_FONTCHANGE: | |||||
| flutter_controller_->engine()->ReloadSystemFonts(); | |||||
| break; | |||||
| } | |||||
| return Win32Window::MessageHandler(hwnd, message, wparam, lparam); | |||||
| } | |||||
| @ -0,0 +1,33 @@ | |||||
| #ifndef RUNNER_FLUTTER_WINDOW_H_ | |||||
| #define RUNNER_FLUTTER_WINDOW_H_ | |||||
| #include <flutter/dart_project.h> | |||||
| #include <flutter/flutter_view_controller.h> | |||||
| #include <memory> | |||||
| #include "win32_window.h" | |||||
| // A window that does nothing but host a Flutter view. | |||||
| class FlutterWindow : public Win32Window { | |||||
| public: | |||||
| // Creates a new FlutterWindow hosting a Flutter view running |project|. | |||||
| explicit FlutterWindow(const flutter::DartProject& project); | |||||
| virtual ~FlutterWindow(); | |||||
| protected: | |||||
| // Win32Window: | |||||
| bool OnCreate() override; | |||||
| void OnDestroy() override; | |||||
| LRESULT MessageHandler(HWND window, UINT const message, WPARAM const wparam, | |||||
| LPARAM const lparam) noexcept override; | |||||
| private: | |||||
| // The project to run. | |||||
| flutter::DartProject project_; | |||||
| // The Flutter instance hosted by this window. | |||||
| std::unique_ptr<flutter::FlutterViewController> flutter_controller_; | |||||
| }; | |||||
| #endif // RUNNER_FLUTTER_WINDOW_H_ | |||||
| @ -0,0 +1,43 @@ | |||||
| #include <flutter/dart_project.h> | |||||
| #include <flutter/flutter_view_controller.h> | |||||
| #include <windows.h> | |||||
| #include "flutter_window.h" | |||||
| #include "utils.h" | |||||
| int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev, | |||||
| _In_ wchar_t *command_line, _In_ int show_command) { | |||||
| // Attach to console when present (e.g., 'flutter run') or create a | |||||
| // new console when running with a debugger. | |||||
| if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) { | |||||
| CreateAndAttachConsole(); | |||||
| } | |||||
| // Initialize COM, so that it is available for use in the library and/or | |||||
| // plugins. | |||||
| ::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED); | |||||
| flutter::DartProject project(L"data"); | |||||
| std::vector<std::string> command_line_arguments = | |||||
| GetCommandLineArguments(); | |||||
| project.set_dart_entrypoint_arguments(std::move(command_line_arguments)); | |||||
| FlutterWindow window(project); | |||||
| Win32Window::Point origin(10, 10); | |||||
| Win32Window::Size size(1280, 720); | |||||
| if (!window.CreateAndShow(L"mobile", origin, size)) { | |||||
| return EXIT_FAILURE; | |||||
| } | |||||
| window.SetQuitOnClose(true); | |||||
| ::MSG msg; | |||||
| while (::GetMessage(&msg, nullptr, 0, 0)) { | |||||
| ::TranslateMessage(&msg); | |||||
| ::DispatchMessage(&msg); | |||||
| } | |||||
| ::CoUninitialize(); | |||||
| return EXIT_SUCCESS; | |||||
| } | |||||
| @ -0,0 +1,16 @@ | |||||
| //{{NO_DEPENDENCIES}} | |||||
| // Microsoft Visual C++ generated include file. | |||||
| // Used by Runner.rc | |||||
| // | |||||
| #define IDI_APP_ICON 101 | |||||
| // Next default values for new objects | |||||
| // | |||||
| #ifdef APSTUDIO_INVOKED | |||||
| #ifndef APSTUDIO_READONLY_SYMBOLS | |||||
| #define _APS_NEXT_RESOURCE_VALUE 102 | |||||
| #define _APS_NEXT_COMMAND_VALUE 40001 | |||||
| #define _APS_NEXT_CONTROL_VALUE 1001 | |||||
| #define _APS_NEXT_SYMED_VALUE 101 | |||||
| #endif | |||||
| #endif | |||||