I've been working on a Materialize project and encountering an issue with pre-filled values in text boxes. Here is a snapshot of the problem:
https://i.stack.imgur.com/u13jT.png
<div class="input-field col s12 m6">
<input class="" id="userNameAccount" type="text" ng-model="userNameAccount" >
<label class="active" for="">User Name <span class="required">*</span></label>
</div>
<script type="text/javascript">
$(document).ready(function(){
Materialize.updateTextFields();
});
</script>